diff --git a/.mention-bot b/.mention-bot index 36e38ed82b9dd1647f6c95624d44f237bd60fe61..4c200e30279abceb3595c120406a08f9885a7ae9 100644 --- a/.mention-bot +++ b/.mention-bot @@ -1,5 +1,4 @@ { - // users in this list will never be mentioned by mention-bot "userBlacklist": [ "civodul" ] diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b92308622eed18448d3a045e3fcd5a1dc166e117..c20d540a25a815d80f3c0147e79620c536eaac49 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 919d1e25bbe9dbbe023bd7ffdfe496f33011c165..0d5734a591c6b6a5eef48825ee811c86dfb011f0 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 b8dac00eb65e9f23d510644a3632ee981337a705..7e41380d6358058d5f941c26d65a298174d4bf36 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 e2bc751e14021dd3438b049990049ff2ac67e369..7f40ba33cd4ad2d439347fa4e6aaa3025c4e070a 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 446f08eb697cf5abe8aef01e39fd5608553816cf..b11e4cf09f848c1ed400018906b52c7b3c1f9d52 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 f0d5dbd3e64f97956844f56dbb1ebdf6a39c68c1..0000000000000000000000000000000000000000 --- 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. - - - - -
<varname>buildPythonPackage</varname> 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. - - - - - <varname>buildPythonPackage</varname> parameters - (all parameters from <varname>mkDerivation</varname> 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"]. - - - - - -
- -
<function>python.buildEnv</function> 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. - - - - - <function>python.buildEnv</function> 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 0000000000000000000000000000000000000000..d16c9f3dc87f5d3db343c6bc197f071707773294 --- /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 0000000000000000000000000000000000000000..89908b3b8ff5cbe55378a6d026f305dba344416c --- /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 0000000000000000000000000000000000000000..743a1b70be7caf1004175c019c667565fc858ae5 --- /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 0000000000000000000000000000000000000000..2d40a254cedfbc740fb1d36b59337df8911bc055 --- /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 0000000000000000000000000000000000000000..39b086af4cb13c95abbea7f8819e8ae84db143f1 --- /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 0000000000000000000000000000000000000000..54b82f4a056017d09fb694abac101ccf3d441838 --- /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 0000000000000000000000000000000000000000..57aceeb48685245b65d6d9a1e5c8242967b8537a --- /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. + + + + +
<varname>buildPythonPackage</varname> 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. + + + + + <varname>buildPythonPackage</varname> parameters + (all parameters from <varname>mkDerivation</varname> 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"]. + + + + + +
+ +
<function>python.buildEnv</function> 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. + + + + + <function>python.buildEnv</function> 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 0000000000000000000000000000000000000000..093c33c25a17ca28337c3c7e060fc5002d8e1dc9 --- /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 0000000000000000000000000000000000000000..a2b4475a4a548b346d42790ca0ef6953cb213276 --- /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 1f1f50f75fb6ac64524a2d3fb453663e5a3e20b3..b4c35d1a379dfe350773e997ca54493d99027055 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 0fd1954c528bd11c88c27f9dcfbf137a5be463f8..0b09dffbb2d335aab4e10b84de0a114410709431 100644 --- a/doc/submitting-changes.xml +++ b/doc/submitting-changes.xml @@ -262,21 +262,70 @@ Additional information. -Master should only see non-breaking commits that do not cause mass rebuilds. +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. + - -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. - +
+ Master branch + + + + + It should only see non-breaking commits that do not cause mass rebuilds. + + + +
- -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. - +
+ 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. + + + +
- -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. - - +
+ 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/attrsets.nix b/lib/attrsets.nix index 22ecc808679d0ace312da0f48f81a004906786fe..84f6cb3658b90b57edcc3334019c09606a2cac4a 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -23,6 +23,17 @@ rec { then attrByPath (tail attrPath) default e.${attr} else default; + /* Return if an attribute from nested attribute set exists. + For instance ["x" "y"] applied to some set e returns true, if e.x.y exists. False + is returned otherwise. */ + hasAttrByPath = attrPath: e: + let attr = head attrPath; + in + if attrPath == [] then true + else if e ? ${attr} + then hasAttrByPath (tail attrPath) e.${attr} + else false; + /* Return nested attribute set in which an attribute is set. For instance ["x" "y"] applied with some value v returns `x.y = v;' */ diff --git a/lib/licenses.nix b/lib/licenses.nix index ebd7d56d761823e3ba3f692f8a32ac531fc46fd5..4703587ed5656b5ba386d782d8b2d3180743f026 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 596b8a49a10d4e55bd0de72f0864eff973cd5fb9..9918ae61537a1cd657a4cf6b3c9f54af325a9914 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 "; @@ -93,12 +94,12 @@ elasticdog = "Aaron Bull Schaefer "; ellis = "Ellis Whitehead "; ehmry = "Emery Hemingway "; - enolan = "Echo Nolan "; epitrochoid = "Mabry Cervin "; ericbmerritt = "Eric Merritt "; ericsagnes = "Eric Sagnes "; erikryb = "Erik Rybakken "; ertes = "Ertugrul Söylemez "; + exi = "Reno Reckling "; exlevan = "Alexey Levan "; falsifian = "James Cook "; flosse = "Markus Kohlhase "; @@ -119,6 +120,7 @@ gebner = "Gabriel Ebner "; gfxmonk = "Tim Cuthbertson "; giogadi = "Luis G. Torres "; + gleber = "Gleb Peregud "; globin = "Robin Gloster "; goibhniu = "Cillian de Róiste "; gridaphobe = "Eric Seidel "; @@ -141,7 +143,8 @@ jcumming = "Jack Cummings "; jefdaj = "Jeffrey David Johnson "; jfb = "James Felix Black "; - jgeerds = "Jascha Geerds "; + jgeerds = "Jascha Geerds "; + jgillich = "Jakob Gillich "; jirkamarsik = "Jirka Marsik "; joachifm = "Joachim Fasting "; joamaki = "Jussi Maki "; @@ -164,6 +167,7 @@ lebastr = "Alexander Lebedev "; leonardoce = "Leonardo Cecchi "; lethalman = "Luca Bruno "; + lewo = "Antoine Eiche "; lhvwb = "Nathaniel Baxter "; lihop = "Leroy Hopson "; linquize = "Linquize "; @@ -174,6 +178,7 @@ lsix = "Lancelot SIX "; ludo = "Ludovic Courtès "; lukego = "Luke Gorrie "; + luispedro = "Luis Pedro Coelho "; lw = "Sergey Sofeychuk "; madjar = "Georges Dubus "; magnetophon = "Bart Brouns "; @@ -229,6 +234,7 @@ phausmann = "Philipp Hausmann "; philandstuff = "Philip Potter "; phreedom = "Evgeny Egorochkin "; + phunehehe = "Hoang Xuan Phu "; pierron = "Nicolas B. Pierron "; piotr = "Piotr Pietraszkiewicz "; pjbarnoy = "Perry Barnoy "; @@ -239,6 +245,7 @@ pmahoney = "Patrick Mahoney "; pmiddend = "Philipp Middendorf "; prikhi = "Pavan Rikhi "; + profpatsch = "Profpatsch "; psibi = "Sibi "; pSub = "Pascal Wittmann "; puffnfresh = "Brian McKenna "; @@ -262,6 +269,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 "; @@ -315,6 +323,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/lib/strings.nix b/lib/strings.nix index 96c087e8da0efb683c31833114bd9dc33231eb61..9a2f3c432ca35c5c13e4ca175560882d3719e9ad 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -237,4 +237,19 @@ rec { then may_be_int else throw "Could not convert ${str} to int."; + # Read a list of paths from `file', relative to the `rootPath'. Lines + # beginning with `#' are treated as comments and ignored. Whitespace + # is significant. + readPathsFromFile = rootPath: file: + let + root = toString rootPath; + lines = + builtins.map (lib.removeSuffix "\n") + (lib.splitString "\n" (builtins.readFile file)); + removeComments = lib.filter (line: !(lib.hasPrefix "#" line)); + relativePaths = removeComments lines; + absolutePaths = builtins.map (path: builtins.toPath (root + "/" + path)) relativePaths; + in + absolutePaths; + } diff --git a/lib/tests.nix b/lib/tests.nix index 1fb2cbf5b536170bba665a77caa8f5a1540816a2..c3b8839fda956c61405ceaf17c4f38c2153ed257 100644 --- a/lib/tests.nix +++ b/lib/tests.nix @@ -120,4 +120,14 @@ runTests { expected = { success = false; value = false; }; }; + testHasAttrByPathTrue = { + expr = hasAttrByPath ["a" "b"] { a = { b = "yey"; }; }; + expected = true; + }; + + testHasAttrByPathFalse = { + expr = hasAttrByPath ["a" "b"] { a = { c = "yey"; }; }; + expected = false; + }; + } diff --git a/maintainers/scripts/all-tarballs.nix b/maintainers/scripts/all-tarballs.nix new file mode 100644 index 0000000000000000000000000000000000000000..552f88022961e1d99adffd1657a334bd46075afe --- /dev/null +++ b/maintainers/scripts/all-tarballs.nix @@ -0,0 +1,18 @@ +/* Helper expression for copy-tarballs. This returns (nearly) all + tarballs used the free packages in Nixpkgs. + + Typical usage: + + $ copy-tarballs.pl --expr 'import ' +*/ + +removeAttrs (import ../../pkgs/top-level/release.nix + { # Don't apply ‘hydraJob’ to jobs, because then we can't get to the + # dependency graph. + scrubJobs = false; + # No need to evaluate on i686. + supportedSystems = [ "x86_64-linux" ]; + }) + [ # Remove jobs whose evaluation depends on a writable Nix store. + "tarball" "unstable" + ] diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index 6be1300e5130ab97a556d6c083ce0195011c9325..b1233827ad885aaa5a2c8c6b992dcbd70478240f 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix-shell -i perl -p perl perlPackages.NetAmazonS3 nixUnstable +#! nix-shell -i perl -p perl perlPackages.NetAmazonS3 perlPackages.FileSlurp nixUnstable # This command uploads tarballs to tarballs.nixos.org, the # content-addressed cache used by fetchurl as a fallback for when @@ -17,6 +17,7 @@ use strict; use warnings; use File::Basename; use File::Path; +use File::Slurp; use JSON; use Net::Amazon::S3; use Nix::Store; @@ -33,9 +34,21 @@ my $s3 = Net::Amazon::S3->new( my $bucket = $s3->bucket("nixpkgs-tarballs") or die; +my $cacheFile = "/tmp/copy-tarballs-cache"; +my %cache; +$cache{$_} = 1 foreach read_file($cacheFile, err_mode => 'quiet', chomp => 1); + +END() { + write_file($cacheFile, map { "$_\n" } keys %cache); +} + sub alreadyMirrored { my ($algo, $hash) = @_; - return defined $bucket->get_key("$algo/$hash"); + my $key = "$algo/$hash"; + return 1 if defined $cache{$key}; + my $res = defined $bucket->get_key($key); + $cache{$key} = 1 if $res; + return $res; } sub uploadFile { @@ -50,41 +63,52 @@ sub uploadFile { my $mainKey = "sha512/$sha512_16"; - # Upload the file as sha512/. - print STDERR "uploading $fn to $mainKey...\n"; - $bucket->add_key_filename($mainKey, $fn, { 'x-amz-meta-original-name' => $name }) - or die "failed to upload $fn to $mainKey\n"; - # Create redirects from the other hash types. sub redirect { my ($name, $dest) = @_; #print STDERR "linking $name to $dest...\n"; $bucket->add_key($name, "", { 'x-amz-website-redirect-location' => "/" . $dest }) or die "failed to create redirect from $name to $dest\n"; + $cache{$name} = 1; } redirect "md5/$md5_16", $mainKey; redirect "sha1/$sha1_16", $mainKey; redirect "sha256/$sha256_32", $mainKey; redirect "sha256/$sha256_16", $mainKey; redirect "sha512/$sha512_32", $mainKey; + + # Upload the file as sha512/. + print STDERR "uploading $fn to $mainKey...\n"; + $bucket->add_key_filename($mainKey, $fn, { 'x-amz-meta-original-name' => $name }) + or die "failed to upload $fn to $mainKey\n"; + $cache{$mainKey} = 1; } -my $op = $ARGV[0] // ""; +my $op = shift @ARGV; if ($op eq "--file") { - my $fn = $ARGV[1] // die "$0: --file requires a file name\n"; - if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { - print STDERR "$fn is already mirrored\n"; - } else { - uploadFile($fn, basename $fn); + my $res = 0; + foreach my $fn (@ARGV) { + eval { + if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { + print STDERR "$fn is already mirrored\n"; + } else { + uploadFile($fn, basename $fn); + } + }; + if ($@) { + warn "$@\n"; + $res = 1; + } } + exit $res; } elsif ($op eq "--expr") { # Evaluate find-tarballs.nix. - my $expr = $ARGV[1] // die "$0: --expr requires a Nix expression\n"; - my $pid = open(JSON, "-|", "nix-instantiate", "--eval-only", "--json", "--strict", + my $expr = $ARGV[0] // die "$0: --expr requires a Nix expression\n"; + my $pid = open(JSON, "-|", "nix-instantiate", "--eval", "--json", "--strict", "", "--arg", "expr", $expr); my $stdout = ; @@ -104,6 +128,11 @@ elsif ($op eq "--expr") { my $algo = $fetch->{type}; my $hash = $fetch->{hash}; + if (defined $ENV{DEBUG}) { + print "$url $algo $hash\n"; + next; + } + if ($url !~ /^http:/ && $url !~ /^https:/ && $url !~ /^ftp:/ && $url !~ /^mirror:/) { print STDERR "skipping $url (unsupported scheme)\n"; next; @@ -138,5 +167,5 @@ elsif ($op eq "--expr") { } else { - die "Syntax: $0 --file FILENAME | --expr EXPR\n"; + die "Syntax: $0 --file FILENAMES... | --expr EXPR\n"; } diff --git a/maintainers/scripts/find-tarballs.nix b/maintainers/scripts/find-tarballs.nix index 2dd17d9df8856b81152f7e83123d3211758a9b56..e989c0e2a9e4621762b0acf600c2f1c829a4b50b 100644 --- a/maintainers/scripts/find-tarballs.nix +++ b/maintainers/scripts/find-tarballs.nix @@ -1,10 +1,9 @@ -# This expression returns a list of all fetchurl calls used by all -# packages reachable from release.nix. +# This expression returns a list of all fetchurl calls used by ‘expr’. with import ../.. { }; with lib; -{ expr ? removeAttrs (import ../../pkgs/top-level/release.nix { }) [ "tarball" "unstable" ] }: +{ expr }: let diff --git a/nixos/doc/manual/administration/declarative-containers.xml b/nixos/doc/manual/administration/declarative-containers.xml index 228c45b0c1fecef76d9153055ab8a4d43661c857..f3f65edcec2aecd0a5cfa62130a6da7eb1078f79 100644 --- a/nixos/doc/manual/administration/declarative-containers.xml +++ b/nixos/doc/manual/administration/declarative-containers.xml @@ -22,8 +22,10 @@ containers.database = If you run nixos-rebuild switch, the container will -be built and started. If the container was already running, it will be -updated in place, without rebooting. +be built. If the container was already running, it will be +updated in place, without rebooting. The container can be configured to +start automatically by setting containers.database.autoStart = true +in its configuration. By default, declarative containers share the network namespace of the host, meaning that they can listen on (privileged) @@ -41,13 +43,15 @@ containers.database = This gives the container a private virtual Ethernet interface with IP address 192.168.100.11, which is hooked up to a virtual Ethernet interface on the host with IP address -192.168.100.10. (See the next section for details +192.168.100.10. (See the next section for details on container networking.) To disable the container, just remove it from configuration.nix and run nixos-rebuild switch. Note that this will not delete the root directory of -the container in /var/lib/containers. +the container in /var/lib/containers. Containers can be +destroyed using the imperative method: nixos-container destroy + foo. Declarative containers can be started and stopped using the corresponding systemd service, e.g. systemctl start diff --git a/nixos/doc/manual/configuration/configuration.xml b/nixos/doc/manual/configuration/configuration.xml index afffd60bc485fbf9c3abb9504305f709205cc368..1e488b59343e7799a1019bbd1fc3bb85ba7bddfd 100644 --- a/nixos/doc/manual/configuration/configuration.xml +++ b/nixos/doc/manual/configuration/configuration.xml @@ -26,6 +26,7 @@ effect after you run nixos-rebuild. + diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 4bfd08869b7f12e32efcf9347963cd33f9e25105..be2d69a5f531e59b1e3d4fb0175486ee6740d3dc 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -55,6 +55,7 @@ let cp -prd $sources/* . # */ chmod -R u+w . cp ${../../modules/services/databases/postgresql.xml} configuration/postgresql.xml + cp ${../../modules/security/acme.xml} configuration/acme.xml cp ${../../modules/misc/nixos.xml} configuration/nixos.xml ln -s ${optionsDocBook} options-db.xml echo "${version}" > version diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 6d734cd8caca43fbdc5ee781b33827df479ef749..9aec57fb6d5a10ef597d11eade16e8f917cdd2e2 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -35,7 +35,7 @@ systemctl stop network-manager. The NixOS installer doesn’t do any partitioning or - formatting yet, so you need to that yourself. Use the following + formatting yet, so you need to do that yourself. Use the following commands: diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index cf6e4ace413903114bd4368f1e7f2b9fb058f0c2..f74fff83b48bee4964b3f8d942800886cc53898a 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -30,6 +30,7 @@ nixos.path = ./nixpkgs-unstable-2015-12-06/nixos; services/monitoring/longview.nix + services/web-apps/pump.io.nix @@ -113,6 +114,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 dedc8a3f679307fbb7e5181aee9e801a4cb8f433..fbd7867a0953d8418ef44a28cf6b0373e816b31d 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 6b4cc9ebb7d8a09e6ebf6df5cbc086267b77911d..3df7d7cdac4ff06975489da66923bfd3ace49723 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -134,7 +134,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/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix index fa9cc6fa20b985bc421b5b076250a0217a713c7f..d3353ee7d64de3ca1b1095eab9671aa996742689 100644 --- a/nixos/modules/installer/cd-dvd/iso-image.nix +++ b/nixos/modules/installer/cd-dvd/iso-image.nix @@ -43,6 +43,13 @@ let LINUX /boot/bzImage APPEND init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} INITRD /boot/initrd + + # A variant to boot with 'nomodeset' + LABEL boot-nomodeset + MENU LABEL NixOS ${config.system.nixosVersion}${config.isoImage.appendToMenuLabel} (with nomodeset) + LINUX /boot/bzImage + APPEND init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset + INITRD /boot/initrd ''; isolinuxMemtest86Entry = '' @@ -59,10 +66,18 @@ let mkdir -p $out/EFI/boot cp -v ${pkgs.gummiboot}/lib/gummiboot/gummiboot${targetArch}.efi $out/EFI/boot/boot${targetArch}.efi mkdir -p $out/loader/entries + echo "title NixOS Live CD" > $out/loader/entries/nixos-livecd.conf echo "linux /boot/bzImage" >> $out/loader/entries/nixos-livecd.conf echo "initrd /boot/initrd" >> $out/loader/entries/nixos-livecd.conf echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}" >> $out/loader/entries/nixos-livecd.conf + + # A variant to boot with 'nomodeset' + echo "title NixOS Live CD (with nomodeset)" > $out/loader/entries/nixos-livecd-nomodeset.conf + echo "linux /boot/bzImage" >> $out/loader/entries/nixos-livecd-nomodeset.conf + echo "initrd /boot/initrd" >> $out/loader/entries/nixos-livecd-nomodeset.conf + echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset" >> $out/loader/entries/nixos-livecd-nomodeset.conf + echo "default nixos-livecd" > $out/loader/loader.conf echo "timeout ${builtins.toString config.boot.loader.gummiboot.timeout}" >> $out/loader/loader.conf ''; @@ -230,7 +245,6 @@ in boot.kernelParams = [ "root=LABEL=${config.isoImage.volumeID}" "boot.shell_on_fail" - "nomodeset" ]; fileSystems."/" = diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix index 1fa9282b909e1e088ec7059102a992402c4f12c2..ca51de0fb8c7aa5a8af59321b08806fa04493f65 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/misc/ids.nix b/nixos/modules/misc/ids.nix index 6ff95605d4b2d0f336749369ba685068dc86011a..7a7ed2f4408c8af4ccf14dda776740eb9542d2fd 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -238,6 +238,7 @@ heapster = 214; bepasty = 215; pumpio = 216; + nm-openvpn = 217; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -453,6 +454,7 @@ calibre-server = 213; bepasty = 215; pumpio = 216; + nm-openvpn = 217; # When adding a gid, make sure it doesn't match an existing # uid. Users and groups with the same name should have equal diff --git a/nixos/modules/misc/nixos.xml b/nixos/modules/misc/nixos.xml index f8d3b4bc6e33b6ca74074563d593918d3c7908c0..064bdd80b3c90f3b8cb2ae95d99a8cbf82f469aa 100644 --- a/nixos/modules/misc/nixos.xml +++ b/nixos/modules/misc/nixos.xml @@ -35,7 +35,7 @@ nixos.path = ./nixpkgs-16-03/nixos; Another option is to fetch a specific version of NixOS, with either the fetchTarball builtin, or the -pkgs.fetchFromGithub function and use the result as an +pkgs.fetchFromGitHub function and use the result as an input. diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 963daf721ad3df4162163edc34711d1544b84fc6..5c1cde98d3dc406dbb1f20f13ff737bf6e749887 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -80,6 +80,7 @@ ./programs/xfs_quota.nix ./programs/zsh/zsh.nix ./rename.nix + ./security/acme.nix ./security/apparmor.nix ./security/apparmor-suid.nix ./security/ca.nix @@ -343,6 +344,7 @@ ./services/networking/searx.nix ./services/networking/seeks.nix ./services/networking/skydns.nix + ./services/networking/shairport-sync.nix ./services/networking/shout.nix ./services/networking/softether.nix ./services/networking/spiped.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 28ac1c3e888a506780213c51ccc52adf357d5180..2a3d89e9f6f2a8608779767b2e6f70979f11abba 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -75,6 +75,8 @@ with lib; # DNSCrypt-proxy (mkRenamedOptionModule [ "services" "dnscrypt-proxy" "port" ] [ "services" "dnscrypt-proxy" "localPort" ]) + (mkRenamedOptionModule [ "services" "hostapd" "extraCfg" ] [ "services" "hostapd" "extraConfig" ]) + # Options that are obsolete and have no replacement. (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) (mkRemovedOptionModule [ "programs" "bash" "enable" ]) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix new file mode 100644 index 0000000000000000000000000000000000000000..2de57dd68cba5209bfaee41bfeedeff08ef707a5 --- /dev/null +++ b/nixos/modules/security/acme.nix @@ -0,0 +1,202 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.security.acme; + + certOpts = { ... }: { + options = { + webroot = mkOption { + type = types.str; + description = '' + Where the webroot of the HTTP vhost is located. + .well-known/acme-challenge/ directory + will be created automatically if it doesn't exist. + http://example.org/.well-known/acme-challenge/ must also + be available (notice unencrypted HTTP). + ''; + }; + + email = mkOption { + type = types.nullOr types.str; + default = null; + description = "Contact email address for the CA to be able to reach you."; + }; + + user = mkOption { + type = types.str; + default = "root"; + description = "User running the ACME client."; + }; + + group = mkOption { + type = types.str; + default = "root"; + description = "Group running the ACME client."; + }; + + postRun = mkOption { + type = types.lines; + default = ""; + example = "systemctl reload nginx.service"; + description = '' + Commands to run after certificates are re-issued. Typically + the web server and other servers using certificates need to + be reloaded. + ''; + }; + + plugins = mkOption { + type = types.listOf (types.enum [ + "cert.der" "cert.pem" "chain.der" "chain.pem" "external_pem.sh" + "fullchain.der" "fullchain.pem" "key.der" "key.pem" "account_key.json" + ]); + default = [ "fullchain.pem" "key.pem" "account_key.json" ]; + description = '' + Plugins to enable. With default settings simp_le will + store public certificate bundle in fullchain.pem + and private key in key.pem in its state directory. + ''; + }; + + extraDomains = mkOption { + type = types.attrsOf (types.nullOr types.str); + default = {}; + example = { + "example.org" = "/srv/http/nginx"; + "mydomain.org" = null; + }; + description = '' + Extra domain names for which certificates are to be issued, with their + own server roots if needed. + ''; + }; + }; + }; + +in + +{ + + ###### interface + + options = { + security.acme = { + directory = mkOption { + default = "/var/lib/acme"; + type = types.str; + description = '' + Directory where certs and other state will be stored by default. + ''; + }; + + validMin = mkOption { + type = types.int; + default = 30 * 24 * 3600; + description = "Minimum remaining validity before renewal in seconds."; + }; + + renewInterval = mkOption { + type = types.str; + default = "weekly"; + description = '' + Systemd calendar expression when to check for renewal. See + systemd.time + 5. + ''; + }; + + certs = mkOption { + default = { }; + type = types.loaOf types.optionSet; + description = '' + Attribute set of certificates to get signed and renewed. + ''; + options = [ certOpts ]; + example = { + "example.com" = { + webroot = "/var/www/challenges/"; + email = "foo@example.com"; + extraDomains = { "www.example.com" = null; "foo.example.com" = "/var/www/foo/"; }; + }; + "bar.example.com" = { + webroot = "/var/www/challenges/"; + email = "bar@example.com"; + }; + }; + }; + }; + }; + + ###### implementation + config = mkMerge [ + (mkIf (cfg.certs != { }) { + + systemd.services = flip mapAttrs' cfg.certs (cert: data: + let + cpath = "${cfg.directory}/${cert}"; + cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" cfg.validMin ] + ++ optionals (data.email != null) [ "--email" data.email ] + ++ concatMap (p: [ "-f" p ]) data.plugins + ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); + + in nameValuePair + ("acme-${cert}") + ({ + description = "ACME cert renewal for ${cert} using simp_le"; + after = [ "network.target" ]; + serviceConfig = { + Type = "oneshot"; + SuccessExitStatus = [ "0" "1" ]; + PermissionsStartOnly = true; + User = data.user; + Group = data.group; + PrivateTmp = true; + }; + path = [ pkgs.simp_le ]; + preStart = '' + mkdir -p '${cfg.directory}' + if [ ! -d '${cpath}' ]; then + mkdir -m 700 '${cpath}' + chown '${data.user}:${data.group}' '${cpath}' + fi + ''; + script = '' + cd '${cpath}' + set +e + simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} + EXITCODE=$? + set -e + echo "$EXITCODE" > /tmp/lastExitCode + exit "$EXITCODE" + ''; + postStop = '' + if [ -e /tmp/lastExitCode ] && [ "$(cat /tmp/lastExitCode)" = "0" ]; then + echo "Executing postRun hook..." + ${data.postRun} + fi + ''; + }) + ); + + systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair + ("acme-${cert}") + ({ + description = "timer for ACME cert renewal of ${cert}"; + wantedBy = [ "timers.target" ]; + timerConfig = { + OnCalendar = cfg.renewInterval; + Unit = "acme-${cert}.service"; + }; + }) + ); + }) + + { meta.maintainers = with lib.maintainers; [ abbradar fpletz globin ]; + meta.doc = ./acme.xml; + } + ]; + +} diff --git a/nixos/modules/security/acme.xml b/nixos/modules/security/acme.xml new file mode 100644 index 0000000000000000000000000000000000000000..e32fa72c93939fb3434844528cbaa1d4f75a27da --- /dev/null +++ b/nixos/modules/security/acme.xml @@ -0,0 +1,69 @@ + + +SSL/TLS Certificates with ACME + +NixOS supports automatic domain validation & certificate +retrieval and renewal using the ACME protocol. This is currently only +implemented by and for Let's Encrypt. The alternative ACME client +simp_le is used under the hood. + +
Prerequisites + +You need to have a running HTTP server for verification. The server must +have a webroot defined that can serve +.well-known/acme-challenge. This directory must be +writeable by the user that will run the ACME client. + +For instance, this generic snippet could be used for Nginx: + + +http { + server { + server_name _; + listen 80; + listen [::]:80; + + location /.well-known/acme-challenge { + root /var/www/challenges; + } + + location / { + return 301 https://$host$request_uri; + } + } +} + + + +
+ +
Configuring + +To enable ACME certificate retrieval & renewal for a certificate for +foo.example.com, add the following in your +configuration.nix: + + +security.acme.certs."foo.example.com" = { + webroot = "/var/www/challenges"; + email = "foo@example.com"; +}; + + + +The private key key.pem and certificate +fullchain.pem will be put into +/var/lib/acme/foo.example.com. The target directory can +be configured with the option security.acme.directory. + + +Refer to for all available configuration +options for the security.acme module. + +
+ +
diff --git a/nixos/modules/services/audio/mopidy.nix b/nixos/modules/services/audio/mopidy.nix index a7a7e8ae688b3bd9996ee5511881c2f06874c0c4..9981b065f28d248e6d174527bc5145662191c89a 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 04d95fbf186b74a5d011a4254e594a37021da471..78d4ea93c491a7557c2dac8e0797aa8a9aaff5b0 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/computing/slurm/slurm.nix b/nixos/modules/services/computing/slurm/slurm.nix index 019d7fbb16cda0d53ac83cdf1e48b0d5ccaadeb9..cf00d8946557a635554abbf7fc44ff339d218e74 100644 --- a/nixos/modules/services/computing/slurm/slurm.nix +++ b/nixos/modules/services/computing/slurm/slurm.nix @@ -34,6 +34,15 @@ in }; + package = mkOption { + type = types.package; + default = pkgs.slurm-llnl; + example = literalExample "pkgs.slurm-llnl-full"; + description = '' + The packge to use for slurm binaries. + ''; + }; + controlMachine = mkOption { type = types.nullOr types.str; default = null; @@ -91,38 +100,69 @@ in ###### implementation - config = mkIf (cfg.client.enable || cfg.server.enable) { + config = + let + wrappedSlurm = pkgs.stdenv.mkDerivation { + name = "wrappedSlurm"; + + propagatedBuildInputs = [ cfg.package configFile ]; + + builder = pkgs.writeText "builder.sh" '' + source $stdenv/setup + mkdir -p $out/bin + find ${cfg.package}/bin -type f -executable | while read EXE + do + exename="$(basename $EXE)" + wrappername="$out/bin/$exename" + cat > "$wrappername" < !(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 284b2b84e6c706845a3f3dca33daf4121a4c5575..8b178ee939801e05a7b8d7f64ffb7f96cad26ad0 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/hostapd.nix b/nixos/modules/services/networking/hostapd.nix index 5a6ca139ddad216905979d44cccc8c1a94921ef4..287964aab072f7bec5a8b641046cecee8bf4203a 100644 --- a/nixos/modules/services/networking/hostapd.nix +++ b/nixos/modules/services/networking/hostapd.nix @@ -2,21 +2,17 @@ # TODO: # -# asserts +# asserts # ensure that the nl80211 module is loaded/compiled in the kernel -# hwMode must be a/b/g -# channel must be between 1 and 13 (maybe) # wpa_supplicant and hostapd on the same wireless interface doesn't make any sense -# perhaps an assertion that there is a dhcp server and a dns server on the IP address serviced by the hostapd? with lib; let cfg = config.services.hostapd; - - configFile = pkgs.writeText "hostapd.conf" - '' + + configFile = pkgs.writeText "hostapd.conf" '' interface=${cfg.interface} driver=${cfg.driver} ssid=${cfg.ssid} @@ -37,8 +33,8 @@ let wpa_passphrase=${cfg.wpaPassphrase} '' else ""} - ${cfg.extraCfg} - '' ; + ${cfg.extraConfig} + '' ; in @@ -65,9 +61,9 @@ in interface = mkOption { default = ""; - example = "wlan0"; + example = "wlp2s0"; description = '' - The interfaces hostapd will use. + The interfaces hostapd will use. ''; }; @@ -89,8 +85,7 @@ in }; hwMode = mkOption { - default = "b"; - example = "g"; + default = "g"; type = types.string; description = '' Operation mode. @@ -98,17 +93,16 @@ in ''; }; - channel = mkOption { + channel = mkOption { default = 7; example = 11; type = types.int; - description = - '' + description = '' Channel number (IEEE 802.11) Please note that some drivers do not use this value from hostapd and the channel will need to be configured separately with iwconfig. - ''; + ''; }; group = mkOption { @@ -131,16 +125,15 @@ in default = "my_sekret"; example = "any_64_char_string"; type = types.string; - description = - '' + description = '' WPA-PSK (pre-shared-key) passphrase. Clients will need this passphrase to associate with this access point. Warning: This passphrase will get put into a world-readable file in the Nix store! - ''; + ''; }; - extraCfg = mkOption { + extraConfig = mkOption { default = ""; example = '' auth_algo=0 @@ -158,17 +151,25 @@ in config = mkIf cfg.enable { + assertions = [ + { assertion = (cfg.hwMode == "a" || cfg.hwMode == "b" || cfg.hwMode == "g"); + message = "hwMode must be a/b/g"; + } + { assertion = (cfg.channel >= 1 && cfg.channel <= 13); + message = "channel must be between 1 and 13"; + }]; + environment.systemPackages = [ pkgs.hostapd ]; systemd.services.hostapd = { description = "hostapd wireless AP"; - path = [ pkgs.hostapd ]; + path = [ pkgs.hostapd ]; wantedBy = [ "network.target" ]; after = [ "${cfg.interface}-cfg.service" "nat.service" "bind.service" "dhcpd.service"]; - serviceConfig = + serviceConfig = { ExecStart = "${pkgs.hostapd}/bin/hostapd ${configFile}"; Restart = "always"; }; diff --git a/nixos/modules/services/networking/miniupnpd.nix b/nixos/modules/services/networking/miniupnpd.nix index e654eb80b1779440f35776926543c0d5d0082b3b..19400edb68f96c68ec7d188fbff3f7bc7007a3e0 100644 --- a/nixos/modules/services/networking/miniupnpd.nix +++ b/nixos/modules/services/networking/miniupnpd.nix @@ -30,7 +30,7 @@ in internalIPs = mkOption { type = types.listOf types.str; - example = [ "192.168.1.0/24" ]; + example = [ "192.168.1.1/24" "enp1s0" ]; description = '' The IP address ranges to listen on. ''; @@ -57,13 +57,42 @@ in }; config = mkIf cfg.enable { + # from miniupnpd/netfilter/iptables_init.sh + networking.firewall.extraCommands = '' + iptables -t nat -N MINIUPNPD + iptables -t nat -A PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t mangle -N MINIUPNPD + iptables -t mangle -A PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t filter -N MINIUPNPD + iptables -t filter -A FORWARD -i ${cfg.externalInterface} ! -o ${cfg.externalInterface} -j MINIUPNPD + iptables -t nat -N MINIUPNPD-PCP-PEER + iptables -t nat -A POSTROUTING -o ${cfg.externalInterface} -j MINIUPNPD-PCP-PEER + ''; + + # from miniupnpd/netfilter/iptables_removeall.sh + networking.firewall.extraStopCommands = '' + iptables -t nat -F MINIUPNPD + iptables -t nat -D PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t nat -X MINIUPNPD + iptables -t mangle -F MINIUPNPD + iptables -t mangle -D PREROUTING -i ${cfg.externalInterface} -j MINIUPNPD + iptables -t mangle -X MINIUPNPD + iptables -t filter -F MINIUPNPD + iptables -t filter -D FORWARD -i ${cfg.externalInterface} ! -o ${cfg.externalInterface} -j MINIUPNPD + iptables -t filter -X MINIUPNPD + iptables -t nat -F MINIUPNPD-PCP-PEER + iptables -t nat -D POSTROUTING -o ${cfg.externalInterface} -j MINIUPNPD-PCP-PEER + iptables -t nat -X MINIUPNPD-PCP-PEER + ''; + systemd.services.miniupnpd = { description = "MiniUPnP daemon"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - path = [ pkgs.miniupnpd ]; serviceConfig = { - ExecStart = "${pkgs.miniupnpd}/bin/miniupnpd -d -f ${configFile}"; + ExecStart = "${pkgs.miniupnpd}/bin/miniupnpd -f ${configFile}"; + PIDFile = "/var/run/miniupnpd.pid"; + Type = "forking"; }; }; }; diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix index 4f91a4947479c0541623f8387daa9bbe6c2007ac..1cc19a2c9e0903b08a9b833b90e0345cad0a6626 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/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index 7df194fa419b771da6c7065a3da6d35152d53b42..8ab4cfcc114af09517aa879e059fb4b9b1029d15 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -223,9 +223,11 @@ in { } { name = "nm-openvpn"; + gid = config.ids.gids.nm-openvpn; }]; users.extraUsers = [{ name = "nm-openvpn"; + uid = config.ids.uids.nm-openvpn; }]; systemd.packages = cfg.packages; diff --git a/nixos/modules/services/networking/shairport-sync.nix b/nixos/modules/services/networking/shairport-sync.nix new file mode 100644 index 0000000000000000000000000000000000000000..a523e66d09b9741cb743abdaf5c3f5e383a04b10 --- /dev/null +++ b/nixos/modules/services/networking/shairport-sync.nix @@ -0,0 +1,80 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.shairport-sync; + +in + +{ + + ###### interface + + options = { + + services.shairport-sync = { + + enable = mkOption { + default = false; + description = '' + Enable the shairport-sync daemon. + + Running with a local system-wide or remote pulseaudio server + is recommended. + ''; + }; + + arguments = mkOption { + default = "-v -o pulse"; + description = '' + Arguments to pass to the daemon. Defaults to a local pulseaudio + server. + ''; + }; + + user = mkOption { + default = "shairport"; + description = '' + User account name under which to run shairport-sync. The account + will be created. + ''; + }; + + }; + + }; + + + ###### implementation + + config = mkIf config.services.shairport-sync.enable { + + services.avahi.enable = true; + + users.extraUsers = singleton + { name = cfg.user; + description = "Shairport user"; + isSystemUser = true; + createHome = true; + home = "/var/lib/shairport-sync"; + extraGroups = [ "audio" ] ++ optional config.hardware.pulseaudio.enable "pulse"; + }; + + systemd.services.shairport-sync = + { + description = "shairport-sync"; + after = [ "network.target" "avahi-daemon.service" ]; + wantedBy = [ "multi-user.target" ]; + serviceConfig = { + User = cfg.user; + ExecStart = "${pkgs.shairport-sync}/bin/shairport-sync ${cfg.arguments}"; + }; + }; + + environment.systemPackages = [ pkgs.shairport-sync ]; + + }; + +} diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 69c76cf97cfd1982852749b0b4915b783a02a923..0fe25b66da083ba15f26aa02e9facfa0636e5956 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/security/clamav.nix b/nixos/modules/services/security/clamav.nix index a4d54301fc172e273dd975a3c4ae4f13099fa2b4..548aee29b266878cd69d1c9d57ba81dc913113ac 100644 --- a/nixos/modules/services/security/clamav.nix +++ b/nixos/modules/services/security/clamav.nix @@ -3,78 +3,115 @@ with lib; let clamavUser = "clamav"; stateDir = "/var/lib/clamav"; + runDir = "/var/run/clamav"; + logDir = "/var/log/clamav"; clamavGroup = clamavUser; cfg = config.services.clamav; + clamdConfigFile = pkgs.writeText "clamd.conf" '' + DatabaseDirectory ${stateDir} + LocalSocket ${runDir}/clamd.ctl + LogFile ${logDir}/clamav.log + PidFile ${runDir}/clamd.pid + User clamav + + ${cfg.daemon.extraConfig} + ''; in { - ###### interface - options = { - services.clamav = { + daemon = { + enable = mkEnableOption "clamd daemon"; + + extraConfig = mkOption { + type = types.lines; + default = ""; + description = '' + Extra configuration for clamd. Contents will be added verbatim to the + configuration file. + ''; + }; + }; updater = { - enable = mkOption { - default = false; - description = '' - Whether to enable automatic ClamAV virus definitions database updates. - ''; - }; + enable = mkEnableOption "freshclam updater"; - frequency = mkOption { - default = 12; - description = '' - Number of database checks per day. - ''; - }; + frequency = mkOption { + default = 12; + description = '' + Number of database checks per day. + ''; + }; - config = mkOption { - default = ""; - description = '' - Extra configuration for freshclam. Contents will be added verbatim to the - configuration file. - ''; - }; + config = mkOption { + default = ""; + description = '' + Extra configuration for freshclam. Contents will be added verbatim to the + configuration file. + ''; + }; }; }; }; - ###### implementation - - config = mkIf cfg.updater.enable { + config = mkIf cfg.updater.enable or cfg.daemon.enable { environment.systemPackages = [ pkgs.clamav ]; - users.extraUsers = singleton - { name = clamavUser; - uid = config.ids.uids.clamav; - description = "ClamAV daemon user"; - home = stateDir; - }; + users.extraUsers = singleton { + name = clamavUser; + uid = config.ids.uids.clamav; + description = "ClamAV daemon user"; + home = stateDir; + }; - users.extraGroups = singleton - { name = clamavGroup; - gid = config.ids.gids.clamav; - }; + users.extraGroups = singleton { + name = clamavGroup; + gid = config.ids.gids.clamav; + }; - services.clamav.updater.config = '' + services.clamav.updater.config = mkIf cfg.updater.enable '' DatabaseDirectory ${stateDir} Foreground yes Checks ${toString cfg.updater.frequency} DatabaseMirror database.clamav.net ''; - jobs = { - clamav_updater = { - name = "clamav-updater"; - startOn = "started network-interfaces"; - stopOn = "stopping network-interfaces"; - - preStart = '' - mkdir -m 0755 -p ${stateDir} - chown ${clamavUser}:${clamavGroup} ${stateDir} - ''; - exec = "${pkgs.clamav}/bin/freshclam --daemon --config-file=${pkgs.writeText "freshclam.conf" cfg.updater.config}"; - }; + systemd.services.clamd = mkIf cfg.daemon.enable { + description = "ClamAV daemon (clamd)"; + path = [ pkgs.clamav ]; + after = [ "network.target" "freshclam.service" ]; + requires = [ "freshclam.service" ]; + wantedBy = [ "multi-user.target" ]; + preStart = '' + mkdir -m 0755 -p ${logDir} + mkdir -m 0755 -p ${runDir} + chown ${clamavUser}:${clamavGroup} ${logDir} + chown ${clamavUser}:${clamavGroup} ${runDir} + ''; + serviceConfig = { + ExecStart = "${pkgs.clamav}/bin/clamd --config-file=${clamdConfigFile}"; + Type = "forking"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; + Restart = "on-failure"; + RestartSec = "10s"; + StartLimitInterval = "1min"; + }; }; + systemd.services.freshclam = mkIf cfg.updater.enable { + description = "ClamAV updater (freshclam)"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + path = [ pkgs.clamav ]; + preStart = '' + mkdir -m 0755 -p ${stateDir} + chown ${clamavUser}:${clamavGroup} ${stateDir} + ''; + serviceConfig = { + ExecStart = "${pkgs.clamav}/bin/freshclam --daemon --config-file=${pkgs.writeText "freshclam.conf" cfg.updater.config}"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; + Restart = "on-failure"; + RestartSec = "10s"; + StartLimitInterval = "1min"; + }; + }; }; - } diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index e32d6669b0468f4f791a01c15971ea63bffc5a57..b9c97a54fd2c43f465a62b245883e3b6220f050e 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 0f3cb5735e75d87e6b58610fb1c573ded68bbce4..2aeb4f67d771433384e3193817f5b0750fe4635b 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -8,9 +8,7 @@ let cfg = xcfg.desktopManager.kde5; xorg = pkgs.xorg; - kf5 = pkgs.kf5_stable; - plasma5 = pkgs.plasma5_stable; - kdeApps = pkgs.kdeApps_stable; + kde5 = pkgs.kde5; in @@ -57,12 +55,12 @@ in services.xserver.desktopManager.session = singleton { name = "kde5"; bgSupport = true; - start = ''exec ${plasma5.plasma-workspace}/bin/startkde;''; + start = ''exec ${kde5.plasma-workspace}/bin/startkde;''; }; security.setuidOwners = singleton { program = "kcheckpass"; - source = "${plasma5.plasma-workspace}/lib/libexec/kcheckpass"; + source = "${kde5.plasma-workspace}/lib/libexec/kcheckpass"; owner = "root"; group = "root"; setuid = true; @@ -72,61 +70,61 @@ in [ pkgs.qt4 # qtconfig is the only way to set Qt 4 theme - kf5.frameworkintegration - kf5.kinit - - plasma5.breeze - plasma5.kde-cli-tools - plasma5.kdeplasma-addons - plasma5.kgamma5 - plasma5.khelpcenter - plasma5.khotkeys - plasma5.kinfocenter - plasma5.kmenuedit - plasma5.kscreen - plasma5.ksysguard - plasma5.kwayland - plasma5.kwin - plasma5.kwrited - plasma5.milou - plasma5.oxygen - plasma5.polkit-kde-agent - plasma5.systemsettings - - plasma5.plasma-desktop - plasma5.plasma-workspace - plasma5.plasma-workspace-wallpapers - - kdeApps.ark - kdeApps.dolphin - kdeApps.dolphin-plugins - kdeApps.ffmpegthumbs - kdeApps.gwenview - kdeApps.kate - kdeApps.kdegraphics-thumbnailers - kdeApps.konsole - kdeApps.okular - kdeApps.print-manager + kde5.frameworkintegration + kde5.kinit + + kde5.breeze + kde5.kde-cli-tools + kde5.kdeplasma-addons + kde5.kgamma5 + kde5.khelpcenter + kde5.khotkeys + kde5.kinfocenter + kde5.kmenuedit + kde5.kscreen + kde5.ksysguard + kde5.kwayland + kde5.kwin + kde5.kwrited + kde5.milou + kde5.oxygen + kde5.polkit-kde-agent + kde5.systemsettings + + kde5.plasma-desktop + kde5.plasma-workspace + kde5.plasma-workspace-wallpapers + + kde5.ark + kde5.dolphin + kde5.dolphin-plugins + kde5.ffmpegthumbs + kde5.gwenview + kde5.kate + kde5.kdegraphics-thumbnailers + kde5.konsole + kde5.okular + kde5.print-manager # Oxygen icons moved to KDE Frameworks 5.16 and later. - (kdeApps.oxygen-icons or kf5.oxygen-icons5) + (kde5.oxygen-icons or kde5.oxygen-icons5) pkgs.hicolor_icon_theme - plasma5.kde-gtk-config + kde5.kde-gtk-config ] # Plasma 5.5 and later has a Breeze GTK theme. # If it is not available, Orion is very similar to Breeze. - ++ lib.optional (!(lib.hasAttr "breeze-gtk" plasma5)) pkgs.orion + ++ lib.optional (!(lib.hasAttr "breeze-gtk" kde5)) pkgs.orion # Install Breeze icons if available - ++ lib.optional (lib.hasAttr "breeze-icons" kf5) kf5.breeze-icons + ++ lib.optional (lib.hasAttr "breeze-icons" kde5) kde5.breeze-icons # Optional hardware support features - ++ lib.optional config.hardware.bluetooth.enable plasma5.bluedevil - ++ lib.optional config.networking.networkmanager.enable plasma5.plasma-nm - ++ lib.optional config.hardware.pulseaudio.enable plasma5.plasma-pa - ++ lib.optional config.powerManagement.enable plasma5.powerdevil + ++ lib.optional config.hardware.bluetooth.enable kde5.bluedevil + ++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm + ++ lib.optional config.hardware.pulseaudio.enable kde5.plasma-pa + ++ lib.optional config.powerManagement.enable kde5.powerdevil ++ lib.optionals cfg.phonon.gstreamer.enable [ @@ -137,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 @@ -149,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" ]; @@ -166,9 +164,14 @@ in GST_PLUGIN_SYSTEM_PATH_1_0 = [ "/lib/gstreamer-1.0" ]; }; - fonts.fonts = [ (plasma5.oxygen-fonts or pkgs.noto-fonts) ]; + # Enable GTK applications to load SVG icons + environment.variables = mkIf (lib.hasAttr "breeze-icons" kde5) { + GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; + }; + + fonts.fonts = [ (kde5.oxygen-fonts or pkgs.noto-fonts) ]; - programs.ssh.askPassword = "${plasma5.ksshaskpass}/bin/ksshaskpass"; + programs.ssh.askPassword = "${kde5.ksshaskpass}/bin/ksshaskpass"; # Enable helpful DBus services. services.udisks2.enable = true; @@ -180,8 +183,8 @@ in services.xserver.displayManager.sddm = { theme = "breeze"; themes = [ - plasma5.plasma-workspace - (kdeApps.oxygen-icons or kf5.oxygen-icons5) + kde5.plasma-workspace + (kde5.oxygen-icons or kde5.oxygen-icons5) ]; }; diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index 4f6d490bd91d4b886d361d85ea640269d840a81b..3aa09193a66e0bd0ad9220a229611f6386e758ec 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -37,7 +37,7 @@ let # file provided by services.xserver.displayManager.session.script xsession = wm: dm: pkgs.writeScript "xsession" '' - #! /bin/sh + #! ${pkgs.bash}/bin/bash . /etc/profile cd "$HOME" diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix index c8ccf43029dcffee985f20b420c3428723506f3a..ded694d90d50b02bca4e4ef4013d347a5deb21ef 100644 --- a/nixos/modules/services/x11/display-managers/lightdm.nix +++ b/nixos/modules/services/x11/display-managers/lightdm.nix @@ -13,9 +13,16 @@ let # lightdm runs with clearenv(), but we need a few things in the enviornment for X to startup xserverWrapper = writeScript "xserver-wrapper" '' - #! /bin/sh + #! ${pkgs.bash}/bin/bash ${concatMapStrings (n: "export ${n}=\"${getAttr n xEnv}\"\n") (attrNames xEnv)} - exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs} + + display=$(echo "$@" | xargs -n 1 | grep -P ^:\\d\$ | head -n 1 | sed s/^://) + if [ -z "$display" ] + then additionalArgs=":0 -logfile /var/log/X.0.log" + else additionalArgs="-logfile /var/log/X.$display.log" + fi + + exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs} $additionalArgs "$@" ''; usersConf = writeText "users.conf" @@ -39,7 +46,6 @@ let greeter-session = ${cfg.greeter.name} ${cfg.extraSeatDefaults} ''; - in { # Note: the order in which lightdm greeter modules are imported @@ -98,7 +104,6 @@ in }; config = mkIf cfg.enable { - services.xserver.displayManager.slim.enable = false; services.xserver.displayManager.job = { @@ -149,5 +154,7 @@ in services.xserver.displayManager.lightdm.background = mkDefault "${pkgs.nixos-artwork}/share/artwork/gnome/Gnome_Dark.png"; + services.xserver.tty = null; # We might start multiple X servers so let the tty increment themselves.. + services.xserver.display = null; # We specify our own display (and logfile) in xserver-wrapper up there }; } diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index ae947a5d2d4b93162e53a30ae28c39546bee43b8..6b344822977f27cd55ec551475581dac141d0d89 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -17,6 +17,16 @@ let exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs} "$@" ''; + Xsetup = pkgs.writeScript "Xsetup" '' + #!/bin/sh + ${cfg.setupScript} + ''; + + Xstop = pkgs.writeScript "Xstop" '' + #!/bin/sh + ${cfg.stopScript} + ''; + cfgFile = pkgs.writeText "sddm.conf" '' [General] HaltCommand=${pkgs.systemd}/bin/systemctl poweroff @@ -39,6 +49,8 @@ let SessionCommand=${dmcfg.session.script} SessionDir=${dmcfg.session.desktops} XauthPath=${pkgs.xorg.xauth}/bin/xauth + DisplayCommand=${Xsetup} + DisplayStopCommand=${Xstop} ${optionalString cfg.autoLogin.enable '' [Autologin] @@ -98,6 +110,27 @@ in ''; }; + setupScript = mkOption { + type = types.str; + default = ""; + example = '' + # workaround for using NVIDIA Optimus without Bumblebee + xrandr --setprovideroutputsource modesetting NVIDIA-0 + xrandr --auto + ''; + description = '' + A script to execute when starting the display server. + ''; + }; + + stopScript = mkOption { + type = types.str; + default = ""; + description = '' + A script to execute when stopping the display server. + ''; + }; + autoLogin = mkOption { default = {}; description = '' @@ -105,7 +138,7 @@ in ''; type = types.submodule { - options = { + options = { enable = mkOption { type = types.bool; default = false; @@ -130,7 +163,7 @@ in will work only the first time. ''; }; - }; + }; }; }; @@ -142,14 +175,16 @@ in assertions = [ { assertion = cfg.autoLogin.enable -> cfg.autoLogin.user != null; - message = "SDDM auto-login requires services.xserver.displayManager.sddm.autoLogin.user to be set"; + message = '' + SDDM auto-login requires services.xserver.displayManager.sddm.autoLogin.user to be set + ''; } { assertion = cfg.autoLogin.enable -> elem defaultSessionName dmcfg.session.names; message = '' SDDM auto-login requires that services.xserver.desktopManager.default and - services.xserver.windowMananger.default are set to valid values. The current - default session: ${defaultSessionName} is not valid. - ''; + services.xserver.windowMananger.default are set to valid values. The current + default session: ${defaultSessionName} is not valid. + ''; } ]; diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix index d40373ec2e55d0fe8cdc84ece7fa65a0037a6b3d..6614be261e500466d55ccebc893e32ce55dcf403 100644 --- a/nixos/modules/services/x11/redshift.nix +++ b/nixos/modules/services/x11/redshift.nix @@ -98,13 +98,16 @@ in { requires = [ "display-manager.service" ]; after = [ "display-manager.service" ]; wantedBy = [ "graphical.target" ]; - serviceConfig.ExecStart = '' - ${cfg.package}/bin/redshift \ - -l ${cfg.latitude}:${cfg.longitude} \ - -t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \ - -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \ - ${lib.strings.concatStringsSep " " cfg.extraOptions} - ''; + serviceConfig = { + ExecStart = '' + ${cfg.package}/bin/redshift \ + -l ${cfg.latitude}:${cfg.longitude} \ + -t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \ + -b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \ + ${lib.strings.concatStringsSep " " cfg.extraOptions} + ''; + RestartSec = 3; + }; environment = { DISPLAY = ":0"; }; serviceConfig.Restart = "always"; }; diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 3860b50f24972d2ccb6fdd9b2674f4f0505623ce..aec6fb0cc045d066bdc930518aeadb760f531562 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -280,6 +280,13 @@ in ''; }; + xkbDir = mkOption { + type = types.path; + description = '' + Path used for -xkbdir xserver parameter. + ''; + }; + config = mkOption { type = types.lines; description = '' @@ -381,13 +388,13 @@ in }; tty = mkOption { - type = types.int; + type = types.nullOr types.int; default = 7; description = "Virtual console for the X server."; }; display = mkOption { - type = types.int; + type = types.nullOr types.int; default = 0; description = "Display number for the X server."; }; @@ -409,6 +416,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. + ''; + }; }; }; @@ -452,7 +469,7 @@ in target = "X11/xorg.conf"; } # -xkbdir command line option does not seems to be passed to xkbcomp. - { source = "${pkgs.xkeyboard_config}/etc/X11/xkb"; + { source = "${cfg.xkbDir}"; target = "X11/xkb"; } ]); @@ -517,11 +534,12 @@ in services.xserver.displayManager.xserverArgs = [ "-ac" "-terminate" - "-logfile" "/var/log/X.${toString cfg.display}.log" "-config ${configFile}" - ":${toString cfg.display}" "vt${toString cfg.tty}" - "-xkbdir" "${pkgs.xkeyboard_config}/etc/X11/xkb" - ] ++ optional (!cfg.enableTCP) "-nolisten tcp"; + "-xkbdir" "${cfg.xkbDir}" + ] ++ optional (cfg.display != null) ":${toString cfg.display}" + ++ optional (cfg.tty != null) "vt${toString cfg.tty}" + ++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ] + ++ optional (!cfg.enableTCP) "-nolisten tcp"; services.xserver.modules = concatLists (catAttrs "modules" cfg.drivers) ++ @@ -529,10 +547,13 @@ in xorg.xf86inputevdev ]; + services.xserver.xkbDir = mkDefault "${pkgs.xkeyboard_config}/etc/X11/xkb"; + services.xserver.config = '' 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 87dbbd7cd51f30562f3dabaa012f9bf640f2160e..47605e3685ca562de1186e1ba8559c7396a11c5d 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 675bd3d232a65f8f580412afeaeadb017dad1b45..dedd3f5ca451db49dd4a48a530b7a07d64fa2fbb 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/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix index 80b7f718580e4032acbc34e28d48c06a7128d721..f07e7baeb11985b79c279e9ace73b5cea7e68f2f 100644 --- a/nixos/modules/tasks/network-interfaces-scripted.nix +++ b/nixos/modules/tasks/network-interfaces-scripted.nix @@ -83,13 +83,13 @@ in # FIXME: get rid of "|| true" (necessary to make it idempotent). ip route add default via "${cfg.defaultGateway}" ${ optionalString (cfg.defaultGatewayWindowSize != null) - "window ${cfg.defaultGatewayWindowSize}"} || true + "window ${toString cfg.defaultGatewayWindowSize}"} || true ''} ${optionalString (cfg.defaultGateway6 != null && cfg.defaultGateway6 != "") '' # FIXME: get rid of "|| true" (necessary to make it idempotent). ip -6 route add ::/0 via "${cfg.defaultGateway6}" ${ optionalString (cfg.defaultGatewayWindowSize != null) - "window ${cfg.defaultGatewayWindowSize}"} || true + "window ${toString cfg.defaultGatewayWindowSize}"} || true ''} ''; }; diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix index bf2364a0459dd881e3528ce0eb162bd327f92ab7..7ccc9df740e563e53af641250adcd86c104497e0 100644 --- a/nixos/modules/virtualisation/amazon-image.nix +++ b/nixos/modules/virtualisation/amazon-image.nix @@ -11,7 +11,7 @@ with lib; let cfg = config.ec2; in { - imports = [ ../profiles/headless.nix ./ec2-data.nix ./amazon-grow-partition.nix ]; + imports = [ ../profiles/headless.nix ./ec2-data.nix ./amazon-grow-partition.nix ./amazon-init.nix ]; config = { diff --git a/nixos/modules/virtualisation/amazon-init.nix b/nixos/modules/virtualisation/amazon-init.nix index 21cbbfda0b68f9bd2ce6606bcdeb36afcc5cfa20..96cd57e6db5d89b3133ea5faf7c7d730d2a1abaf 100644 --- a/nixos/modules/virtualisation/amazon-init.nix +++ b/nixos/modules/virtualisation/amazon-init.nix @@ -44,7 +44,6 @@ let nixos-rebuild switch ''; in { - imports = [ "${modulesPath}/virtualisation/amazon-image.nix" ]; boot.postBootCommands = '' ${bootScript} & ''; diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index e657cc519396dabf044ed4e8b4f59638df7e3563..ef4e3e1e48d4f4ee6f704af4e13da8c939202cf6 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/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix index 718ca0851477104c0dd72527b1e1eb7e553e507b..97b2927cf1bdee3413b9bf2579a6258cca19503d 100644 --- a/nixos/modules/virtualisation/docker.nix +++ b/nixos/modules/virtualisation/docker.nix @@ -69,7 +69,8 @@ in description = '' The postStart phase of the systemd service. You may need to override this if you are passing in flags to docker which - don't cause the socket file to be created. + don't cause the socket file to be created. This option is ignored + if socket activation is used. ''; }; @@ -81,22 +82,29 @@ in config = mkIf cfg.enable (mkMerge [ { environment.systemPackages = [ pkgs.docker ]; users.extraGroups.docker.gid = config.ids.gids.docker; - } - (mkIf cfg.socketActivation { - systemd.services.docker = { description = "Docker Application Container Engine"; - after = [ "network.target" "docker.socket" ]; - requires = [ "docker.socket" ]; + wantedBy = optional (!cfg.socketActivation) "multi-user.target"; + after = [ "network.target" ] ++ (optional cfg.socketActivation "docker.socket") ; + requires = optional cfg.socketActivation "docker.socket"; serviceConfig = { - ExecStart = "${pkgs.docker}/bin/docker daemon --host=fd:// --group=docker --storage-driver=${cfg.storageDriver} ${cfg.extraOptions}"; + ExecStart = "${pkgs.docker}/bin/docker daemon --group=docker --storage-driver=${cfg.storageDriver} ${optionalString cfg.socketActivation "--host=fd://"} ${cfg.extraOptions}"; # I'm not sure if that limits aren't too high, but it's what # goes in config bundled with docker itself LimitNOFILE = 1048576; LimitNPROC = 1048576; } // proxy_env; - }; + path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs); + environment.MODULE_DIR = "/run/current-system/kernel-modules/lib/modules"; + + postStart = if cfg.socketActivation then "" else cfg.postStart; + + # Presumably some containers are running we don't want to interrupt + restartIfChanged = false; + }; + } + (mkIf cfg.socketActivation { systemd.sockets.docker = { description = "Docker Socket for the API"; wantedBy = [ "sockets.target" ]; @@ -108,29 +116,6 @@ in }; }; }) - (mkIf (!cfg.socketActivation) { - - systemd.services.docker = { - description = "Docker Application Container Engine"; - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - serviceConfig = { - ExecStart = "${pkgs.docker}/bin/docker daemon --group=docker --storage-driver=${cfg.storageDriver} ${cfg.extraOptions}"; - # I'm not sure if that limits aren't too high, but it's what - # goes in config bundled with docker itself - LimitNOFILE = 1048576; - LimitNPROC = 1048576; - } // proxy_env; - - path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs); - environment.MODULE_DIR = "/run/current-system/kernel-modules/lib/modules"; - - postStart = cfg.postStart; - - # Presumably some containers are running we don't want to interrupt - restartIfChanged = false; - }; - }) ]); } diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index 15b0da3bab740113a104aa688e95eb2e4c335efa..5c4686044430a46d294abf6067e51ecef630515d 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -40,16 +40,17 @@ let if [ -z "$TMPDIR" -o -z "$USE_TMPDIR" ]; then TMPDIR=$(mktemp -d nix-vm.XXXXXXXXXX --tmpdir) fi + # Create a directory for exchanging data with the VM. mkdir -p $TMPDIR/xchg ${if cfg.useBootLoader then '' - # Create a writable copy/snapshot of the boot disk - # A writable boot disk can be booted from automatically + # Create a writable copy/snapshot of the boot disk. + # A writable boot disk can be booted from automatically. ${pkgs.qemu_kvm}/bin/qemu-img create -f qcow2 -b ${bootDisk}/disk.img $TMPDIR/disk.img || exit 1 ${if cfg.useEFIBoot then '' - # VM needs a writable flash BIOS + # VM needs a writable flash BIOS. cp ${bootDisk}/bios.bin $TMPDIR || exit 1 chmod 0644 $TMPDIR/bios.bin || exit 1 '' else '' @@ -76,14 +77,14 @@ let -virtfs local,path=$TMPDIR/xchg,security_model=none,mount_tag=xchg \ -virtfs local,path=''${SHARED_DIR:-$TMPDIR/xchg},security_model=none,mount_tag=shared \ ${if cfg.useBootLoader then '' - -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=writeback,werror=report \ + -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=none,werror=report \ -drive index=1,id=drive2,file=$TMPDIR/disk.img,media=disk \ ${if cfg.useEFIBoot then '' -pflash $TMPDIR/bios.bin \ '' else '' ''} '' else '' - -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=writeback,werror=report \ + -drive index=0,id=drive1,file=$NIX_DISK_IMAGE,if=${cfg.qemu.diskInterface},cache=none,werror=report \ -kernel ${config.system.build.toplevel}/kernel \ -initrd ${config.system.build.toplevel}/initrd \ -append "$(cat ${config.system.build.toplevel}/kernel-params) init=${config.system.build.toplevel}/init regInfo=${regInfo} ${kernelConsole} $QEMU_KERNEL_PARAMS" \ @@ -297,6 +298,7 @@ in virtualisation.qemu = { options = mkOption { + type = types.listOf types.unspecified; default = []; example = [ "-vga std" ]; description = "Options passed to QEMU."; @@ -425,19 +427,19 @@ in ${if cfg.writableStore then "/nix/.ro-store" else "/nix/store"} = { device = "store"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,msize=1048576,cache=loose"; + options = "trans=virtio,version=9p2000.L,cache=loose"; neededForBoot = true; }; "/tmp/xchg" = { device = "xchg"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,msize=1048576,cache=loose"; + options = "trans=virtio,version=9p2000.L,cache=loose"; neededForBoot = true; }; "/tmp/shared" = { device = "shared"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,msize=1048576"; + options = "trans=virtio,version=9p2000.L"; neededForBoot = true; }; } // optionalAttrs cfg.writableStore diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 9a2a77b31554744d06ea6cba67f0aceeddb2c8e0..06890b458efafd6158907c441a925fed40816362 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 b5ac97b3b94fd7456b90d718cdd98ac11cff96c9..d7c736d66a953326f5bad88d162ba3095d57b728 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -47,6 +47,7 @@ let }; inherit iso; passthru = { inherit config; }; + preferLocalBuild = true; } '' mkdir -p $out/nix-support @@ -149,6 +150,7 @@ in rec { maintainers = maintainers.eelco; }; ova = config.system.build.virtualBoxOVA; + preferLocalBuild = true; } '' mkdir -p $out/nix-support @@ -168,6 +170,7 @@ in rec { boot.loader.grub.device = mkDefault "/dev/sda"; }); }).config.system.build.toplevel; + preferLocalBuild = true; } "mkdir $out; ln -s $toplevel $out/dummy"); @@ -220,7 +223,7 @@ in rec { tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; - #tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; + tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; tests.firefox = callTest tests/firefox.nix {}; tests.firewall = callTest tests/firewall.nix {}; tests.fleet = hydraJob (import tests/fleet.nix { system = "x86_64-linux"; }); @@ -256,6 +259,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 +268,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 6a7f63702c41ce77d8e599fe4114c14e1a1eaa96..813d7c2bf516746e6894c4f852984a3492b7bc81 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/nixos/tests/slurm.nix b/nixos/tests/slurm.nix new file mode 100644 index 0000000000000000000000000000000000000000..0dd00dfb04c26de653698f7ab9a957019762fac5 --- /dev/null +++ b/nixos/tests/slurm.nix @@ -0,0 +1,80 @@ +import ./make-test.nix ({ pkgs, ... }: +let mungekey = "mungeverryweakkeybuteasytointegratoinatest"; + slurmconfig = { + client.enable = true; + controlMachine = "control"; + nodeName = '' + control + NodeName=node[1-3] CPUs=1 State=UNKNOWN + ''; + partitionName = "debug Nodes=node[1-3] Default=YES MaxTime=INFINITE State=UP"; + }; +in { + name = "slurm"; + + nodes = + let + computeNode = + { config, pkgs, ...}: + { + # TODO slrumd port and slurmctld port should be configurations and + # automatically allowed by the firewall. + networking.firewall.enable = false; + services.munge.enable = true; + services.slurm = slurmconfig; + }; + in { + control = + { config, pkgs, ...}: + { + networking.firewall.enable = false; + services.munge.enable = true; + services.slurm = { + server.enable = true; + } // slurmconfig; + }; + node1 = computeNode; + node2 = computeNode; + node3 = computeNode; + }; + + testScript = + '' + startAll; + + # Set up authentification across the cluster + foreach my $node (($control,$node1,$node2,$node3)) + { + $node->waitForUnit("default.target"); + + $node->succeed("mkdir /etc/munge"); + $node->succeed("echo '${mungekey}' > /etc/munge/munge.key"); + $node->succeed("chmod 0400 /etc/munge/munge.key"); + $node->succeed("systemctl restart munged"); + } + + # Restart the services since they have probably failed due to the munge init + # failure + + subtest "can_start_slurmctld", sub { + $control->succeed("systemctl restart slurmctld"); + $control->waitForUnit("slurmctld.service"); + }; + + subtest "can_start_slurmd", sub { + foreach my $node (($control,$node1,$node2,$node3)) + { + $node->succeed("systemctl restart slurmd.service"); + $node->waitForUnit("slurmd"); + } + }; + + # Test that the cluster work and can distribute jobs; + + subtest "run_distributed_command", sub { + # Run `hostname` on 3 nodes of the partition (so on all the 3 nodes). + # The output must contain the 3 different names + $control->succeed("srun -N 3 hostname | sort | uniq | wc -l | xargs test 3 -eq"); + }; + ''; +}) diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index d99e1b7a150f31d33352c46fa1d1f8a6329e78ff..aec2768e4505a925f975805ebdb1f1f549b37d1a 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -2,6 +2,7 @@ , qtscriptgenerator, gettext, curl , libxml2, mysql, taglib , taglib_extras, loudmouth , kdelibs , qca2, libmtp, liblastfm, libgpod , phonon , strigi, soprano, qjson, ffmpeg, libofa, nepomuk_core ? null +, lz4, lzo, snappy, libaio }: stdenv.mkDerivation rec { @@ -23,8 +24,14 @@ stdenv.mkDerivation rec { qtscriptgenerator stdenv.cc.libc gettext curl libxml2 mysql.lib taglib taglib_extras loudmouth kdelibs phonon strigi soprano qca2 libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core + lz4 lzo snappy libaio ]; + # This is already fixed upstream, will be release in 2.9 + preConfigure = '' + sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake + ''; + cmakeFlags = "-DKDE4_BUILD_TESTS=OFF"; propagatedUserEnvPkgs = [ qtscriptgenerator ]; diff --git a/pkgs/applications/audio/cantata/default.nix b/pkgs/applications/audio/cantata/default.nix index 2d399ba44da38e13f5e1d4f103d79771ad07eea1..6906c7bccb5eb7492b99f64056e2ff268645b1e5 100644 --- a/pkgs/applications/audio/cantata/default.nix +++ b/pkgs/applications/audio/cantata/default.nix @@ -93,6 +93,11 @@ stdenv.mkDerivation rec { "-DENABLE_UDISKS2=ON" ]; + # This is already fixed upstream but not released yet. Maybe in version 2. + preConfigure = '' + sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake + ''; + postInstall = stdenv.lib.optionalString withQt5 '' wrapQtProgram "$out/bin/cantata" ''; diff --git a/pkgs/applications/audio/google-musicmanager/default.nix b/pkgs/applications/audio/google-musicmanager/default.nix index 8127579f0229d5f55f79ea2d6c83381f8641873e..72bec52b2663a0cbadf7039867df96fe6b8c7d4f 100644 --- a/pkgs/applications/audio/google-musicmanager/default.nix +++ b/pkgs/applications/audio/google-musicmanager/default.nix @@ -6,23 +6,24 @@ let archUrl = name: arch: "http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/${name}_${arch}.deb"; in stdenv.mkDerivation rec { - version = "beta_1.0.221.5230-r0"; # friendly to nix-env version sorting algo + version = "beta_1.0.243.1116-r0"; # friendly to nix-env version sorting algo product = "google-musicmanager"; name = "${product}-${version}"; # When looking for newer versions, since google doesn't let you list their repo dirs, # curl http://dl.google.com/linux/musicmanager/deb/dists/stable/Release - # fetch an appropriate packages file eg main/binary-amd64/Packages + # fetch an appropriate packages file such as main/binary-amd64/Packages: + # curl http://dl.google.com/linux/musicmanager/deb/dists/stable/main/binary-amd64/Packages # which will contain the links to all available *.debs for the arch. src = if stdenv.system == "x86_64-linux" then fetchurl { url = archUrl name "amd64"; - sha256 = "1h0ssbz6y9xi2szalgb5wcxi8m1ylg4qf2za6zgvi908hpan7q37"; + sha256 = "54f97f449136e173492d36084f2c01244b84f02d6e223fb8a40661093e0bec7c"; } else fetchurl { url = archUrl name "i386"; - sha256 = "0q8cnzx7s25bpqlbp40d43mwd6m8kvhvdifkqlgc9phpydnqpd1i"; + sha256 = "121a7939015e2270afa3f1c73554102e2b4f2e6a31482ff7be5e7c28dd101d3c"; }; unpackPhase = '' diff --git a/pkgs/applications/audio/mopidy-gmusic/default.nix b/pkgs/applications/audio/mopidy-gmusic/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..00468db767a2d849a21be5cd3fd0ea021f6b3c16 --- /dev/null +++ b/pkgs/applications/audio/mopidy-gmusic/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pythonPackages, mopidy }: + +pythonPackages.buildPythonPackage rec { + name = "mopidy-gmusic-${version}"; + version = "1.0.0"; + + src = fetchurl { + url = "https://github.com/mopidy/mopidy-gmusic/archive/v${version}.tar.gz"; + sha256 = "0yfilzfamy1bxnmgb1xk56jrk4sz0i7vcnc0a8klrm9sc7agnm9i"; + }; + + propagatedBuildInputs = [ mopidy pythonPackages.requests2 pythonPackages.gmusicapi ]; + + doCheck = false; + + meta = with stdenv.lib; { + homepage = http://www.mopidy.com/; + description = "Mopidy extension for playing music from Google Play Music"; + license = licenses.asl20; + maintainers = [ maintainers.jgillich ]; + hydraPlatforms = []; + }; +} diff --git a/pkgs/applications/audio/mopidy-mopify/default.nix b/pkgs/applications/audio/mopidy-mopify/default.nix index 4792a02f341d29ed5c9e9fe59c29f33225a4e1c3..b7a1fbf2f08cd42bd5fe4099904425c6baba5569 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 0000000000000000000000000000000000000000..e13a1a978fdccaa207a55a32b41d84cd730321ef --- /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 0000000000000000000000000000000000000000..c10bb00909a25eb6b25054db4c18d66b917eb09a --- /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 0000000000000000000000000000000000000000..ab07b0f1f68e059004e8cbe1349edde6b6f4bb76 --- /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 0000000000000000000000000000000000000000..efd1425e2554143605a53a858c4779758fa65c47 --- /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 7c236944892076462a6092b97d65bac43194f3f7..91fc9d6f3fc974c754a62be870531577e865c256 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -1,19 +1,19 @@ { stdenv, fetchurl, pythonPackages, pygobject, gst_python -, gst_plugins_good, gst_plugins_base +, gst_plugins_good, gst_plugins_base, gst_plugins_ugly }: pythonPackages.buildPythonPackage rec { name = "mopidy-${version}"; - version = "1.0.5"; + version = "1.1.1"; src = fetchurl { url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz"; - sha256 = "0lhmm2w2djf6mb3acw1yq1k4j74v1lf4kgx24dsdnpkgsycrv5q6"; + sha256 = "1xfyg8xqgnrb98wx7a4fzr4vlzkffjhkc1s36ka63rwmx86vqhyw"; }; propagatedBuildInputs = with pythonPackages; [ - gst_python pygobject pykka tornado 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 e316df4a8c1fc181be60a528cfdfdc1e9348580e..70cde4b0c706b421d6a384c70504483a198c7bd1 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/praat/default.nix b/pkgs/applications/audio/praat/default.nix index 03ba33b4834a87aea749a96de154a4c79be92206..883d49682cecfa0bcd27f90b14fd83b286b133d3 100644 --- a/pkgs/applications/audio/praat/default.nix +++ b/pkgs/applications/audio/praat/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, alsaLib, gtk, pkgconfig }: -let version = "5417"; in -stdenv.mkDerivation { +stdenv.mkDerivation rec { name = "praat-${version}"; + version = "5.4.17"; src = fetchurl { - url = "http://www.fon.hum.uva.nl/praat/praat${version}_sources.tar.gz"; - sha256 = "1bspl963pb1s6k3cd9p3g5j518pxg6hkrann945lqsrvbzaa20kl"; + url = "https://github.com/praat/praat/archive/v${version}.tar.gz"; + sha256 = "0s2hrksghg686059vc90h3ywhd2702pqcvy99icw27q5mdk6dqsx"; }; configurePhase = '' diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index d9983a3268541d1ccff0c1d7c824d9999eb1dffd..365332cb8a23a0eeda39bb4490a105acbbef55bc 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 +{ fetchurl, stdenv, dpkg, xorg, qt4, alsaLib, makeWrapper, openssl_1_0_1, 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 @@ -66,8 +67,8 @@ stdenv.mkDerivation { # Work around Spotify referring to a specific minor version of # OpenSSL. - ln -s ${openssl.out}/lib/libssl.so $libdir/libssl.so.1.0.0 - ln -s ${openssl.out}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0 + ln -s ${openssl_1_0_1.out}/lib/libssl.so $libdir/libssl.so.1.0.0 + ln -s ${openssl_1_0_1.out}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0 ln -s ${nspr.out}/lib/libnspr4.so $libdir/libnspr4.so ln -s ${nspr.out}/lib/libplc4.so $libdir/libplc4.so diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix index 32d5f1aa13e5a5790d27b930f14c6518b9411137..61cb6b9896e32e2ae1209fa9a7e6dc94f660a755 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/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 7492e8e0a3715933ce463f5ec095f1d7e47e3f1b..48f559dfd86dc63e99aa9cf8637c1aa5815eeb9d 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/zamaudio/zam-plugins.git"; deepClone = true; rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee"; - sha256 = "17slpywjs04xbcylyqjg6kqbpqwqbigf843y437yfvj1ar6ir1jp"; + sha256 = "0n29zxg4l2m3jsnfw6q2alyzaw7ibbv9nvk57k07sv3lh2yy3f30"; }; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; diff --git a/pkgs/applications/display-managers/sddm/default.nix b/pkgs/applications/display-managers/sddm/default.nix index d2faf465106b54d01e919d2618bab3ec89b06b73..b7bf5ee56640f8b4907e3d2be67f08b0975b379a 100644 --- a/pkgs/applications/display-managers/sddm/default.nix +++ b/pkgs/applications/display-managers/sddm/default.nix @@ -45,6 +45,11 @@ let enableParallelBuilding = true; + postInstall = '' + # remove empty scripts + rm "$out/share/sddm/scripts/Xsetup" "$out/share/sddm/scripts/Xstop" + ''; + meta = with stdenv.lib; { description = "QML based X11 display manager"; homepage = https://github.com/sddm/sddm; diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index e3dc175b339a8fb199c4e4fd3f4e6531fe2e2623..13e00754acd394b12c7412d0d19a25c6d1d579d6 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -16,11 +16,11 @@ let }; in stdenv.mkDerivation rec { name = "atom-${version}"; - version = "1.2.0"; + version = "1.3.1"; src = fetchurl { url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb"; - sha256 = "05s3kvsz6pzh4gm22aaps1nccp76skfshdzlqwg0qn0ljz58sdqh"; + sha256 = "17q5vrvjsyxcd8favp0sldfvhcwr0ba6ws32df6iv2iyla5h94y1"; name = "${name}.deb"; }; diff --git a/pkgs/applications/editors/emacs-25/at-fdcwd.patch b/pkgs/applications/editors/emacs-25/at-fdcwd.patch new file mode 100644 index 0000000000000000000000000000000000000000..1f99d4e18094c8cfa23153bc00274e0a7cc17eb1 --- /dev/null +++ b/pkgs/applications/editors/emacs-25/at-fdcwd.patch @@ -0,0 +1,13 @@ +diff --git a/lib/careadlinkat.h b/lib/careadlinkat.h +index 5cdb813..7a272e8 100644 +--- a/lib/careadlinkat.h ++++ b/lib/careadlinkat.h +@@ -23,6 +23,8 @@ + #include + #include + ++#define AT_FDCWD -2 ++ + struct allocator; + + /* Assuming the current directory is FD, get the symbolic link value diff --git a/pkgs/applications/editors/emacs-25/builder.sh b/pkgs/applications/editors/emacs-25/builder.sh new file mode 100644 index 0000000000000000000000000000000000000000..984a61df6f3b852808a6a5092a31c7be54b41b7c --- /dev/null +++ b/pkgs/applications/editors/emacs-25/builder.sh @@ -0,0 +1,38 @@ +source $stdenv/setup + +# This hook is supposed to be run on Linux. It patches the proper locations of +# the crt{1,i,n}.o files into the build to ensure that Emacs is linked with +# *our* versions, not the ones found in the system, as it would do by default. +# On other platforms, this appears to be unnecessary. +preConfigure() { + for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do + substituteInPlace $i --replace /bin/pwd pwd + done + + case "${system}" in + x86_64-linux) glibclibdir=lib64 ;; + i686-linux) glibclibdir=lib ;; + *) return; + esac + + libc=$(cat ${NIX_CC}/nix-support/orig-libc) + echo "libc: $libc" + + for i in src/s/*.h src/m/*.h; do + substituteInPlace $i \ + --replace /usr/${glibclibdir}/crt1.o $libc/${glibclibdir}/crt1.o \ + --replace /usr/${glibclibdir}/crti.o $libc/${glibclibdir}/crti.o \ + --replace /usr/${glibclibdir}/crtn.o $libc/${glibclibdir}/crtn.o \ + --replace /usr/lib/crt1.o $libc/${glibclibdir}/crt1.o \ + --replace /usr/lib/crti.o $libc/${glibclibdir}/crti.o \ + --replace /usr/lib/crtn.o $libc/${glibclibdir}/crtn.o + done +} + +preInstall () { + for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do + substituteInPlace $i --replace /bin/pwd pwd + done +} + +genericBuild diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..472a686b964be4f5e65ee0d356a57b0f3b0dc9ae --- /dev/null +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -0,0 +1,113 @@ +{ stdenv, fetchgit, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d +, pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif +, libtiff, librsvg, texinfo, gconf, libxml2, imagemagick, gnutls +, alsaLib, cairo, acl, gpm, AppKit, Foundation, libobjc +, autoconf, automake +, withX ? !stdenv.isDarwin +, withGTK3 ? false, gtk3 ? null +, withGTK2 ? true, gtk2 +}: + +assert (libXft != null) -> libpng != null; # probably a bug +assert stdenv.isDarwin -> libXaw != null; # fails to link otherwise +assert withGTK2 -> withX || stdenv.isDarwin; +assert withGTK3 -> withX || stdenv.isDarwin; +assert withGTK2 -> !withGTK3 && gtk2 != null; +assert withGTK3 -> !withGTK2 && gtk3 != null; + +let + toolkit = + if withGTK3 then "gtk3" + else if withGTK2 then "gtk2" + else "lucid"; +in + +stdenv.mkDerivation rec { + name = "emacs-25.0.50-1b5630e"; + + builder = ./builder.sh; + + src = fetchgit { + url = "git://git.savannah.gnu.org/emacs.git"; + rev = "1b5630eb47d3f4bade09708c958ab006b83b3fc0"; + sha256 = "0n3qbri84akmy7ad1pbv89j4jn4x9pnkz0p4nbhh6m1c37cbz58l"; + }; + + patches = stdenv.lib.optionals stdenv.isDarwin [ + ./at-fdcwd.patch + ]; + + postPatch = '' + sed -i 's|/usr/share/locale|${gettext}/share/locale|g' lisp/international/mule-cmds.el + ''; + + buildInputs = + [ ncurses gconf libxml2 gnutls alsaLib pkgconfig texinfo acl gpm gettext + autoconf automake ] + ++ stdenv.lib.optional stdenv.isLinux dbus + ++ stdenv.lib.optionals withX + [ xlibsWrapper libXaw Xaw3d libXpm libpng libjpeg libungif libtiff librsvg libXft + imagemagick gconf ] + ++ stdenv.lib.optional (withX && withGTK2) gtk2 + ++ stdenv.lib.optional (withX && withGTK3) gtk3 + ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo; + + propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc + ]; + + NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin + "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; + + configureFlags = + if stdenv.isDarwin + then [ "--with-ns" "--disable-ns-self-contained" ] + else if withX + then [ "--with-x-toolkit=${toolkit}" "--with-xft" ] + else [ "--with-x=no" "--with-xpm=no" "--with-jpeg=no" "--with-png=no" + "--with-gif=no" "--with-tiff=no" ]; + + NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX) + "-I${cairo}/include/cairo"; + + preBuild = '' + find . -name '*.elc' -delete + ''; + + postInstall = '' + mkdir -p $out/share/emacs/site-lisp/ + cp ${./site-start.el} $out/share/emacs/site-lisp/site-start.el + '' + stdenv.lib.optionalString stdenv.isDarwin '' + mkdir -p $out/Applications + mv nextstep/Emacs.app $out/Applications + ''; + + doCheck = !stdenv.isDarwin; + + meta = with stdenv.lib; { + description = "GNU Emacs 25 (pre), the extensible, customizable text editor"; + homepage = http://www.gnu.org/software/emacs/; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny ]; + platforms = platforms.all; + + # So that Exuberant ctags is preferred + priority = 1; + + longDescription = '' + GNU Emacs is an extensible, customizable text editor—and more. At its + core is an interpreter for Emacs Lisp, a dialect of the Lisp + programming language with extensions to support text editing. + + The features of GNU Emacs include: content-sensitive editing modes, + including syntax coloring, for a wide variety of file types including + plain text, source code, and HTML; complete built-in documentation, + including a tutorial for new users; full Unicode support for nearly all + human languages and their scripts; highly customizable, using Emacs + Lisp code or a graphical interface; a large number of extensions that + add other functionality, including a project planner, mail and news + reader, debugger interface, calendar, and more. Many of these + extensions are distributed with GNU Emacs; others are available + separately. + ''; + }; +} diff --git a/pkgs/applications/editors/emacs-25/site-start.el b/pkgs/applications/editors/emacs-25/site-start.el new file mode 100644 index 0000000000000000000000000000000000000000..023d6412ed848d37cb01d0bef2c45e028e6975f5 --- /dev/null +++ b/pkgs/applications/editors/emacs-25/site-start.el @@ -0,0 +1,17 @@ +;; NixOS specific load-path +(setq load-path + (append (reverse (mapcar (lambda (x) (concat x "/share/emacs/site-lisp/")) + (split-string (or (getenv "NIX_PROFILES") "")))) + load-path)) + +;;; Make `woman' find the man pages +(eval-after-load 'woman + '(setq woman-manpath + (append (reverse (mapcar (lambda (x) (concat x "/share/man/")) + (split-string (or (getenv "NIX_PROFILES") "")))) + woman-manpath))) + +;; Make tramp work for remote NixOS machines +;;; NOTE: You might want to add +(eval-after-load 'tramp + '(add-to-list 'tramp-remote-path "/run/current-system/sw/bin")) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.json b/pkgs/applications/editors/emacs-modes/elpa-packages.json index 0572dca56be632170612b8e5deb7cef002146c56..479808d1d03c1851bd3d2e34acad51be2241b2b1 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-20151221.tar", + "sha256": "01p8c70bd2mp3w08vpha0dvpljhj4r5797b0m9q16z4zhxqaqbqx" }, - "version": "20151123", + "version": "20151221", "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 3cf37c2628068e86b4599036186cef02882919f5..aa30d62c60a96e1dbabd242b676171c7f77ea95f 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 + +self: + + let + super = mapAttrs (mkPackage self) manifest; + + elpaBuild = import ../../../build-support/emacs/melpa.nix { + inherit fetchurl lib stdenv texinfo; + inherit (self) emacs; + }; - elpaBuild = import ../../../build-support/emacs/melpa.nix { - inherit (pkgs) lib stdenv fetchurl texinfo; - inherit (self) emacs; - }; - in elpaPackages // { inherit elpaBuild elpaPackages; }; + markBroken = pkg: pkg.override { + elpaBuild = args: self.elpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; -in makeScope pkgs.newScope packages + 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 0000000000000000000000000000000000000000..889b4cea4a5a61b880b4a9e0edc9bb6860b976f1 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.json @@ -0,0 +1,46627 @@ +{ + "netherlands-holidays": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "netherlands-holidays", + "sha256": "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z", + "rev": "26236178cdd650df9958bf5a086e184096559f00" + }, + "recipe": { + "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.1017", + "deps": [] + }, + "qiita": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "qiita-el", + "sha256": "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5", + "rev": "93c697b97d540fd1601a13a3d9889fb939b19878" + }, + "recipe": { + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140118.244", + "deps": [ + "helm", + "markdown-mode" + ] + }, + "drawille": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sshbio", + "repo": "drawille", + "sha256": "1i4kccig2qy9rqfblibjj0aml7yqxjl9j2za4nkqdjwqkn9ihin7", + "rev": "2b31e339a64e06ae817b29cade04a2a141c69121" + }, + "recipe": { + "sha256": "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1832", + "deps": [ + "cl-lib" + ] + }, + "om-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danielsz", + "repo": "om-mode", + "sha256": "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb", + "rev": "cdc0c2912321f8438b0f3449ba8aca50ec150bba" + }, + "recipe": { + "sha256": "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140915.1610", + "deps": [] + }, + "outorg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outorg", + "sha256": "0jhqpm31rsmc2r01ra48nbnd9rx9am90qk6i0qrhgfzx9q1svmj9", + "rev": "9d6d6f1fb8c68ee044ffba1ae1aed8146bcff1f1" + }, + "recipe": { + "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150910.1440", + "deps": [] + }, + "cg": { + "fetch": { + "tag": "fetchsvn", + "url": "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs", + "sha256": "1v8wgm3cvz4xx2jlx95ipd9340mxfxgk5hqialp76y74x03vfzq1", + "rev": "11174" + }, + "recipe": { + "sha256": "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150909.43", + "deps": [ + "helm" + ] + }, + "wgrep-ag": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.2305", + "deps": [] + }, + "focus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Focus", + "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc", + "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" + }, + "recipe": { + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150504.1811", + "deps": [] + }, + "buffer-move": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lukhas", + "repo": "buffer-move", + "sha256": "0n60373l60fb7w679ld8i1fa6fqj23f8q8ypfddv1zjxjkp4n2k0", + "rev": "7034d74abe4df67737d520e994d55dbb34b3b4d5" + }, + "recipe": { + "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151106.249", + "deps": [] + }, + "slovak-holidays": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "slovak-holidays", + "sha256": "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28", + "rev": "effb16dfcd14797bf7448f5113085479db339c02" + }, + "recipe": { + "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150418.355", + "deps": [] + }, + "youdao-dictionary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "youdao-dictionary.el", + "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr", + "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" + }, + "recipe": { + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140128.1334", + "deps": [] + }, + "emacsql": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.837", + "deps": [] + }, + "cmake-ide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "cmake-ide", + "sha256": "1qkcyh26iz7xm9a9ki0k3m1mcq4jfddy6n2ibvxl2g1l1p487cgq", + "rev": "1b4a9cb5c588efd2e0f9fc9bbc2f638e29bbb9f5" + }, + "recipe": { + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.1347", + "deps": [ + "emacs" + ] + }, + "hideshow-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shanecelis", + "repo": "hideshow-org", + "sha256": "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r", + "rev": "16419e52e6cdd2f46f755144c0ab11ce00d1a626" + }, + "recipe": { + "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120223.1650", + "deps": [] + }, + "jammer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "jammer", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh", + "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" + }, + "recipe": { + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.814", + "deps": [] + }, + "ghci-completion": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "ghci-completion", + "sha256": "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q", + "rev": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5" + }, + "recipe": { + "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.1640", + "deps": [ + "dired-sort-menu" + ] + }, + "tide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "tide", + "sha256": "045c1fmmig88lc7c85vy8532mx0lhl666m5lrrv4i6r5n6sf68s3", + "rev": "0c0f95b9e5abdbe60ccfcefc81f02178bfa940ab" + }, + "recipe": { + "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150824.901", + "deps": [] + }, + "go-eldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-eldoc", + "sha256": "1jwh5rqk7vr6kna6i0p3fl3wjk3mhlr6gxklc3xij4r2zdyfj8na", + "rev": "684f1414913c85695eb8ca4a2643cea04ee60527" + }, + "recipe": { + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1906", + "deps": [] + }, + "cerbere": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "cerbere", + "sha256": "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im", + "rev": "ef573b05f4c2a067b8234003aaa4b2a76fffea5c" + }, + "recipe": { + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140211.149", + "deps": [] + }, + "grandshell-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "grandshell-theme", + "sha256": "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs", + "rev": "6bf34fb1a3117244629a7fb23daf610f50854bed" + }, + "recipe": { + "sha256": "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150404.701", + "deps": [] + }, + "warm-night-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "warm-night-theme", + "sha256": "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif", + "rev": "67cc2a1591c0627e6310cdfe8ca7c8d4565b9c16" + }, + "recipe": { + "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150607.941", + "deps": [ + "emacs" + ] + }, + "cbm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "akermu", + "repo": "cbm.el", + "sha256": "1b3cjb27z0nypn9nsmi93b61j7a252fb7sclh1mrsnanhvbwl0zx", + "rev": "40ae4f6ed075889346b4ba7cf991f5ad6dd6d1b7" + }, + "recipe": { + "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150715.1404", + "deps": [] + }, + "lacarte": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lacarte.el", + "sha256": "1nlras4g3ncp1pcmkkpa2j88zvqjibmn5h6ilahgjry0dwg9qw5j" + }, + "recipe": { + "sha256": "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1750", + "deps": [] + }, + "diff-hl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "diff-hl", + "sha256": "1n1acyd39n0zbfcc5bzn81yzw7f1z1mxz43maq5hdc25m8rcqkw2", + "rev": "89e08d60c4e8d5d4ddd47e14c0dd769ba965a545" + }, + "recipe": { + "sha256": "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.1915", + "deps": [ + "cl-lib" + ] + }, + "outline-magic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outline-magic", + "sha256": "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn", + "rev": "5689436cd67edc86066e51be77fa4e1fe21de507" + }, + "recipe": { + "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150110.2226", + "deps": [ + "emacs" + ] + }, + "mmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "mmt", + "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc", + "rev": "e77b809e39b9ab437b662ee759e990163bc89377" + }, + "recipe": { + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150906.1159", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "fetch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "crshd", + "repo": "fetch.el", + "sha256": "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8", + "rev": "3f2793afcbbc32f320e572453166f9354ecc6d06" + }, + "recipe": { + "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131201.130", + "deps": [] + }, + "vimish-fold": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "vimish-fold", + "sha256": "1kypjcw9n2amfq3y2g1dgx6zxf0yy4xnmxjg1fgs9j3xshg6y61m", + "rev": "843a709a129f3f587fa69a67ec655b2ef301ea8a" + }, + "recipe": { + "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150623.533", + "deps": [] + }, + "slime-company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "anwyn", + "repo": "slime-company", + "sha256": "1yi89hmnawf1pf9nv3f6i8a168wvri3zc40wgbbgnda8hxrcqkjx", + "rev": "cf03a862c3aa2393eb151af9e5bc032aa6b6f154" + }, + "recipe": { + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151210.814", + "deps": [ + "company", + "slime" + ] + }, + "flymake-php": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-php", + "sha256": "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4", + "rev": "93abe12d62b13f1d035a0df01e53e4bacdac2c66" + }, + "recipe": { + "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121104.1302", + "deps": [ + "flymake-easy" + ] + }, + "jade-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150801.1144", + "deps": [] + }, + "cheatsheet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "darksmile", + "repo": "cheatsheet", + "sha256": "1v2r7b6dbnxfhacg8cbb0wkymsnxnr2qgxsdbzqb4lh7r282vxxn", + "rev": "80e58c1783571e2907dfe25a32ae46ad3da1bcf1" + }, + "recipe": { + "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140121.1143", + "deps": [] + }, + "dakrone-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "dakrone-theme", + "sha256": "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy", + "rev": "281ac9f9080a94bf9dada2f40cdba58e50f94235" + }, + "recipe": { + "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140730.1449", + "deps": [] + }, + "unfill": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "unfill", + "sha256": "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3", + "rev": "d5f3dbaaaa871dc26bbc9e4bcd6deacac02a02d4" + }, + "recipe": { + "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131103.413", + "deps": [] + }, + "sonic-pi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "repl-electric", + "repo": "sonic-pi.el", + "sha256": "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1", + "rev": "3d88a784bf7883ec56fbef5923c4e1b50d2b9b09" + }, + "recipe": { + "sha256": "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131118.426", + "deps": [] + }, + "inf-clojure": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "inf-clojure", + "sha256": "1b1w999gsz2w7djc46pcxchqzpkwvqg3cfsh3j8mhb1rvmh33m7a", + "rev": "54fe6de266db1bbdaa634ce7680ea8733971335c" + }, + "recipe": { + "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1407", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150408.506", + "deps": [ + "s" + ] + }, + "shell-pop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kyagi", + "repo": "shell-pop-el", + "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5", + "rev": "4531d234ca471ed80458252cba0ed005a0720b27" + }, + "recipe": { + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.830", + "deps": [ + "emacs" + ] + }, + "cider-decompile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider-decompile", + "sha256": "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac", + "rev": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651" + }, + "recipe": { + "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140702.1009", + "deps": [] + }, + "persistent-scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "persistent-scratch", + "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh", + "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" + }, + "recipe": { + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.1143", + "deps": [ + "emacs" + ] + }, + "map-regexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-regexp", + "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c", + "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" + }, + "recipe": { + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130522.1603", + "deps": [ + "cl-lib" + ] + }, + "sauron": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "djcb", + "repo": "sauron", + "sha256": "0hzg05i8x2xgsr99nyikvflsibjsq2nryfsw7y2wyhc43w89l8cb", + "rev": "d7704fd9a0623d862f03f40588ac816a8877f308" + }, + "recipe": { + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150614.246", + "deps": [] + }, + "ob-browser": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-browser", + "sha256": "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813", + "rev": "9271453d28d0912093ab5f91807745ada69ada0c" + }, + "recipe": { + "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150101.910", + "deps": [ + "org" + ] + }, + "scratch-palette": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scratch-palette", + "sha256": "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2", + "rev": "f6803b448079f4a81cc699cec7442ef543cd5818" + }, + "recipe": { + "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150225.242", + "deps": [ + "popwin" + ] + }, + "ariadne": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "ariadne-el", + "sha256": "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h", + "rev": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15" + }, + "recipe": { + "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.1111", + "deps": [ + "bert" + ] + }, + "company-ansible": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krzysztof-magosa", + "repo": "company-ansible", + "sha256": "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn", + "rev": "cfe1c915f49d716f30eec654c54db761f662952c" + }, + "recipe": { + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150901.450", + "deps": [ + "company", + "emacs" + ] + }, + "flycheck-ocaml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-ocaml", + "sha256": "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94", + "rev": "e4412025f27850918762237fa80b33e285a63e7c" + }, + "recipe": { + "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151110.2246", + "deps": [ + "cl-lib" + ] + }, + "fix-word": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "fix-word", + "sha256": "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf", + "rev": "3e6aa7e3e2625efdac2c0f7d715959dabf01560f" + }, + "recipe": { + "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150716.802", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "celery": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-celery", + "sha256": "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c", + "rev": "5b5b1968fd258c444dc2372e989aab82830004c3" + }, + "recipe": { + "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1751", + "deps": [] + }, + "charmap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lateau", + "repo": "charmap", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6", + "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" + }, + "recipe": { + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131019.2358", + "deps": [] + }, + "parsebib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "parsebib", + "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml", + "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" + }, + "recipe": { + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151006.432", + "deps": [ + "emacs" + ] + }, + "hindent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "hindent", + "sha256": "1phyaf6fwaxi2plq38m09cfb5ls401ay8jw0yf5rix8nyvm8nrn9", + "rev": "575a7a19f9c86b9699a6222072c79fe02da18c4c" + }, + "recipe": { + "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140627.307", + "deps": [] + }, + "sudden-death": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yewton", + "repo": "sudden-death.el", + "sha256": "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b", + "rev": "beba6b4fb42b1e27575d3f722d23a0eb19666736" + }, + "recipe": { + "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140829.738", + "deps": [] + }, + "multifiles": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "multifiles.el", + "sha256": "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai", + "rev": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897" + }, + "recipe": { + "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130615.1633", + "deps": [] + }, + "remark-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "torgeir", + "repo": "remark-mode.el", + "sha256": "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh", + "rev": "a7e22eaf17673bd5cbf2f80bdfb219c89c1ea74b" + }, + "recipe": { + "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151004.1155", + "deps": [ + "markdown-mode" + ] + }, + "flatland-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gchp", + "repo": "flatland-emacs", + "sha256": "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf", + "rev": "b2c2df1fc20a3a23787644f91f8121d9353f9bf9" + }, + "recipe": { + "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140805.505", + "deps": [] + }, + "jist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "jist.el", + "sha256": "0c53awaf93pxc8fn1wf6gkd46x1c0q98ygssz8gflp0a88fmm78g", + "rev": "6f36b550b65083ac4a6e824382891518b578e9f3" + }, + "recipe": { + "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.1752", + "deps": [ + "dash", + "emacs", + "let-alist", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120510.1430", + "deps": [] + }, + "simplenote2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "simplenote2.el", + "sha256": "1a0l0f6by1nmnnq0n52la9g3d357bmwak4qgy6p8g66qb9rx6rzv", + "rev": "2a6c539d98968837ec09d2754e9235ff278057a8" + }, + "recipe": { + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150630.916", + "deps": [ + "request-deferred" + ] + }, + "pivotal-tracker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jxa", + "repo": "pivotal-tracker", + "sha256": "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls", + "rev": "93f2b45b373bf6972dcc4b16814ef23e1a6c16f5" + }, + "recipe": { + "sha256": "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1350", + "deps": [] + }, + "cake": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake", + "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg", + "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" + }, + "recipe": { + "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140215.314", + "deps": [] + }, + "helm-img-tiqav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "l3msh0", + "repo": "helm-img-tiqav", + "sha256": "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp", + "rev": "33a7e9508bc8f37d53320b56c92b53d321a57bb0" + }, + "recipe": { + "sha256": "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1722", + "deps": [ + "helm-img" + ] + }, + "meta-presenter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "meta-presenter", + "sha256": "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l", + "rev": "bfdbe68384466bf3eb991d05c7f371f0b52a382f" + }, + "recipe": { + "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150501.610", + "deps": [] + }, + "kroman": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "kroman-el", + "sha256": "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr", + "rev": "90402b6ae40383e75d8ba97d66eee93eebf40f70" + }, + "recipe": { + "sha256": "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150827.1840", + "deps": [] + }, + "quickrun": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-quickrun", + "sha256": "1i7bx81g8xq7659hc1zlvs0afwkr8mg10cki45khxsxwcy5jr7dh", + "rev": "fd9d372bcbb9b4ad52dcae782ca007e5aa7087fd" + }, + "recipe": { + "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.341", + "deps": [] + }, + "ukrainian-holidays": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ukrainian-holidays", + "sha256": "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz", + "rev": "e52b0c92843e9f4d0415a7ba3b8559785497d23d" + }, + "recipe": { + "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130720.849", + "deps": [] + }, + "rsense": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "rsense", + "sha256": "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d", + "rev": "8b5ee58318747ca1dde84ee41d48c4f50175cf35" + }, + "recipe": { + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100510.2305", + "deps": [] + }, + "capture": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pashinin", + "repo": "capture.el", + "sha256": "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z", + "rev": "1bb26060311da76767f70096218313fc93b0c806" + }, + "recipe": { + "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130828.1144", + "deps": [] + }, + "ocodo-svg-modelines": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ocodo", + "repo": "ocodo-svg-modelines", + "sha256": "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48", + "rev": "c7b0789a177219f117c4de5659ecfa8622958c40" + }, + "recipe": { + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121026.950", + "deps": [] + }, + "pkgbuild-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "pkgbuild-mode", + "sha256": "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750", + "rev": "7369ab3c6b59cfdf2ecd2b32ad96ce006e766fa0" + }, + "recipe": { + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151010.936", + "deps": [] + }, + "erc-youtube": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-youtube.el", + "sha256": "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w", + "rev": "97054ba8475b442e2aa81e5a291f668b7f28697f" + }, + "recipe": { + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150603.1636", + "deps": [] + }, + "roguel-ike": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stevenremot", + "repo": "roguel-ike", + "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc", + "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" + }, + "recipe": { + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140227.929", + "deps": [ + "popup" + ] + }, + "memoize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-memoize", + "sha256": "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw", + "rev": "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75" + }, + "recipe": { + "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130421.1434", + "deps": [] + }, + "helm-words": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pronobis", + "repo": "helm-words", + "sha256": "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35", + "rev": "637aa3a7e9cfd34e0127472c5b1f993a4da26185" + }, + "recipe": { + "sha256": "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141219.2357", + "deps": [ + "emacs", + "s" + ] + }, + "rails-new": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "rails-new", + "sha256": "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l", + "rev": "b68055a99cde15f9d02ab36b8ad0ea7ab35b2283" + }, + "recipe": { + "sha256": "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1616", + "deps": [] + }, + "nnir-est": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "nnir-est", + "sha256": "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1", + "rev": "ba263fbd872fe05cfa6b3d815c0d98cdbe24b687" + }, + "recipe": { + "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140301.802", + "deps": [] + }, + "discover-my-major": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "discover-my-major", + "sha256": "183dh0laiwnnrjfp9kimg4s9lrzv2lvrc35203igjadj74vpbg1a", + "rev": "22130d8f16ef1bf7835d6204216c8c6b1fc8eb95" + }, + "recipe": { + "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151008.212", + "deps": [ + "makey" + ] + }, + "never-comment": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "To1ne", + "repo": "never-comment", + "sha256": "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy", + "rev": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4" + }, + "recipe": { + "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140104.1607", + "deps": [] + }, + "helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "0l7dzk4xa4nfyj943x4gqcn1brfznfyrdxfwf1v097fp4ix8654q", + "rev": "e6fbd80f9f21e7cdb5d530f7aba138ad1dc527ab" + }, + "recipe": { + "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151023.1503", + "deps": [] + }, + "pastelmac-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "pastelmac-theme-el", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly", + "rev": "bead21741e3f46f6506e8aef4469d4240a819389" + }, + "recipe": { + "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.2136", + "deps": [ + "emacs" + ] + }, + "omni-scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-scratch.el", + "sha256": "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500", + "rev": "7e04d7f20ee383bf72dfdcfd642bf08e4b8ab973" + }, + "recipe": { + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.1059", + "deps": [] + }, + "company-auctex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alexeyr", + "repo": "company-auctex", + "sha256": "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5", + "rev": "780ba68b4154ecac4f20dbd4b1ba561ba40f248b" + }, + "recipe": { + "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150120.1240", + "deps": [] + }, + "flycheck-hdevtools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-hdevtools", + "sha256": "1lzr2hdq5m8n331bz5213gf9n9zhhrw9xa1z1r9rkwam1mc23ciy", + "rev": "6997f8d033811b7a169052fa23c086fd8e904edb" + }, + "recipe": { + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090723.1019", + "deps": [] + }, + "el-sprunge": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "el-sprunge", + "sha256": "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc", + "rev": "37855ec60aeb4d565c49a4d711edc7341e9a22cb" + }, + "recipe": { + "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.659", + "deps": [] + }, + "sly-company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-company", + "sha256": "0qpw345ch5b9dbznk916f6h9f9dnf03wfyvpgnzdf30ffvf4q01w", + "rev": "21248bd852c9520ec27692f286c5f43b50892b12" + }, + "recipe": { + "sha256": "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.222", + "deps": [ + "company", + "emacs", + "sly" + ] + }, + "ht": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ht.el", + "sha256": "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd", + "rev": "84b5b4404515ed3a3f6a85aacf2723302de851a4" + }, + "recipe": { + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150830.1315", + "deps": [] + }, + "quelpa": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "quelpa", + "repo": "quelpa", + "sha256": "0v5fcbjf7ndmywjsq9di3cwxsh2csv5pj3mqgqb340i2yp77r9wy", + "rev": "e011b4fa916a8b6057225f3e7ee6befc8928d443" + }, + "recipe": { + "sha256": "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150426.749", + "deps": [ + "dash" + ] + }, + "org-webpage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "org-webpage", + "sha256": "15r6scvg3pynzj0waam9m22s3ym5kri4mwrsjkyxgz5fr929crj7", + "rev": "944b46e74d0d753a30bfefbebbe533abe06d25f4" + }, + "recipe": { + "sha256": "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150805.1448", + "deps": [] + }, + "vlf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "vlfi", + "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng", + "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" + }, + "recipe": { + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150101.918", + "deps": [] + }, + "xkcd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "emacs-xkcd", + "sha256": "0gd7ag7cqzkfk8y9rbkrjpnyjnwad5bx86a30vxamd1ql8xp57ap", + "rev": "8f0009f15926f37f2ea02471425ab6dbac00e50d" + }, + "recipe": { + "sha256": "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151016.2353", + "deps": [ + "json" + ] + }, + "github-notifier": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "github-notifier.el", + "sha256": "1z3ikxa4wz2gqzny6a7ll0h80y5db7jsh4iz7ynsmlbrck2s9kqk", + "rev": "d3d8ee1711972872f660a3129430bcc2c1ec573a" + }, + "recipe": { + "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121224.2049", + "deps": [] + }, + "recover-buffers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tripleee", + "repo": "recover-buffers", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q", + "rev": "a1db7f084977697081da3497628e3514e032b966" + }, + "recipe": { + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150812.205", + "deps": [] + }, + "evil-args": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wcsmith", + "repo": "evil-args", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq", + "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" + }, + "recipe": { + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140329.1629", + "deps": [ + "evil" + ] + }, + "smart-region": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "smart-region", + "sha256": "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf", + "rev": "5a8017fd8e8dc3483865951c4942cab3f96f69f6" + }, + "recipe": { + "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140227.2236", + "deps": [] + }, + "framemove": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/framemove.el", + "sha256": "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7" + }, + "recipe": { + "sha256": "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130328.633", + "deps": [] + }, + "real-auto-save": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chillaranand", + "repo": "real-auto-save", + "sha256": "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2", + "rev": "81bf61742ea553ccdee0e22d3abb43fcf07f82cf" + }, + "recipe": { + "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150701.1015", + "deps": [] + }, + "ebib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "ebib", + "sha256": "015dch0f4h9qrjgv3rapxq5afi8g074jfgjjsgvqcm90myx12p1m", + "rev": "9ef4cb26f944bf6a9a0fb6054e5fc65f89270130" + }, + "recipe": { + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.1425", + "deps": [] + }, + "tss": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-tss", + "sha256": "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3", + "rev": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0" + }, + "recipe": { + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.941", + "deps": [] + }, + "ac-js2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ScottyB", + "repo": "ac-js2", + "sha256": "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k", + "rev": "721c482e1d4a08f4a29a74437257d573e8f69969" + }, + "recipe": { + "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140614.335", + "deps": [ + "emacs" + ] + }, + "el2markdown": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "el2markdown", + "sha256": "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh", + "rev": "875648f9a65ed18fe71fc72872a0db70aab5253d" + }, + "recipe": { + "sha256": "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150516.1538", + "deps": [] + }, + "espuds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "espuds", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg", + "rev": "1405972873339e056517217136de4ad3202d744a" + }, + "recipe": { + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [] + }, + "persp-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "persp-projectile", + "sha256": "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5", + "rev": "83e03b1284ea36f37a24571abd6442a267408360" + }, + "recipe": { + "sha256": "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.630", + "deps": [ + "cl-lib", + "perspective", + "projectile" + ] + }, + "osx-location": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "osx-location", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x", + "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" + }, + "recipe": { + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150613.417", + "deps": [] + }, + "objc-font-lock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "objc-font-lock", + "sha256": "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk", + "rev": "34b457d577f97ca94b8792d025f9a909c7610612" + }, + "recipe": { + "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141021.1322", + "deps": [] + }, + "unify-opening": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "unify-opening", + "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p", + "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" + }, + "recipe": { + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.1848", + "deps": [ + "emacs" + ] + }, + "visual-regexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "visual-regexp.el", + "sha256": "04wds01yzhia508852gm18rp7dkg0838j0w8cr1l1qmc8p0jjsz9", + "rev": "58566c09e593dda9c3e3a348310a9bdc42dcb3d8" + }, + "recipe": { + "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.719", + "deps": [ + "cl-lib" + ] + }, + "ghc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "ghc-mod", + "sha256": "0ig6f0wfkcm1jfl3khsik0ggr3gypvvn8c3r3n1kgmy5s72r98cn", + "rev": "41b9c0bbf249d763f617dcdc052c49d5b7c98987" + }, + "recipe": { + "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.455", + "deps": [ + "haskell-mode" + ] + }, + "orgtbl-show-header": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "orgtbl-show-header", + "sha256": "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x", + "rev": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f" + }, + "recipe": { + "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141023.337", + "deps": [] + }, + "inf-php": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "taksatou", + "repo": "inf-php", + "sha256": "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr", + "rev": "4396022d6e169f0cf30cd9f68ca575d8b30c418a" + }, + "recipe": { + "sha256": "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130414.221", + "deps": [ + "php-mode" + ] + }, + "omniref": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "omniref.el", + "sha256": "1hzvpajq58py6k7z2rwwax1c7pm65m534mq8mr9g9kxn9hqiz9n8", + "rev": "0026e0472c7071e06cfdc24be91d3f4989ba8115" + }, + "recipe": { + "sha256": "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151118.221", + "deps": [] + }, + "flycheck-dialyzer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-dialyzer", + "sha256": "15dc76r047pnxll229z0pmpn76zw3cc6qs81b7wg7yc5czsk8axh", + "rev": "3560214658cbdbd454f8b3d4f108cb51537afa36" + }, + "recipe": { + "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151024.37", + "deps": [ + "flycheck" + ] + }, + "ninja-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "martine", + "repo": "ninja", + "sha256": "1yvgamxjqyzpwk59lm3gvcw6f9ab64cnbwwcmmyrk4yxhyva6r3q", + "rev": "9a4eb587f3d3dcc6e6edd8d344a93b1c32d27dc7" + }, + "recipe": { + "sha256": "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141203.2359", + "deps": [ + "emacs" + ] + }, + "el-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "el-x", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5", + "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" + }, + "recipe": { + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140111.1601", + "deps": [] + }, + "migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "migemo", + "sha256": "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr", + "rev": "c2240afa9afc0f003bb1d846710505e8e8e38169" + }, + "recipe": { + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120509.605", + "deps": [] + }, + "easy-repeat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "easy-repeat.el", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq", + "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" + }, + "recipe": { + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150516.348", + "deps": [ + "emacs" + ] + }, + "python3-info": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dvhansen", + "repo": "python3-info", + "sha256": "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p", + "rev": "4530e180ded2ad64774e51742eece3e5ea00c5f5" + }, + "recipe": { + "sha256": "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150727.1554", + "deps": [ + "doremi", + "faces+", + "frame-fns", + "hexrgb" + ] + }, + "weblogger": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:weblogger-el", + "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv", + "rev": "38" + }, + "recipe": { + "sha256": "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110926.1118", + "deps": [ + "xml-rpc" + ] + }, + "helm-ad": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tnoda", + "repo": "helm-ad", + "sha256": "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4", + "rev": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55" + }, + "recipe": { + "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151209.415", + "deps": [ + "dash", + "helm" + ] + }, + "pophint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-pophint", + "sha256": "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3", + "rev": "fc02a155e28ae27466bedabc756e75c936b01266" + }, + "recipe": { + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090621.832", + "deps": [] + }, + "filesets+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/filesets+.el", + "sha256": "0vqmz5rac2fgry1mzg3hnp0w65x6va471f982g9i8fn70ws46ww2" + }, + "recipe": { + "sha256": "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.2050", + "deps": [ + "emacs", + "swiper" + ] + }, + "paren-face": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "paren-face", + "sha256": "0ggpb58dw4dv9i0czj064a8fdcalgjqgl4cm5zsk7hcvjcmal9af", + "rev": "09bb594f0c9614fb336fd8b5598215cf7c2d2c7e" + }, + "recipe": { + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.2106", + "deps": [] + }, + "racket-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "greghendershott", + "repo": "racket-mode", + "sha256": "0xjdf0zw8faf5ya7nsv8m6qiicwz268rb2y1z5ijknjhsjp2bwi6", + "rev": "ffb9904d4d9d69c69900151f96cb4d4a08657720" + }, + "recipe": { + "sha256": "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.2014", + "deps": [ + "emacs", + "faceup", + "s" + ] + }, + "mozc-popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "mozc-popup", + "sha256": "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn", + "rev": "f0684b875a7427ec08f8df13939a486e5d5cf420" + }, + "recipe": { + "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150223.1834", + "deps": [ + "mozc", + "popup" + ] + }, + "writeroom-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "writeroom-mode", + "sha256": "0an36zra25r0l482irxbwrq90fd3rik53yqw3gccjkgdf3lpkc4x", + "rev": "57aeef137b04134fe05c7e701e42b05f3edbcc30" + }, + "recipe": { + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.301", + "deps": [ + "emacs", + "visual-fill-column" + ] + }, + "use-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "1kng5yzm73gz67znifjhzrr2zbcc7cyb2f1j703hmf33zb9naqhp", + "rev": "1d7e6ff5b73761c3b7180530da8bc433338d0cec" + }, + "recipe": { + "sha256": "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141219.120", + "deps": [] + }, + "highlight-defined": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-defined", + "sha256": "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2", + "rev": "243478cc204ab42d29805ed610961cbb260c1dfd" + }, + "recipe": { + "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141225.930", + "deps": [ + "emacs" + ] + }, + "org-present": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rlister", + "repo": "org-present", + "sha256": "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm", + "rev": "1b519cfd5abf44bed307cac576dc9fd61eb2c35f" + }, + "recipe": { + "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141109.1956", + "deps": [ + "org" + ] + }, + "vkill": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "vkill", + "sha256": "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd", + "rev": "8ffe640ed03ddcc23db1c74c76d1acbf25250ad9" + }, + "recipe": { + "sha256": "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091203.1222", + "deps": [] + }, + "spacemacs-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nashamri", + "repo": "spacemacs-theme", + "sha256": "0vg5g5pw5qzrd8yx1imfgv9r62c9laiqd9xckah30hsyzglzdakn", + "rev": "febe56c3e56757b149eac0536c087259782d2345" + }, + "recipe": { + "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.848", + "deps": [] + }, + "historyf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-historyf", + "sha256": "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0", + "rev": "66590519a02816cde8f442032fb144f3c38ebc6e" + }, + "recipe": { + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.1959", + "deps": [] + }, + "dired-narrow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131001.2318", + "deps": [] + }, + "flymake-rust": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joaoxsouls", + "repo": "flymake-rust", + "sha256": "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv", + "rev": "72ec92c261670b7384ee2593d0f1946ea29f429a" + }, + "recipe": { + "sha256": "080cvgl2cg08kyvmgg080zqb6k6bngga3m5lfwb2dpmi1bajywc1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141004.1752", + "deps": [ + "flymake-easy" + ] + }, + "js-doc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js-doc", + "sha256": "1d2jy71iw1v7l0jrvszmr3qdls5mak6kjvyvk0n9895z87lhgm8g", + "rev": "cf9b5292b7fca655bafb87bd55662edcf842d5b6" + }, + "recipe": { + "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150126.603", + "deps": [ + "edbi", + "emacs" + ] + }, + "geeknote": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "avendael", + "repo": "emacs-geeknote", + "sha256": "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq", + "rev": "e0d25cddc35e9a0f5986a04df2c3d11f78dd3ad9" + }, + "recipe": { + "sha256": "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1508", + "deps": [ + "fit-frame" + ] + }, + "winpoint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "winpoint", + "sha256": "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy", + "rev": "e6050093c076308184566fa1d1012423d6934773" + }, + "recipe": { + "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131023.1213", + "deps": [] + }, + "vala-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "vala-mode", + "sha256": "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44", + "rev": "fb2871a4492d75d03d72e60474919ab89adb267b" + }, + "recipe": { + "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150324.1725", + "deps": [] + }, + "pinot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-pinot-search", + "sha256": "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh", + "rev": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a" + }, + "recipe": { + "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140211.1426", + "deps": [] + }, + "mmm-jinja2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "beardedprojamz", + "repo": "mmm-jinja2", + "sha256": "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv", + "rev": "0ecd7fd239fc096495d903b5f1bafac83515acef" + }, + "recipe": { + "sha256": "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150904.1334", + "deps": [ + "mmm-mode" + ] + }, + "tronesque-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aurelienbottazini", + "repo": "tronesque", + "sha256": "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm", + "rev": "42093c08a50c860601c364c8a746c803458c10ba" + }, + "recipe": { + "sha256": "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150125.441", + "deps": [] + }, + "sensitive": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "sensitive.el", + "sha256": "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3", + "rev": "7f2c77811e983234e1a93055d78cc4480ae807c3" + }, + "recipe": { + "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150108.2319", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "thingopt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "thingopt-el", + "sha256": "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6", + "rev": "6a50f23faa764c5f6200c0253c606b0b4e5226f8" + }, + "recipe": { + "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150315.723", + "deps": [] + }, + "broadcast": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "broadcast.el", + "sha256": "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj", + "rev": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16" + }, + "recipe": { + "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151204.2012", + "deps": [ + "emacs" + ] + }, + "lxc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-lxc", + "sha256": "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q", + "rev": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835" + }, + "recipe": { + "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140410.1522", + "deps": [] + }, + "conkeror-minor-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "conkeror-minor-mode", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx", + "rev": "476e81c27b056e21c192391fe674a2bf875466b0" + }, + "recipe": { + "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150114.1004", + "deps": [] + }, + "pycarddavel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "pycarddavel", + "sha256": "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi", + "rev": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3" + }, + "recipe": { + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150831.716", + "deps": [ + "emacs", + "helm" + ] + }, + "org-jira": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "baohaojun", + "repo": "org-jira", + "sha256": "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp", + "rev": "eb4f3012d64bcab0c28491a26eac085ccae5bf78" + }, + "recipe": { + "sha256": "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150911.758", + "deps": [] + }, + "flycheck-mercury": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-mercury", + "sha256": "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca", + "rev": "fa9e433a0a912f0fae9e4dec9ea616ef99fcf861" + }, + "recipe": { + "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.134", + "deps": [ + "dash", + "flycheck", + "s" + ] + }, + "chatwork": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "chatwork", + "sha256": "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb", + "rev": "7a1def04735423d47e058a8137e859391a6aaf7e" + }, + "recipe": { + "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150807.2148", + "deps": [] + }, + "bookmark+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/bookmark+.el", + "sha256": "1qp84qzywc9nzb8n6j6cl99g7z88355ypw2fr4vpwy6n863a4b7l" + }, + "recipe": { + "sha256": "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "orgtbl-join": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgtbljoin", + "sha256": "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg", + "rev": "ccf5e0d96e053dc289da39a048715fcf36835ff2" + }, + "recipe": { + "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150121.1646", + "deps": [ + "cl-lib" + ] + }, + "sclang-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "sclang-snippets", + "sha256": "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857", + "rev": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58" + }, + "recipe": { + "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120608.1335", + "deps": [] + }, + "disaster": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jart", + "repo": "disaster", + "sha256": "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq", + "rev": "8d8fc67af5b3d876b0056562ece0478e6e2367f0" + }, + "recipe": { + "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150617.831", + "deps": [ + "emacs", + "helm" + ] + }, + "helm-proc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-proc", + "sha256": "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr", + "rev": "76fee002caa1c83809f4d3f7b30fa672dcb36937" + }, + "recipe": { + "sha256": "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140504.357", + "deps": [ + "helm" + ] + }, + "minimap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dustinlacewell", + "repo": "emacs-minimap", + "sha256": "0s95bb6ld7a23jrq2pa087w9yg16ymnajp3pmw880j6dahlwpdgk", + "rev": "be119f9b9c321c0045b01d940e495f16f2ea4f5c" + }, + "recipe": { + "sha256": "1gnvakp71l25r48bx1n2j33dq8q1lc7ff1j4fcnnvblhh3rsra96", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150108.1815", + "deps": [] + }, + "evil-lisp-state": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-lisp-state", + "sha256": "0lvjqs40caxj3781cs41qavk10vlz2mjw0r6fmxa2z3c087cxnxw", + "rev": "f4da21900563f4ac1abf79f3fe73eaf1edcd633d" + }, + "recipe": { + "sha256": "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131014.1621", + "deps": [ + "helm", + "multi" + ] + }, + "linphone": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zabbal", + "repo": "emacs-linphone", + "sha256": "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n", + "rev": "99af3db941b7f4e5272bb48bff96c1ce4ceac302" + }, + "recipe": { + "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130524.609", + "deps": [] + }, + "popwin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "popwin-el", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp", + "rev": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" + }, + "recipe": { + "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150315.800", + "deps": [] + }, + "py-isort": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-isort.el", + "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr", + "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" + }, + "recipe": { + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150422.1039", + "deps": [] + }, + "theme-looper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "theme-looper", + "sha256": "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj", + "rev": "41c15ae98f9406b7932974318a2eada3668a88e7" + }, + "recipe": { + "sha256": "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150207.717", + "deps": [] + }, + "mobdebug-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "deftsp", + "repo": "mobdebug-mode", + "sha256": "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz", + "rev": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da" + }, + "recipe": { + "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150217.913", + "deps": [] + }, + "gh": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "gh.el", + "sha256": "0fkq3yl9jpakfnahymjv28fcal38c210garnq055rgmyhyhhpdwd", + "rev": "3ceef078d9418cf19e1fe6be15cf34794a14880a" + }, + "recipe": { + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141120.825", + "deps": [ + "cider" + ] + }, + "simp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "simp", + "sha256": "1m8azyb4nxxdh6pwik9qb0zqp4z8z4vk3dlpfgklsq9rss8gwbaf", + "rev": "334b20287b3160f77e25c8e0ee2a73dd41fbe0ab" + }, + "recipe": { + "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150427.1132", + "deps": [] + }, + "org-grep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "org-grep", + "sha256": "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c", + "rev": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684" + }, + "recipe": { + "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.629", + "deps": [ + "cl-lib" + ] + }, + "minimal-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ikame", + "repo": "minimal-theme", + "sha256": "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz", + "rev": "2cc688c1705eeb77fe1deeea35bfce378081f238" + }, + "recipe": { + "sha256": "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140409.1801", + "deps": [] + }, + "lispy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "lispy", + "sha256": "0w5wwwffn3dhvdcr54jfh9l4kv99bkf0ck5ryjh165cjjy3y9z28", + "rev": "83a670d230d60112337d5b1c92bced20e3f43d1c" + }, + "recipe": { + "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1224", + "deps": [ + "ace-window", + "emacs", + "iedit", + "swiper" + ] + }, + "bpe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "bpe", + "sha256": "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0", + "rev": "7b5b25f83506e6c9f4075d3803fa32404943a189" + }, + "recipe": { + "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141228.1605", + "deps": [ + "emacs" + ] + }, + "sphinx-frontend": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "sphinx-frontend", + "sha256": "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw", + "rev": "a46e81ce65fd24c03acab9311b162cad21343744" + }, + "recipe": { + "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.412", + "deps": [] + }, + "request-deferred": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92", + "rev": "adf7de452f9914406bfb693541f1d280093c4efd" + }, + "recipe": { + "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130526.1215", + "deps": [ + "deferred", + "request" + ] + }, + "railscasts-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mikenichols", + "repo": "railscasts-theme", + "sha256": "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205", + "rev": "1340c3f6c2717761cab95617cf8dcbd962b1095b" + }, + "recipe": { + "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1846", + "deps": [] + }, + "on-parens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-on-parens", + "sha256": "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y", + "rev": "16a145bf73550d5000ffbc2725c541a8458d0d3c" + }, + "recipe": { + "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141123.1136", + "deps": [] + }, + "platformio-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zachmassia", + "repo": "platformio-mode", + "sha256": "0xcmnla5cm5kk5cnjzszrwrlab98g4w8nfydvagbhfh5gzglqm4q", + "rev": "5fde4cb291790e174542423accdbe6674efb176b" + }, + "recipe": { + "sha256": "022l20sfyfkvp6kmmqxr7gcmcdx6b1dgsakjjnx8fknrpxr5kyps", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.2142", + "deps": [ + "projectile" + ] + }, + "w32-browser": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/w32-browser.el", + "sha256": "1cpy3c0aj265wda9bz6b88i73mr9xi8gm1cp0q72ikhz43kszihx" + }, + "recipe": { + "sha256": "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1905", + "deps": [] + }, + "miniedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "miniedit", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq", + "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" + }, + "recipe": { + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100419.1245", + "deps": [] + }, + "magit-gh-pulls": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "magit-gh-pulls", + "sha256": "03m4gr86lm8rs3zn6hdirlgfixf1w033iyhsg9dwlhvmfpfghxb5", + "rev": "728819217c697b4eed996eb14261a8c7c3388df7" + }, + "recipe": { + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20051013.1256", + "deps": [] + }, + "znc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sshirokov", + "repo": "ZNC.el", + "sha256": "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp", + "rev": "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19" + }, + "recipe": { + "sha256": "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1911", + "deps": [] + }, + "dired-open": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150819.1148", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "firestarter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "firestarter", + "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55", + "rev": "4b7428477980e12578ebbbb121115696b352d6b2" + }, + "recipe": { + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.815", + "deps": [] + }, + "adoc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "adoc-mode", + "sha256": "01fn73vyhdcy84s60r2jjy9a0xm3zwagpzi6b4qlankbvswypask", + "rev": "168ffa3f8efc3a635cc8f9422b7117a3a99af804" + }, + "recipe": { + "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151119.1114", + "deps": [ + "markup-faces" + ] + }, + "racer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "racer-rust", + "repo": "emacs-racer", + "sha256": "10nj92fm9lmamqyri84lsdv71wbrb2nfi0gfwnq9mg54pyv0r2si", + "rev": "637e01ba74c7ffda3c37d3bff13d870a1899fecd" + }, + "recipe": { + "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130421.500", + "deps": [ + "dash", + "s" + ] + }, + "geiser": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jaor", + "repo": "geiser", + "sha256": "1sr053v8vdc4v7prbbz8dbwk84hravpcc3zyfsifghmv999iwrz3", + "rev": "8e75455dfbd46355d777c26366e7ccfcb59ace20" + }, + "recipe": { + "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.2114", + "deps": [] + }, + "tup-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "tup-mode", + "sha256": "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm", + "rev": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8" + }, + "recipe": { + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140410.1114", + "deps": [] + }, + "voca-builder": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yitang", + "repo": "voca-builder", + "sha256": "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw", + "rev": "cd74c13e005e33ab125d43233b1267a8819b0abb" + }, + "recipe": { + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150625.1333", + "deps": [] + }, + "replace+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace+.el", + "sha256": "0hma5mb2r33yfdlwb1ls1gjnqps00sri6q0hkksngvz67hka9mx4" + }, + "recipe": { + "sha256": "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150723.833", + "deps": [] + }, + "pager-default-keybindings": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "pager-default-keybindings", + "sha256": "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm", + "rev": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3" + }, + "recipe": { + "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130719.1557", + "deps": [ + "pager" + ] + }, + "zotelo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "zotelo", + "sha256": "16fr5s8i9ykq5j7ikf6qfd2px2dxc1gcff5wipif8h758691rliv", + "rev": "91c8309da1f293341ba86f29fa0a28dee5cabd93" + }, + "recipe": { + "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.225", + "deps": [ + "emacs" + ] + }, + "helm-dash": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "areina", + "repo": "helm-dash", + "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai", + "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" + }, + "recipe": { + "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1347", + "deps": [ + "cl-lib", + "helm" + ] + }, + "vcomp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "vcomp", + "sha256": "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl", + "rev": "092ef48a78e950c0576269d889be6caf9f6e61c5" + }, + "recipe": { + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140906.1708", + "deps": [] + }, + "togetherly": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "togetherly", + "sha256": "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796", + "rev": "9d655661984f7d62e9d6e0e9d47ae7ca8c4f43c7" + }, + "recipe": { + "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130908.1224", + "deps": [] + }, + "literate-starter-kit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "emacs24-starter-kit", + "sha256": "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b", + "rev": "6dce1d01781966c14558aa553cfc85008c06e115" + }, + "recipe": { + "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150730.1354", + "deps": [ + "emacs" + ] + }, + "searchq": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "searchq", + "sha256": "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4", + "rev": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82" + }, + "recipe": { + "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150829.711", + "deps": [ + "emacs" + ] + }, + "x-dict": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "x-dict", + "sha256": "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq", + "rev": "920b2430bff9fb8c4bb7944aa358622545c00cee" + }, + "recipe": { + "sha256": "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1902", + "deps": [] + }, + "python-info": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "python-info", + "sha256": "079xvdaw06wvjnma6572j3p8c7h206agpi9c1as3iw8r1qf5pv7z", + "rev": "39996472d78420986e62ae9d16bf62a4a26aab60" + }, + "recipe": { + "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141106.1551", + "deps": [] + }, + "mo-git-blame": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mbunkus", + "repo": "mo-git-blame", + "sha256": "1ydv6z0nns3cc3bxb1r7052dck66y4v201ms2bzichmd351qhv6q", + "rev": "a0b9ca186d96ef02a5c0ab5d1c29b7a71e78af68" + }, + "recipe": { + "sha256": "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151029.916", + "deps": [] + }, + "gradle-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jacobono", + "repo": "emacs-gradle-mode", + "sha256": "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc", + "rev": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2" + }, + "recipe": { + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150313.1405", + "deps": [ + "s" + ] + }, + "code-library": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "code-library", + "sha256": "0mcf0xyh4p6pk2hf1f554vy4amd0qcimspgnncff2a0qc2bsg5sy", + "rev": "6004c12b199f0a78bc6c11adaa5091a90bc6926b" + }, + "recipe": { + "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.1011", + "deps": [ + "gist" + ] + }, + "redo+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/redo+.el", + "sha256": "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3" + }, + "recipe": { + "sha256": "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.551", + "deps": [] + }, + "cycle-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "cycle-themes.el", + "sha256": "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am", + "rev": "6e125d11fdbc6b78fc9f219eb2609a5e29815898" + }, + "recipe": { + "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150805.456", + "deps": [] + }, + "keyfreq": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dacap", + "repo": "keyfreq", + "sha256": "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l", + "rev": "06cb50b2796688cc76eeb86d48c9826abbee6383" + }, + "recipe": { + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150924.2205", + "deps": [] + }, + "sourcetalk": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "malroc", + "repo": "sourcetalk_emacs", + "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv", + "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" + }, + "recipe": { + "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140823.939", + "deps": [ + "request" + ] + }, + "darkmine-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "darkmine-theme", + "sha256": "0ajxlrnz1228w8ldgraw6a4s605isbr67p8s382jvia2zf821fmp", + "rev": "8cd5ff16bede4c8e1d063bc46fc1089a36a05bd3" + }, + "recipe": { + "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140201.1745", + "deps": [] + }, + "path-headerline-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "path-headerline-mode", + "sha256": "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830", + "rev": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69" + }, + "recipe": { + "sha256": "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140423.832", + "deps": [] + }, + "pointback": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "pointback", + "sha256": "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav", + "rev": "e3a02c1784d81b5a1d2477338d049af581ed19f8" + }, + "recipe": { + "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100210.952", + "deps": [] + }, + "vc-osc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "vc-osc", + "sha256": "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4", + "rev": "fb01a35107be50ebb126c3573e0374e5e7d78331" + }, + "recipe": { + "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120910.411", + "deps": [] + }, + "kaesar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150430.44", + "deps": [ + "cl-lib" + ] + }, + "anything-sage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "anything-sage", + "sha256": "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k", + "rev": "370b4248935dd4527127954788a028399644f578" + }, + "recipe": { + "sha256": "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150216.1542", + "deps": [] + }, + "stock-ticker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "stock-ticker", + "sha256": "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx", + "rev": "f2e564142c9de84232839a5b01979cf95b04d6a9" + }, + "recipe": { + "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150204.452", + "deps": [ + "request", + "s" + ] + }, + "telephone-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dbordak", + "repo": "telephone-line", + "sha256": "0mg870s60by22ripxhqrgxjx16506n4llj9nnxlqgr4mdsi77cf5", + "rev": "0715ee7d156086098b375f3d93de2f50e76f3d75" + }, + "recipe": { + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.642", + "deps": [ + "cl-lib", + "eieio", + "emacs", + "s", + "seq" + ] + }, + "ac-php": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xcwen", + "repo": "ac-php", + "sha256": "0gvb3bwp4nk8xxjhv17ss0f1pbdl20rhkah83x267ckksz534mh1", + "rev": "e574960b27000ed9b15b43bc15809d269e87d4fd" + }, + "recipe": { + "sha256": "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.2322", + "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": "0rlk9016rxj292kpxrnqgrm4xsjs4m4gk2fwh8z3fcihi013lxaw", + "rev": "2997646b2fb5421ab435b772dd2dbaeb92d70166" + }, + "recipe": { + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.623", + "deps": [ + "helm" + ] + }, + "haskell-tab-indent": { + "fetch": { + "tag": "fetchgit", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "sha256": "7e41c910d6901638b9dfb697206659f5441e26e0558f9227c4ba7c6f2f47d841", + "rev": "150f52176242ba3bc4f58179cd2dbee4d89580f4" + }, + "recipe": { + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.1359", + "deps": [] + }, + "math-symbol-lists": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "math-symbol-lists", + "sha256": "186gb83y3g1q7d0sdrxqz22nr62qq6fy7m74qwirlsf7vnnm4gpx", + "rev": "56319989e7ac6bd625b46e8a28f8005077b5957b" + }, + "recipe": { + "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.1243", + "deps": [] + }, + "ox-rst": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masayuko", + "repo": "ox-rst", + "sha256": "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3", + "rev": "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10" + }, + "recipe": { + "sha256": "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151115.143", + "deps": [ + "emacs", + "org" + ] + }, + "multicolumn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "multicolumn", + "sha256": "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf", + "rev": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa" + }, + "recipe": { + "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.1651", + "deps": [] + }, + "css-eldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "css-eldoc", + "sha256": "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx", + "rev": "c558ac4c470742c98a37290e6b409db28183df30" + }, + "recipe": { + "sha256": "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150124.2123", + "deps": [] + }, + "helm-gtags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-gtags", + "sha256": "01l8d282jr191dak8zijqf5j12svp5rwnlqampnd2xdy39lw3800", + "rev": "28875c7b72798c357aa40d78a6a2d969b78e183a" + }, + "recipe": { + "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.919", + "deps": [ + "cl-lib", + "helm" + ] + }, + "chinese-pyim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-pyim", + "sha256": "0kh3zn23qkw4i36ca28yly3h20i47kvf04cqywmchmic9nd8kh13", + "rev": "98e10e1e70b0eab713e1d764a5078f92917396b1" + }, + "recipe": { + "sha256": "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.154", + "deps": [ + "cl-lib", + "pos-tip" + ] + }, + "zencoding-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rooney", + "repo": "zencoding", + "sha256": "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr", + "rev": "58e42af182c98cb9941d27cd042d227fbf4e146c" + }, + "recipe": { + "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140213.222", + "deps": [] + }, + "company-cabal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-cabal", + "sha256": "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0", + "rev": "f458de88cad16ed48a605e8347e56433e73dcef8" + }, + "recipe": { + "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120920.1148", + "deps": [] + }, + "tc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kozo2", + "repo": "tc", + "sha256": "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk", + "rev": "6aa9d27c475be8d009adf9cd417f2cdf348a91e8" + }, + "recipe": { + "sha256": "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150113.2126", + "deps": [] + }, + "java-imports": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "emacs-java-imports", + "sha256": "1iy1y2lslh7agix7srkvbqcxhg9kgjbm9m44kgpim3kyjzgagw6i", + "rev": "9d39496f437e27dabe0873d4fc158a14bb25ed67" + }, + "recipe": { + "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.2013", + "deps": [ + "pcache", + "s" + ] + }, + "mandoku": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mandoku", + "repo": "mandoku", + "sha256": "0dbm53ihva3qsrcr1ancc6ky55j3j2i6qgqlipndv29aksxx3mlf", + "rev": "d8027f67b4a65f59101ce80a6b6308c01d37a186" + }, + "recipe": { + "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131013.1332", + "deps": [ + "auctex", + "emacs" + ] + }, + "private-diary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cacology", + "repo": "private-diary", + "sha256": "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn", + "rev": "0c86fb6150ad8ed14f94def3504f5a68f4147283" + }, + "recipe": { + "sha256": "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141008.728", + "deps": [ + "json" + ] + }, + "highlight-blocks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-blocks", + "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5", + "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" + }, + "recipe": { + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.1015", + "deps": [ + "emacs" + ] + }, + "simple-httpd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacs-http-server", + "sha256": "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8", + "rev": "4b7a6bc6a6df6b932f8c9e9aded9103397c0c18f" + }, + "recipe": { + "sha256": "18dharsdiwfkmhd9ibz9f47yfq9c2d78i886pi6gsjh8iwcpzx59", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "actionscript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "austinhaas", + "repo": "actionscript-mode", + "sha256": "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94", + "rev": "f7dd1d77322b49d259919d58ffcdf64073ba6c09" + }, + "recipe": { + "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140605.1328", + "deps": [] + }, + "electric-spacing": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xwl", + "repo": "electric-spacing", + "sha256": "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn", + "rev": "78e4ccbb0a924a3062fa16c9b24823bb79bb1f3e" + }, + "recipe": { + "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151209.936", + "deps": [] + }, + "fakir": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-fakir", + "sha256": "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h", + "rev": "1fca406ad7de80fece6319ff75d4230b648534b0" + }, + "recipe": { + "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151112.444", + "deps": [] + }, + "sos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "emacs-sos", + "sha256": "16x039imyf4p5d4rn92nlqcsvb5vlvdgq1m5g856b9dzwa89x733", + "rev": "96b7d951a5f0a8ae401c0813745fc1aca0cb816c" + }, + "recipe": { + "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141214.2203", + "deps": [ + "org" + ] + }, + "nasm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "nasm-mode", + "sha256": "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs", + "rev": "d95a12d3caaf1decf4d3bd39ac8559098e7227aa" + }, + "recipe": { + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.1858", + "deps": [ + "emacs" + ] + }, + "markup-faces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "markup-faces", + "sha256": "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27", + "rev": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0" + }, + "recipe": { + "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141110.217", + "deps": [] + }, + "state": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "state", + "sha256": "1930cfpvik6b7xqpbwf92cnnqcn1icmi0v0b75hxv9jxiibqavap", + "rev": "6b7ae04cba5d055c1a143a4fdef9a0429fd38049" + }, + "recipe": { + "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140813.319", + "deps": [] + }, + "bison-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "bison-mode", + "sha256": "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7", + "rev": "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf" + }, + "recipe": { + "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141119.243", + "deps": [] + }, + "wgrep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141016.1856", + "deps": [] + }, + "pg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cbbrowne", + "repo": "pg.el", + "sha256": "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0", + "rev": "4f6516ec3946d95dcef49abb6703cc89ecb5183d" + }, + "recipe": { + "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130731.1642", + "deps": [] + }, + "calfw": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-calfw", + "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n", + "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" + }, + "recipe": { + "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.1951", + "deps": [ + "tabbar" + ] + }, + "gruber-darker-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "gruber-darker-theme", + "sha256": "0l6gkhzg0dn4q223gljh1jh305aa9n8rbf9h5gg5d1aygs7cb3ha", + "rev": "60d8262d8e38103568bbe58e2ece1d9a970fc15a" + }, + "recipe": { + "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.252", + "deps": [] + }, + "orgbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuhito", + "repo": "orgbox", + "sha256": "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55", + "rev": "72373b09768cc2200d143af38e25a0c082e8375d" + }, + "recipe": { + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140122.534", + "deps": [] + }, + "mew": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "Mew", + "sha256": "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb", + "rev": "ff9c41b981fb6050121a3831825d0349bffeb9ce" + }, + "recipe": { + "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150814.154", + "deps": [] + }, + "nand2tetris-assembler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.1636", + "deps": [ + "names", + "nand2tetris" + ] + }, + "pytest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ionrock", + "repo": "pytest-el", + "sha256": "1nlybqvy64lc0c65j9wbk4lx932lz0b8hxw8zm1vgmqppqcyn0p5", + "rev": "71bd43c4eb7254d05104ec1bcca7851d7a203da3" + }, + "recipe": { + "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.2325", + "deps": [ + "s" + ] + }, + "portage-navi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-portage-navi", + "sha256": "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i", + "rev": "8016c3e99fe6cef101d479a3d69185796b22ca2f" + }, + "recipe": { + "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141010.1039", + "deps": [] + }, + "skewer-reload-stylesheets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NateEag", + "repo": "skewer-reload-stylesheets", + "sha256": "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3", + "rev": "a22ed760a5515e43a05aeb82811dc571ba3d6060" + }, + "recipe": { + "sha256": "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151207.714", + "deps": [] + }, + "ido-completing-read+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" + }, + "recipe": { + "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1036", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "package-filter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "package-filter", + "sha256": "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6", + "rev": "ba3be37e0ef3972b2d8db7c2f2cb68c460699f12" + }, + "recipe": { + "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140105.1626", + "deps": [] + }, + "sekka": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "sekka", + "sha256": "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7", + "rev": "2768b2c16dd15dcd35fcfd123c4d56f2ffd1b362" + }, + "recipe": { + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140320.224", + "deps": [ + "auto-complete" + ] + }, + "rcirc-notify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "rcirc-notify", + "sha256": "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3", + "rev": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455" + }, + "recipe": { + "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150219.1604", + "deps": [] + }, + "full-ack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "full-ack", + "sha256": "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5", + "rev": "761d846e105b150f8e6d13d7a8983f0248313a45" + }, + "recipe": { + "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140223.1132", + "deps": [] + }, + "elogcat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "youngker", + "repo": "elogcat.el", + "sha256": "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15", + "rev": "4f311b7a07565b0d060334bc68edb36f2bff703f" + }, + "recipe": { + "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.1841", + "deps": [ + "dash", + "s" + ] + }, + "helm-nixos-options": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3", + "rev": "6b1418611b49a6cf77380a76f7e6236bbb5df83a" + }, + "recipe": { + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.38", + "deps": [ + "cl-lib", + "magit" + ] + }, + "matrix-client": { + "fetch": { + "tag": "fetchgit", + "url": "git://fort.kickass.systems/personal/rrix/pub/matrix.el", + "sha256": "28022465db474430300c3776165eb2cb7a243c476332da09d7558bc3051b2448", + "rev": "26e4696de28a12d9ac2d3af43bedc871f47f4dad" + }, + "recipe": { + "sha256": "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1249", + "deps": [ + "json", + "request" + ] + }, + "sync-recentf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "sync-recentf", + "sha256": "00lx6081h1nzwga5jg4cik4h667vfkn128yvnhkd0vw7b5g4ji5x", + "rev": "530254b1f1b569ce958dadad2620c67c31835d5c" + }, + "recipe": { + "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.526", + "deps": [] + }, + "helm-hatena-bookmark": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-hatena-bookmark", + "sha256": "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f", + "rev": "1ba352b858869a32323d4e6f9ca4b3eae055809e" + }, + "recipe": { + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.620", + "deps": [ + "helm" + ] + }, + "helm-emms": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-emms", + "sha256": "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl", + "rev": "ed3da37e86ea5dabc15da708335b1e439ae0777d" + }, + "recipe": { + "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151001.1528", + "deps": [ + "cl-lib", + "emacs", + "emms", + "helm" + ] + }, + "xquery-tool": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paddymcall", + "repo": "xquery-tool.el", + "sha256": "00b8nndvgpa20vmdc9vcig65ij6pmd9q3wfmczj1qbkz2q00kn5a", + "rev": "3d43bf6d18ccf5553a5a80b80b99ad1fb8b9ccb2" + }, + "recipe": { + "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.450", + "deps": [] + }, + "gruvbox-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Greduan", + "repo": "emacs-theme-gruvbox", + "sha256": "04jknwkax9gdmzz0yq0m21grl9c43vr3abdam3g8zjh5sjx5gs14", + "rev": "6af232a46073235ccf81cf99f46ee600fea7ba3e" + }, + "recipe": { + "sha256": "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.313", + "deps": [] + }, + "java-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nekop", + "repo": "yasnippet-java-mode", + "sha256": "09pa1hmk0dyh7vw0lb9awyrvdarakgaxn66gag5fzbg5vgdfz32i", + "rev": "701e84d91d6e8bf53c0088687ee385c1954792d8" + }, + "recipe": { + "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140728.36", + "deps": [ + "yasnippet" + ] + }, + "emacsql-psql": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150910.1044", + "deps": [] + }, + "yaml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yoshiki", + "repo": "yaml-mode", + "sha256": "1yy7f7prg2v17mzj6g0rvdkvrs96cjqzdz8xbs4zl4nbmj3lmay5", + "rev": "6ddd55205224c2f2c306699e021cedbaeecfaaf2" + }, + "recipe": { + "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.554", + "deps": [ + "emacs" + ] + }, + "point-stack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattharrison", + "repo": "point-stack", + "sha256": "1p1j2kfwj7gzir7q5ls34k8764kwbnb6d0dhlw4zb4kvwlidp6c1", + "rev": "2d2a5e90988792cf49ba4c5a839ef6a1400f5a24" + }, + "recipe": { + "sha256": "17z9mc49x4092axs7lq6b6z7yrrhkl8bdx5f8gq6qy5lampgyzch", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140102.1423", + "deps": [] + }, + "ncl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "ncl-mode", + "sha256": "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n", + "rev": "01559734504d2712606ac30916252d788ea73124" + }, + "recipe": { + "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150525.1129", + "deps": [ + "emacs" + ] + }, + "go-direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-direx", + "sha256": "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y", + "rev": "8f2206469328ee932c7f1892f5e1fb02dec98432" + }, + "recipe": { + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1552", + "deps": [ + "doremi" + ] + }, + "shampoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dmatveev", + "repo": "shampoo-emacs", + "sha256": "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x", + "rev": "bc193c39636c30182159c5c91c37a9a4cb50fedf" + }, + "recipe": { + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131230.419", + "deps": [] + }, + "dash-at-point": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stanaka", + "repo": "dash-at-point", + "sha256": "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj", + "rev": "ed872b4fcbe02ef1a5bac0337afe19a7a747f34c" + }, + "recipe": { + "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140626.235", + "deps": [] + }, + "window-purpose": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "emacs-purpose", + "sha256": "1hfn3x08h426kw0m1qyrjy8kp6nm56d1h5zlfiwj22kfc560gb4v", + "rev": "d8b9399c8bbdb6e843cd62b7adb658fea6cf7e75" + }, + "recipe": { + "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20081011.1526", + "deps": [] + }, + "sticky": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sticky.el", + "sha256": "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy" + }, + "recipe": { + "sha256": "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20101129.2052", + "deps": [] + }, + "ein": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "emacs-ipython-notebook", + "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy", + "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" + }, + "recipe": { + "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.1316", + "deps": [ + "request", + "websocket" + ] + }, + "scratches": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "scratches", + "sha256": "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc", + "rev": "9441afe6396ca38f08029123fab5d87429cbf315" + }, + "recipe": { + "sha256": "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.2316", + "deps": [ + "dash", + "f" + ] + }, + "magic-filetype": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "magic-filetype.el", + "sha256": "1ycqhmi18yjniw6w258rhxcc70ngq51vjlafx0bcs1aw1px97z5s", + "rev": "bffe69c70565c534bcc245cfdc2781d85e4edb68" + }, + "recipe": { + "sha256": "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.715", + "deps": [ + "emacs", + "s" + ] + }, + "helm-j-cheatsheet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-j-cheatsheet", + "sha256": "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v", + "rev": "70560fd2fb880eccba3b1927d0fa5e870e0734e4" + }, + "recipe": { + "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131228.641", + "deps": [ + "helm" + ] + }, + "py-yapf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-yapf.el", + "sha256": "03hki4v61340x0xp47lckxabz51abcazcahmr6wfn9n4bvfqjr9x", + "rev": "766e57448639ff95eeb018f6d8bdf09170094218" + }, + "recipe": { + "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150422.953", + "deps": [] + }, + "paper-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "paper-theme", + "sha256": "115j0zg3gfbgrl62h1sx7jaxsnd484sb1b14jqz185i12lrca506", + "rev": "37b1b16901231854b31b525f0796958c82aa8565" + }, + "recipe": { + "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.732", + "deps": [ + "emacs", + "hexrgb" + ] + }, + "noctilux-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sjrmanning", + "repo": "noctilux-theme", + "sha256": "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs", + "rev": "5f21c8523ddb99c4e5bc727d59ddf6bf6f50d626" + }, + "recipe": { + "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150723.947", + "deps": [] + }, + "emms-mark-ext": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "emms-mark-ext", + "sha256": "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l", + "rev": "ec68129e3e9e469e5bf160c6a1b7030e322f3541" + }, + "recipe": { + "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130528.2227", + "deps": [ + "emms" + ] + }, + "hexrgb": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/hexrgb.el", + "sha256": "04maddrgvijimxc8i942h0f7448snqlgdsj3yc03izh6bimvkhk5" + }, + "recipe": { + "sha256": "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150708.2036", + "deps": [] + }, + "finalize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-finalize", + "sha256": "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa", + "rev": "9ac589cf487f5d37163dc9e7ca8c52800710805e" + }, + "recipe": { + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140127.1246", + "deps": [ + "cl-lib", + "eieio", + "emacs" + ] + }, + "mpg123": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "mpg123", + "sha256": "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb", + "rev": "ed2307843ca54ebf0ca5e5d2e79b41e79527c45c" + }, + "recipe": { + "sha256": "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151214.1350", + "deps": [] + }, + "paredit-everywhere": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "paredit-everywhere", + "sha256": "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv", + "rev": "79ecbfc15d2cb338f277f3da50d8e757f07151e9" + }, + "recipe": { + "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150821.2344", + "deps": [ + "paredit" + ] + }, + "jinja2-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paradoxxxzero", + "repo": "jinja2-mode", + "sha256": "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381", + "rev": "cfaa7bbe7bb290cc500440124ce89686f3e26f86" + }, + "recipe": { + "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141128.407", + "deps": [] + }, + "org-caldav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dengste", + "repo": "org-caldav", + "sha256": "0lq2rx6wgz0aymwhw597xs2pabinhk3jpnnhjwq0jk8ggp3afqaz", + "rev": "8aff005f431e5f677950b73f710fdf968ff4ac65" + }, + "recipe": { + "sha256": "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.528", + "deps": [ + "dash", + "paredit" + ] + }, + "gherkin-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "candera", + "repo": "gherkin-mode", + "sha256": "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8", + "rev": "d84a2977a536f2f8bf4836aebc33a4e86925673d" + }, + "recipe": { + "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140107.1004", + "deps": [] + }, + "helm-perldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-perldoc", + "sha256": "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs", + "rev": "a7347e0a4f1a1832060b3a7a1a3f3d2ed4f92f33" + }, + "recipe": { + "sha256": "0b0cl2xj5w1r71zrjhnqhrzsnz1296jv21qx5adzslra6lk55q2r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131223.700", + "deps": [ + "emms" + ] + }, + "javap-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hiredman", + "repo": "javap-mode", + "sha256": "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg", + "rev": "864c1130e204b2072e1d19cd027b6fce8ebe6629" + }, + "recipe": { + "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120223.1608", + "deps": [] + }, + "ttrss": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pedros", + "repo": "ttrss.el", + "sha256": "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil", + "rev": "e90d8f7ccaf235053057bd91d3a2113582604e24" + }, + "recipe": { + "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130409.1249", + "deps": [ + "emacs" + ] + }, + "term-run": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "term-run-el", + "sha256": "0m3h89carkbgr043d0l573igf9qrdhv5nxnxq5j9x4xc0j7sbnzc", + "rev": "4e47afc1babb87f2c3ebd1f71c7f456c323a7ffb" + }, + "recipe": { + "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150601.206", + "deps": [] + }, + "anx-api": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rmloveland", + "repo": "emacs-appnexus-api", + "sha256": "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1", + "rev": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0" + }, + "recipe": { + "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140208.914", + "deps": [] + }, + "smooth-scrolling": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "smooth-scrolling", + "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk", + "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" + }, + "recipe": { + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131219.2239", + "deps": [] + }, + "helm-cmd-t": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "helm-cmd-t", + "sha256": "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs", + "rev": "8749f0b2b8527423cd146fa2d5c0e7a9e159eefb" + }, + "recipe": { + "sha256": "04fmhravd3ld4n1n820wlnr1jvmk7c7cdazd15gazixrlz6fm4fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150823.1357", + "deps": [] + }, + "flymake-python-pyflakes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-python-pyflakes", + "sha256": "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp", + "rev": "f09ec573d7580a69f8bd49778c26da9ab6d5ec5a" + }, + "recipe": { + "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150403.1121", + "deps": [] + }, + "flycheck-cask": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-cask", + "sha256": "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n", + "rev": "f2cebedacaa96ef30262fbb67068d1df489ff238" + }, + "recipe": { + "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150920.653", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "fzf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "fzf.el", + "sha256": "0prbz2np6maqjpfkqhsrv4lcdlhxpiw0jbv0m73w4f1wcy3f0jqk", + "rev": "30bb2f0f82ff413f268bb5e7fb02d3586ba7783f" + }, + "recipe": { + "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151129.833", + "deps": [ + "emacs" + ] + }, + "el-get": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "el-get", + "sha256": "07c7rik31zxqck3wprdgww41pr1f08knj169bxrn59ayla7h8yy5", + "rev": "ec946c9b6df2565bed80ee4e940502d804d1ef10" + }, + "recipe": { + "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.1015", + "deps": [] + }, + "markdown-mode+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "markdown-mode-plus", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r", + "rev": "f35e63284c5caed19b29501730e134018a78e441" + }, + "recipe": { + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120829.710", + "deps": [ + "markdown-mode" + ] + }, + "feature-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "michaelklishin", + "repo": "cucumber.el", + "sha256": "18b27xfajhd0vi7dcaky7pi7vmnlmdb88gkx3hwangj78d24as5d", + "rev": "40886bc4cc5b1e855d6bb78505ebc651593d409d" + }, + "recipe": { + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150402.1829", + "deps": [] + }, + "unkillable-scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "unkillable-scratch", + "sha256": "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac", + "rev": "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8" + }, + "recipe": { + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150328.118", + "deps": [] + }, + "edit-server-htmlize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "frobtech", + "repo": "edit-server-htmlize", + "sha256": "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3", + "rev": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392" + }, + "recipe": { + "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130329.1748", + "deps": [ + "edit-server" + ] + }, + "multi-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "multi-line", + "sha256": "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5", + "rev": "a46b34340a3dd1cba42ee0f41d6b599500f06233" + }, + "recipe": { + "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.1813", + "deps": [ + "emacs" + ] + }, + "crm-custom": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "crm-custom", + "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0", + "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" + }, + "recipe": { + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140816.1148", + "deps": [] + }, + "soundcloud": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tthieman", + "repo": "soundcloud.el", + "sha256": "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v", + "rev": "f998d4276ea90258909c698f6a5a51fccb667c08" + }, + "recipe": { + "sha256": "1jl9sk372j4162av9kfcbqp0cc5wpm86nkqg8rskfgmsi4ncp4ph", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151019.1035", + "deps": [ + "avy" + ] + }, + "anaphora": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "anaphora", + "sha256": "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav", + "rev": "ed99ad4502e6fccde76050496984c6454676a410" + }, + "recipe": { + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130407.1320", + "deps": [] + }, + "tiny": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "tiny", + "sha256": "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3", + "rev": "d775201a6e14aae03dda032132aa288ca93bddc4" + }, + "recipe": { + "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.334", + "deps": [ + "emacs" + ] + }, + "ercn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "ercn", + "sha256": "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv", + "rev": "79a4df5609046ae2e2e3375998287be6dda80615" + }, + "recipe": { + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150523.1003", + "deps": [] + }, + "roy-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "folone", + "repo": "roy-mode", + "sha256": "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r", + "rev": "0416f561edbc6b4a29fced8be84d2527a9613d65" + }, + "recipe": { + "sha256": "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121208.558", + "deps": [] + }, + "clojars": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joshuamiller", + "repo": "clojars.el", + "sha256": "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6", + "rev": "b500b243c92d4311c4041ff3ecbb6a1dbbf8090f" + }, + "recipe": { + "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.1433", + "deps": [ + "cl-lib", + "request" + ] + }, + "jump": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5", + "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" + }, + "recipe": { + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140830.1721", + "deps": [ + "ert" + ] + }, + "railgun": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mbriggs", + "repo": "railgun.el", + "sha256": "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh", + "rev": "66aaa1b091baef53a69d0d7425f48d184b865fb8" + }, + "recipe": { + "sha256": "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121017.57", + "deps": [] + }, + "clj-refactor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clj-refactor.el", + "sha256": "1wp4pbvj2llc72ypznq5dg9fisaa90g78kqjc29xczz30hkj3dji", + "rev": "76508499cbd1c69751a7d1437f703c4b2734023b" + }, + "recipe": { + "sha256": "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150922.905", + "deps": [] + }, + "nameframe-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140625.650", + "deps": [] + }, + "nand2tetris": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "nand2tetris.el", + "sha256": "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7", + "rev": "0297cd8d76cad072cb64318ffacdc65d8a1ad948" + }, + "recipe": { + "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.1651", + "deps": [ + "names" + ] + }, + "german-holidays": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "german-holidays", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701", + "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" + }, + "recipe": { + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151102.943", + "deps": [] + }, + "traad": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-traad", + "sha256": "0sr159v18x7xp2rqq2lr4ir15ksc6xyh96whipxzbi2qnvx3j3xg", + "rev": "5affdb2278228566007d189ca950a15d1c7e509e" + }, + "recipe": { + "sha256": "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.134", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150731.1046", + "deps": [] + }, + "fringe-helper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "fringe-helper.el", + "sha256": "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d", + "rev": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd" + }, + "recipe": { + "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140620.1609", + "deps": [] + }, + "bufshow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "bufshow", + "sha256": "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh", + "rev": "afabb87e07da7f035ca0ca85ed95e3936ea64547" + }, + "recipe": { + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130711.1239", + "deps": [ + "emacs" + ] + }, + "esh-help": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "esh-help", + "sha256": "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms", + "rev": "3dc15f2f6086d4e4da977468fda67229a859c927" + }, + "recipe": { + "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140107.422", + "deps": [ + "dash" + ] + }, + "plsql": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/plsql.el", + "sha256": "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1" + }, + "recipe": { + "sha256": "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121115.443", + "deps": [] + }, + "ebal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ebal", + "sha256": "0l2nhf6m6m01y2gw1fkn3zsjvmm1w02qj9zp4nmhgdl0qkllhdz5", + "rev": "ef0a288d9b6e557532d772c146ff02aa82771f13" + }, + "recipe": { + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.15", + "deps": [ + "emacs", + "f", + "ido-completing-read+" + ] + }, + "coffee-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "coffee-mode", + "sha256": "03f8dvajaz6bf3mzfpgcvl0mc79jadlk7419whawcfgzlp9lq676", + "rev": "1b938ba9100aa67a0e0ce22c258033bbad50a45d" + }, + "recipe": { + "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.753", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110722.1051", + "deps": [] + }, + "smartparens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "smartparens", + "sha256": "0bmv079l8sak9afnjkf71f180i72l5cch49ckahxrdwwwhglh9a9", + "rev": "aa35628d4ad8cf4bcc2f9654f6fbf261327c75ae" + }, + "recipe": { + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1756", + "deps": [ + "cl-lib", + "dash" + ] + }, + "grunt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gempesaw", + "repo": "grunt.el", + "sha256": "1js849s8b9x0n6ak2qwv90lk6zr71mgkk9f0xccdhikz4c8vxk0r", + "rev": "42bcab2990a27e0f8cf22eee87089c95eb9fae29" + }, + "recipe": { + "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140512.900", + "deps": [] + }, + "elscreen-persist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "robario", + "repo": "elscreen-persist", + "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf", + "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c" + }, + "recipe": { + "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.126", + "deps": [ + "elscreen", + "revive" + ] + }, + "scheme-here": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "judevc", + "repo": "scheme-here", + "sha256": "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir", + "rev": "430ba017cc530865218de23a8f7985095a58343f" + }, + "recipe": { + "sha256": "137qqfnla3hjm6qcnzpsgrw173px0k5dwq9apns5cdryxx3ahcvv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141028.218", + "deps": [] + }, + "dictcc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cqql", + "repo": "dictcc.el", + "sha256": "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v", + "rev": "1fd76499cf5d2045e8594aec3c0b62168802f887" + }, + "recipe": { + "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.557", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.441", + "deps": [ + "pythonic" + ] + }, + "iplayer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "csrhodes", + "repo": "iplayer-el", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6", + "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" + }, + "recipe": { + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150101.455", + "deps": [] + }, + "ruby-tools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-tools", + "sha256": "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq", + "rev": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18" + }, + "recipe": { + "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.720", + "deps": [] + }, + "hardcore-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "hardcore-mode.el", + "sha256": "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb", + "rev": "b1dda19692b4a7a58a689e81784a9b35be39e70d" + }, + "recipe": { + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151114.101", + "deps": [] + }, + "e2wm-R": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-R.el", + "sha256": "0xjgdd6xgxy1rfiah95w7wzjriqqf4hi87lma8v4f59g312zrhwy", + "rev": "4bcf8c38d4ec38bb575d553a5d4a247d1777bf7b" + }, + "recipe": { + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150924.847", + "deps": [] + }, + "fold-this": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "fold-this.el", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn", + "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" + }, + "recipe": { + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150601.542", + "deps": [] + }, + "mowedline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "mowedline", + "sha256": "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338", + "rev": "058d5fad71c9895ab36cf83b3f0a0b722054cb19" + }, + "recipe": { + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150601.1209", + "deps": [] + }, + "keychain-environment": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keychain-environment", + "sha256": "0xm7vybqgglacm0xz6fa7ipfvsx14qqws629gi9i16maxn3by9ci", + "rev": "c4c87cf3b3f13c1d73efe8fccf5f2c68ebe04abe" + }, + "recipe": { + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150416.1458", + "deps": [] + }, + "parent-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "parent-mode", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni", + "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" + }, + "recipe": { + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150824.1800", + "deps": [] + }, + "frame-tag": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "liangzan", + "repo": "frame-tag.el", + "sha256": "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30", + "rev": "7018490dbc3c39f2c959e38c448001d1864bfa17" + }, + "recipe": { + "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131208.1114", + "deps": [ + "cider", + "clojure-mode" + ] + }, + "git-gutter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter", + "sha256": "1pjvy4r1wrvqsqlxssrkw5c5qn57icgsz7p7fh6qkj9dfpszg8ad", + "rev": "cb2b341162447bc04b6f561dbb2e5add9a24c134" + }, + "recipe": { + "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.2202", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "flycheck-flow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-flow", + "sha256": "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx", + "rev": "6a6307a3998531279feab742321192cfc0c6e90a" + }, + "recipe": { + "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091012.1230", + "deps": [] + }, + "stylus-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150313.1012", + "deps": [ + "sws-mode" + ] + }, + "peg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ellerh", + "repo": "peg.el", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n", + "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" + }, + "recipe": { + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150708.141", + "deps": [] + }, + "cask": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "cask", + "sha256": "0zky8d9kdrcfh4vh8v6wbzs80nixr1xnnyjgg1zdingyklrxl79y", + "rev": "acd19283ff2da1c37c30015bcd83b012b33cf3c5" + }, + "recipe": { + "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150911.432", + "deps": [] + }, + "puml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skuro", + "repo": "puml-mode", + "sha256": "15c2p5ffvkp80v6fvxa3bgrk8mj18famngqkz2dammxnbppvnvvz", + "rev": "9d3b5e326d1e68f87711c2ccb0920e2f5db5550b" + }, + "recipe": { + "sha256": "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151212.1023", + "deps": [] + }, + "gnus-summary-ext": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "gnus-summary-ext", + "sha256": "1dzb3h5swvmwwy7x1lhz79cq2kpmamk35jb4dwmmxz6j248kmv6b", + "rev": "6be01a82819dc73b0650d726e17d0adb44b72c2b" + }, + "recipe": { + "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150119.2033", + "deps": [] + }, + "bbdb-ext": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "bbdb-ext", + "sha256": "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g", + "rev": "fee97b1b3faa83edaea00fbc5ad3cbca5e791a55" + }, + "recipe": { + "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1413", + "deps": [ + "bbdb" + ] + }, + "ac-html-csswatcher": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-csswatcher", + "sha256": "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr", + "rev": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221" + }, + "recipe": { + "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141021.1338", + "deps": [] + }, + "gmail2bbdb": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "gmail2bbdb", + "sha256": "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z", + "rev": "f0e23a1262bb683285b381b1d142478ba345af1a" + }, + "recipe": { + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150909.2039", + "deps": [] + }, + "wolfram-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "wolfram-mode", + "sha256": "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w", + "rev": "72cb36975816a9a7b677269e19b9ff431f597ed7" + }, + "recipe": { + "sha256": "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140118.957", + "deps": [ + "emacs" + ] + }, + "flymake-easy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-easy", + "sha256": "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc", + "rev": "de41ea49503f71f997e5c359a2ad08df696c0147" + }, + "recipe": { + "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140818.255", + "deps": [] + }, + "sane-term": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "adamrt", + "repo": "sane-term", + "sha256": "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w", + "rev": "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7" + }, + "recipe": { + "sha256": "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151018.2103", + "deps": [] + }, + "headlong": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "headlong", + "sha256": "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq", + "rev": "f6830f87f236eee88263cb6976125f72422abe72" + }, + "recipe": { + "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150417.1026", + "deps": [] + }, + "robe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "robe", + "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw", + "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" + }, + "recipe": { + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151119.1658", + "deps": [ + "inf-ruby" + ] + }, + "espresso-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "espresso-theme", + "sha256": "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq", + "rev": "c3a524e873f33923fe511791197a66dea5156687" + }, + "recipe": { + "sha256": "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130301.148", + "deps": [] + }, + "ob-axiom": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/pdo/axiom-environment", + "sha256": "1vk7jjbf8wp183c4nagkgxvzcyrdlr53avzsxl111rm5rsxbvdli", + "rev": "d7ea57a27527" + }, + "recipe": { + "sha256": "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150404.951", + "deps": [] + }, + "company-go": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni", + "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" + }, + "recipe": { + "sha256": "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150607.945", + "deps": [ + "emacs" + ] + }, + "google-translate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "google-translate", + "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29", + "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" + }, + "recipe": { + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151016.1420", + "deps": [] + }, + "kfg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "kfg", + "sha256": "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c", + "rev": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97" + }, + "recipe": { + "sha256": "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140807.1550", + "deps": [] + }, + "puppet-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "puppet-mode", + "sha256": "11mkf9gvjz63szdvhwlqnd6j2r9ij2fh8l6zkf7hl2zlwyyivcmp", + "rev": "268ec790603a4121f62822ca6c26e9038a1b0375" + }, + "recipe": { + "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.438", + "deps": [] + }, + "heroku-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jonathanchu", + "repo": "heroku-theme", + "sha256": "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx", + "rev": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d" + }, + "recipe": { + "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150522.2119", + "deps": [] + }, + "commify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ddoherty03", + "repo": "commify", + "sha256": "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa", + "rev": "921467f666c05ccec9cf3bc0a8168eade20bcb6a" + }, + "recipe": { + "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151110.338", + "deps": [ + "s" + ] + }, + "fillcode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "snarfed", + "repo": "fillcode", + "sha256": "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47", + "rev": "ae5f6c6de81a7681c8f883e7fce36fd0f2b3c1e8" + }, + "recipe": { + "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150812.1141", + "deps": [] + }, + "gs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "emacs-grads", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31", + "rev": "1a13051db21b999c7682a015b33a03096ff9d891" + }, + "recipe": { + "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.406", + "deps": [] + }, + "mip-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gaudecker", + "repo": "mip-mode", + "sha256": "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc", + "rev": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c" + }, + "recipe": { + "sha256": "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.17", + "deps": [] + }, + "marmalade-client": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-marmalade-upload", + "sha256": "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr", + "rev": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a" + }, + "recipe": { + "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150102.912", + "deps": [] + }, + "mbe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ijp", + "repo": "mbe.el", + "sha256": "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6", + "rev": "bb10aa8f26bb7e9b1d5746934c94edb00402940c" + }, + "recipe": { + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151006.1646", + "deps": [ + "emacs" + ] + }, + "electric-case": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "electric-case", + "sha256": "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8", + "rev": "bac64e772107e3dc721a9819f63b9ebdc28a81f7" + }, + "recipe": { + "sha256": "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150417.612", + "deps": [] + }, + "python-mode": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "python-mode-devs", + "repo": "python-mode", + "sha256": "1x1nf3xsv4wzahqjzaavjrh1zjvf67h6kwyz6fx6ijycyx52bcwr", + "rev": "2ead7e73280f42ee8f18368e093b49ae839a643d" + }, + "recipe": { + "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1231", + "deps": [] + }, + "ob-sml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "swannodette", + "repo": "ob-sml", + "sha256": "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg", + "rev": "958165c92b6cff6cada5c85c8ae5887806b8451b" + }, + "recipe": { + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130829.1343", + "deps": [ + "sml-mode" + ] + }, + "mu4e-alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "mu4e-alert", + "sha256": "0n2dxvy5m3mflal3157v22v1zi3c13pryqqgn312c7jwc5cqi19c", + "rev": "7ae95b309f8092ae639aeaba1d89c516f61a56c5" + }, + "recipe": { + "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150119.1441", + "deps": [] + }, + "erc-colorize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "erc-colorize", + "sha256": "0knr45va4xi5dgv7iyzdv93zrw4rapzahj7ryi3ik32jacx2cpl2", + "rev": "0fdc12d222f36f352ee17da0d4fcbf77be5bf865" + }, + "recipe": { + "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150725.909", + "deps": [] + }, + "django-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myfreeweb", + "repo": "django-mode", + "sha256": "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va", + "rev": "3d82a62a7faeb2c124ac4c109e075f581c175508" + }, + "recipe": { + "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131229.1011", + "deps": [ + "yasnippet" + ] + }, + "ham-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "ham-mode", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g", + "rev": "3a141986a21c2aa6eefb428983352abb8b7907d2" + }, + "recipe": { + "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151210.1727", + "deps": [] + }, + "slime-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-slime-theme", + "sha256": "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx", + "rev": "441288a5791d24e79ada2698888653ef3cf2ac6f" + }, + "recipe": { + "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150228.1213", + "deps": [] + }, + "e2wm-direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-direx", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia", + "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" + }, + "recipe": { + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1820", + "deps": [] + }, + "ruby-electric": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53351" + }, + "recipe": { + "sha256": "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150424.952", + "deps": [] + }, + "rcirc-alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "csantosb", + "repo": "rcirc-alert", + "sha256": "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2", + "rev": "0adf8ff9c47023fec578f678424be62b0f49057f" + }, + "recipe": { + "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141127.447", + "deps": [] + }, + "multi-web-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "multi-web-mode", + "sha256": "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n", + "rev": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c" + }, + "recipe": { + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130823.2254", + "deps": [] + }, + "ctags": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/semente/ctags.el", + "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf", + "rev": "afb16c5b2530" + }, + "recipe": { + "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110911.504", + "deps": [] + }, + "history": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "history", + "sha256": "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x", + "rev": "4bb475513f98ec07db55212a504b6167dae3a646" + }, + "recipe": { + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150409.1934", + "deps": [ + "emacs" + ] + }, + "auto-dictionary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "auto-dictionary-mode", + "sha256": "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp", + "rev": "b364e08009fe0062cf0927d8a0582fad5a12b8e7" + }, + "recipe": { + "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150410.1110", + "deps": [] + }, + "defproject": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kotfic", + "repo": "defproject", + "sha256": "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr", + "rev": "674d48a5e34cb4bba76faa38ee901322ec649086" + }, + "recipe": { + "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.1619", + "deps": [ + "emacs" + ] + }, + "project-persist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist", + "sha256": "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs", + "rev": "8da45c80b23b1d7499eac11a258fd7382312a304" + }, + "recipe": { + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150519.1524", + "deps": [] + }, + "popup-kill-ring": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "popup-kill-ring", + "sha256": "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn", + "rev": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa" + }, + "recipe": { + "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131020.1354", + "deps": [ + "popup", + "pos-tip" + ] + }, + "popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "popup-el", + "sha256": "19sbdxs6l66nflfb4kmx4lb6z0shwpfq79b5h9hhi0xr70xacd4b", + "rev": "004d58c47f6406b6555cf112f8a6eed6114cb63b" + }, + "recipe": { + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1539", + "deps": [ + "cl-lib" + ] + }, + "evil-commentary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-commentary", + "sha256": "1qiym8f56a18j5swrxx5is48nz7z76531k8cw2c7czr6611l8l5a", + "rev": "122880a6721fcf16479f406c78c6e490a25efab0" + }, + "recipe": { + "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151210.527", + "deps": [ + "evil" + ] + }, + "mozc-im": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "mozc-im", + "sha256": "03j5fy2xw204807wi7ivwcqlgkh1f7msshh5yrk6c7qdpp08062r", + "rev": "eaba71ee15d0822631e2023e2ee244e98782cb2d" + }, + "recipe": { + "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150419.649", + "deps": [ + "mozc" + ] + }, + "shut-up": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "shut-up", + "sha256": "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs", + "rev": "a4fd18f37e20ae991c0dbba821b2c8e6f1679c39" + }, + "recipe": { + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150423.722", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "orglink": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "orglink", + "sha256": "12y395ld36jnlbcrfycnvr4g723w6vahfv9iqf1wr6m94ka9pz3d", + "rev": "8ba8c54395cd1818c4d58d5cd24712405f9810e0" + }, + "recipe": { + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151106.1206", + "deps": [ + "dash", + "org" + ] + }, + "flymake-shell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-shell", + "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc", + "rev": "ec097bd77db5523a04ceb15a128e01689d36fb90" + }, + "recipe": { + "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121104.1300", + "deps": [ + "flymake-easy" + ] + }, + "uimage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "uimage", + "sha256": "19qvn1vzal5k86pqn6a4ins869qmp2i586qqbl97z84szn8mn7j3", + "rev": "29ca0f4b9f27a8d1649931cc2ce5a3c0eb655413" + }, + "recipe": { + "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151012.804", + "deps": [] + }, + "shakespeare-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CodyReichert", + "repo": "shakespeare-mode", + "sha256": "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496", + "rev": "4bff63eeac2b7ec1220f17e8bbcddbea4c11cb02" + }, + "recipe": { + "sha256": "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150708.912", + "deps": [] + }, + "gregorio-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cajetanus", + "repo": "gregorio-mode.el", + "sha256": "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag", + "rev": "5b618a8d05cc073bd8e6f1e4e56eceb4de60eab3" + }, + "recipe": { + "sha256": "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151026.920", + "deps": [] + }, + "helm-xcdoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fujimisakari", + "repo": "emacs-helm-xcdoc", + "sha256": "1519hknpa9j4ybdsx3a39zcsac4nvpwivydqlgfyfilyryxkwns8", + "rev": "fe779cc0a0b79fb6690972d54f36e3f847e39e2f" + }, + "recipe": { + "sha256": "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.2126", + "deps": [ + "emacs", + "helm" + ] + }, + "ponylang-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "ponylang-mode", + "sha256": "14rczhgpkm93cada7hqqf31mxx9f34ih43mjq52zkkcbr7smm09d", + "rev": "9ee25b542dda6f1b776d3d9b8f34fbfa2ccb8cbc" + }, + "recipe": { + "sha256": "06fy4aiflsynnybbrahfcmg0swxrfnwn48gr8ly3sqfpc037h2f3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151029.450", + "deps": [ + "dash" + ] + }, + "e2ansi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "e2ansi", + "sha256": "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w", + "rev": "bd047d3d6ad02a0679582d5786afe9aee656da90" + }, + "recipe": { + "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.1713", + "deps": [] + }, + "sunny-day-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "sunny-day-theme", + "sha256": "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc", + "rev": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00" + }, + "recipe": { + "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140413.1625", + "deps": [] + }, + "rdf-prefix": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "simenheg", + "repo": "rdf-prefix", + "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj", + "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" + }, + "recipe": { + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150716.824", + "deps": [] + }, + "centered-window-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ikame", + "repo": "centered-window-mode", + "sha256": "09jrcyc1dk2cdfi7ajk8xh2c9jw0f712j6gyvpaklvijakhvgsg7", + "rev": "3107c8942d06e9fea180d9340828ee58ad5cb2fd" + }, + "recipe": { + "sha256": "0f5qwv4f8gn5nxsqn57bbb3y0w5whjvhv3pls88d5n68lkd1k4si", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140730.447", + "deps": [] + }, + "helm-migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-migemo", + "sha256": "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix", + "rev": "66c6a19d07c6a385daefd2090d0709d26b608b4e" + }, + "recipe": { + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141230.738", + "deps": [] + }, + "test-simple": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-test-simple", + "sha256": "0h2g02r1spj8vbwgvjn3dddyj89j1qcqzdf2kdggvyyisssj81s3", + "rev": "95e58b52ff36ed7c0c50e84dcf5458cb71c380dc" + }, + "recipe": { + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140619.1102", + "deps": [] + }, + "projectile-rails": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "projectile-rails", + "sha256": "0hh2hwyhdb1k7ba8vy1ys2i8qvf7sxw8a3v24m3b2cmrg3hz3hcb", + "rev": "cc1698f6ba4c54b1d19e73ea7fb3276234a285c5" + }, + "recipe": { + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.1145", + "deps": [ + "emacs", + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ] + }, + "super-save": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "super-save", + "sha256": "1pq71simdb4pcbzzavlxdfbgh548m15f493h821k04n67ydzlmj3", + "rev": "4eb8aef705237d706b30cf722c5ad4909ea3acf1" + }, + "recipe": { + "sha256": "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.139", + "deps": [] + }, + "furl": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/furl-el/", + "sha256": "109z1d0zrya1s9wy28nz5ynpg4zl7i1p6q1n57m1b1kkhhckjcv5", + "rev": "9a96eeea0046" + }, + "recipe": { + "sha256": "15njmanpj3qb8ic3k4sbrngqnsg85lvlj32dmii3y9bpgvis3k6f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110112.1907", + "deps": [] + }, + "change-inner": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "change-inner.el", + "sha256": "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z", + "rev": "52c543a4b9808c0d15b565fcdf646c9779de33e8" + }, + "recipe": { + "sha256": "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150707.1044", + "deps": [ + "expand-region" + ] + }, + "flymake-yaml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-yaml", + "sha256": "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm", + "rev": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10" + }, + "recipe": { + "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120406.1551", + "deps": [] + }, + "hippie-expand-slime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "hippie-expand-slime", + "sha256": "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp", + "rev": "432de36799fffc920e5bff7a4691f3c67236e59c" + }, + "recipe": { + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130907.332", + "deps": [] + }, + "pgdevenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "pgdevenv-el", + "sha256": "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj", + "rev": "7f1d5bc734750aca98cf67a9491cdbd5615fd132" + }, + "recipe": { + "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150105.1636", + "deps": [] + }, + "httpcode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rspivak", + "repo": "httpcode.el", + "sha256": "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4", + "rev": "a45e735082b09477cd704a99294d336cdbeb12ba" + }, + "recipe": { + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121001.2245", + "deps": [] + }, + "keyset": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "keyset", + "sha256": "1kkp3frsk644djmdwxq3l1m88690gch3g8pijlzv566xrwkd903j", + "rev": "0a186c3316fda5baa72ae1fdf50c31e00761cc21" + }, + "recipe": { + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150219.2330", + "deps": [ + "cl-lib", + "dash" + ] + }, + "editorconfig-fnmatch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "04sflhamh5b9gxllfhcqdim02x6cb9xid39al2lisb8z4xywch68", + "rev": "5132b7a9441af76196ba3e62d73a0bb415853e4f" + }, + "recipe": { + "sha256": "0ji243vrw527jc3alsgmqi9rdnslxyq48zzx33rbpkqcjssm11iv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.1035", + "deps": [ + "cl-lib" + ] + }, + "plantuml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wildsoul", + "repo": "plantuml-mode", + "sha256": "0jvs051ncpv7pwx2kr14fm1wqakabwc031xcv7lba0mx7shxzqdg", + "rev": "4bc4cdf7974c8b8956b848ef69f1a2b5767597aa" + }, + "recipe": { + "sha256": "0fg313mx9jz92lf9lr5apvma9ixfz02dvyzw1phsgzawi7hai264", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.305", + "deps": [ + "emacs" + ] + }, + "milkode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-milkode", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap", + "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" + }, + "recipe": { + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140927.29", + "deps": [] + }, + "palette": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/palette.el", + "sha256": "13k1l2cs45fiwd0zayjfzxxrx1pqds3mkxrflmxy8y0piwx6mr1w" + }, + "recipe": { + "sha256": "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150509.1607", + "deps": [ + "hexrgb" + ] + }, + "egg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "egg", + "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj", + "rev": "499894195528203cfcf309228bf7578dd8cd5698" + }, + "recipe": { + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150208.2015", + "deps": [] + }, + "aok": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/aok.el", + "sha256": "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g" + }, + "recipe": { + "sha256": "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.627", + "deps": [] + }, + "quack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "quack", + "sha256": "0q7krn16dja0ifnc8h587lh5nilwbixxgsh5179clx5l57naix62", + "rev": "ce00cb151dde121e156c9543949d088d5ddafdbb" + }, + "recipe": { + "sha256": "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130126.1823", + "deps": [] + }, + "jaword": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "jaword", + "sha256": "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka", + "rev": "a96bc63a08f616cc23dcc43d565e1f22a94aa9f3" + }, + "recipe": { + "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150325.918", + "deps": [ + "tinysegmenter" + ] + }, + "greymatters-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "greymatters-theme", + "sha256": "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp", + "rev": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1" + }, + "recipe": { + "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150621.623", + "deps": [ + "emacs" + ] + }, + "ample-zen-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mjwall", + "repo": "ample-zen", + "sha256": "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa", + "rev": "b277bb7abd4b6624e8d59f02474b79af50a007bd" + }, + "recipe": { + "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150119.1554", + "deps": [] + }, + "at": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "at-el", + "sha256": "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1", + "rev": "114dfe3761bf0c9dd89f794106c3a6a436ed06cc" + }, + "recipe": { + "sha256": "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.334", + "deps": [ + "auto-complete" + ] + }, + "tern": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "07b96yjv8jns8d18mciqchpfbhcd8w0lgy3p4msl24rk4hmv56z7", + "rev": "f585fe7d6f4da28770fdd3dc7ddf88a39ad9b105" + }, + "recipe": { + "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151022.1950", + "deps": [ + "emacs", + "helm" + ] + }, + "skeletor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "skeletor.el", + "sha256": "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq", + "rev": "8dffccd773d6c8e73ea3d9c1de689634cbf427d4" + }, + "recipe": { + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.2254", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150502.1528", + "deps": [] + }, + "counsel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "1262k48ky88m3jgdryyxm9dqzsd2lc17vcra93lp3yrr6iqn55dl", + "rev": "d74fab4a5b98910bd09956d3cb9b3376d6287840" + }, + "recipe": { + "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.301", + "deps": [ + "emacs", + "swiper" + ] + }, + "visual-fill-column": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "visual-fill-column", + "sha256": "126qm63ik1n1agvcp4mgk1gr7dnnyjif8zbw0l336q74d5cy6h6w", + "rev": "043485d16a645c8c6df5d82bc77b8fc155a818aa" + }, + "recipe": { + "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.1751", + "deps": [ + "emacs" + ] + }, + "popup-imenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "popup-imenu", + "sha256": "0pkaic2l0xk2nsqcvxgxqbk152hd42h21j3z1ldgmpy1162viw7z", + "rev": "2a03162d9439d80f2eeca1fac14215af0d1b77e2" + }, + "recipe": { + "sha256": "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1909", + "deps": [ + "dash", + "flx-ido", + "popup" + ] + }, + "google-c-style": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "styleguide", + "sha256": "16dm5kllj64aibwp6gq4gywz4dwqhx4x9wznwn2wl9gmvkfgkmd6", + "rev": "e1333014b5ffec70af81ace136c830856d13683e" + }, + "recipe": { + "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140929.1318", + "deps": [] + }, + "android-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "android-mode", + "sha256": "1ms338qq17nwivpq8c1xsnld5k532rfhgvfxx1zg3l8wrjh235d2", + "rev": "80629ff38e4c2f72ba1dbebd4a0abadb94d8a231" + }, + "recipe": { + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150106.744", + "deps": [] + }, + "efire": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "efire", + "sha256": "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v", + "rev": "91a644662afb352475efad0b377713656f131e5c" + }, + "recipe": { + "sha256": "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150729.2110", + "deps": [] + }, + "hl-indent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "hl-indent", + "sha256": "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc", + "rev": "e749f726ce589e04bb508160e7b290b61fb64d75" + }, + "recipe": { + "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141227.1530", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "undercover": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sviridov", + "repo": "undercover.el", + "sha256": "1qm6fzgmrdzhkajd60l4l890dlbxll96x41kx36wm97h4gz7aiyw", + "rev": "7b38281c21a0ed9f7260d58aca6b4b2471672cfd" + }, + "recipe": { + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150817.1210", + "deps": [ + "dash", + "emacs", + "shut-up" + ] + }, + "dklrt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dklrt", + "sha256": "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs", + "rev": "5d6c99f8018335256ab934b4c1049708ae2d48ba" + }, + "recipe": { + "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150814.236", + "deps": [ + "cider", + "dash" + ] + }, + "rase": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "rase", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx", + "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" + }, + "recipe": { + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120928.1545", + "deps": [] + }, + "js2-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js2-mode", + "sha256": "17bpfi6ppmbx1q23qa89jnwnh465s54gl1vp4djy9arqir76hwsc", + "rev": "73c0348bf964c956aa5a9f2aeb0415bb9a65198c" + }, + "recipe": { + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151130.605", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "yabin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d5884", + "repo": "yabin", + "sha256": "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm", + "rev": "db8c404507560ef9147fcce2b94cd706fbfa03b5" + }, + "recipe": { + "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140205.2151", + "deps": [] + }, + "symon-lingr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "symon-lingr", + "sha256": "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j", + "rev": "056d1a473e36992ff5881e5ce6fdc331cead975f" + }, + "recipe": { + "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150908.1438", + "deps": [] + }, + "window-end-visible": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "window-end-visible", + "sha256": "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn", + "rev": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef" + }, + "recipe": { + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140513.1941", + "deps": [ + "stem", + "w3m" + ] + }, + "spacegray-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bruce", + "repo": "emacs-spacegray-theme", + "sha256": "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb", + "rev": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749" + }, + "recipe": { + "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150719.1431", + "deps": [ + "emacs" + ] + }, + "multi-compile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ReanGD", + "repo": "emacs-multi-compile", + "sha256": "004c4fbf5rrxvs01imv43lwvw5k9ndk02mk29q0w45s230gfca8x", + "rev": "61a4a7b35cd78773305150f533f51587367378db" + }, + "recipe": { + "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.1640", + "deps": [ + "emacs" + ] + }, + "scratch-log": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "scratch-log", + "sha256": "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk", + "rev": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0" + }, + "recipe": { + "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141115.143", + "deps": [] + }, + "clmemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "clmemo", + "sha256": "0za8j7pwcmvjm2ls62z9f8sjryzzsmms4slikzixc0rxyiqnqyd1", + "rev": "553d62f80b6c3e0f281e09d377d490795bdcaabf" + }, + "recipe": { + "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.747", + "deps": [] + }, + "rbenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rbenv.el", + "sha256": "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h", + "rev": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1" + }, + "recipe": { + "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141120.149", + "deps": [] + }, + "org-agenda-property": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "org-agenda-property", + "sha256": "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm", + "rev": "3b469f3e93de0036547f3631cd0366d53f7584c8" + }, + "recipe": { + "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140626.1616", + "deps": [ + "emacs" + ] + }, + "standoff-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lueck", + "repo": "standoff-mode", + "sha256": "1fn97aw91g02hgz5c9dvnxh4zdd9wrdhs44s0gnj570za1m4cbiv", + "rev": "09b4b2dfeadf0b9c2f3e2897be5e9b728c07b9b6" + }, + "recipe": { + "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150628.1842", + "deps": [] + }, + "phi-rectangle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-rectangle", + "sha256": "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4", + "rev": "0c12716afc71d803d1f39417469521dc465762d9" + }, + "recipe": { + "sha256": "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.54", + "deps": [] + }, + "dart-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "dart-mode", + "sha256": "1pd7a76znzypwi0khssdlas5kcma8r865d68jmr3n6xvwdmy8dlc", + "rev": "1b7562262c83de94a5118ffc55b495dae8aa7367" + }, + "recipe": { + "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130620.1446", + "deps": [ + "elnode" + ] + }, + "disk": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/disk.el", + "sha256": "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv" + }, + "recipe": { + "sha256": "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20081128.906", + "deps": [] + }, + "refheap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Raynes", + "repo": "refheap.el", + "sha256": "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398", + "rev": "d41f8efb8e913b29035f545914859e3f18287492" + }, + "recipe": { + "sha256": "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140902.1602", + "deps": [ + "json" + ] + }, + "navorski": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "navorski.el", + "sha256": "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l", + "rev": "698c1c62da70164aebe9a7a5d034778fbc30ea5b" + }, + "recipe": { + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.1636", + "deps": [] + }, + "manage-minor-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "manage-minor-mode", + "sha256": "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07", + "rev": "1bed33b0752380b548b822fe72e6858c5fe70c8e" + }, + "recipe": { + "sha256": "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140310.1100", + "deps": [ + "emacs" + ] + }, + "yasnippet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "yasnippet", + "sha256": "1pdyrs0cv688s39vqd20dgnvlddd8x1gj7lzzlpwr47fz8zxfm9i", + "rev": "71f0142edae6196535bfc27b79f317dc7a12ea1d" + }, + "recipe": { + "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151212.2333", + "deps": [] + }, + "erc-crypt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "erc-crypt", + "sha256": "1hzp42x6f73wsjr5n01i3dzsfrl5pym2l53rzlca11prcccvklfr", + "rev": "5d548bab298a27ca5886392c129b14d0e93067be" + }, + "recipe": { + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1257", + "deps": [] + }, + "log4e": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "log4e", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022", + "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" + }, + "recipe": { + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150105.705", + "deps": [] + }, + "graphviz-dot-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ppareit", + "repo": "graphviz-dot-mode", + "sha256": "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf", + "rev": "ca0f15158c3bbd516549532be1dd35bc51462c84" + }, + "recipe": { + "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.821", + "deps": [] + }, + "pcomplete-extension": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "pcomplete-extension", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6", + "rev": "839740c90de857e18db2f578d6660951522faab5" + }, + "recipe": { + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130720.533", + "deps": [ + "s" + ] + }, + "php+-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "phpplus-mode", + "sha256": "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg", + "rev": "e66950502e7c9a9cd39c9a619ad66fc54c12aafa" + }, + "recipe": { + "sha256": "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1534", + "deps": [ + "vline" + ] + }, + "paxedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "paxedit", + "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw", + "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" + }, + "recipe": { + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150608.1923", + "deps": [ + "window-layout" + ] + }, + "helm-emmet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-emmet", + "sha256": "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9", + "rev": "b4e0618773d9fdfbf0ed03d24a53d26285c51b91" + }, + "recipe": { + "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131014.129", + "deps": [ + "emmet-mode", + "helm" + ] + }, + "xmlgen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "xmlgen", + "sha256": "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0", + "rev": "d27294a4174888fe452015cb98dedd2a4bdc1e92" + }, + "recipe": { + "sha256": "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130219.419", + "deps": [] + }, + "drupal-spell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-spell", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd", + "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" + }, + "recipe": { + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130520.1155", + "deps": [] + }, + "helm-chronos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dxknight", + "repo": "helm-chronos", + "sha256": "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i", + "rev": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef" + }, + "recipe": { + "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150528.1536", + "deps": [ + "chronos", + "helm" + ] + }, + "expand-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "expand-line", + "sha256": "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z", + "rev": "75a5d0241f35dd0748ab8ecb4ff16891535be372" + }, + "recipe": { + "sha256": "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.2107", + "deps": [] + }, + "org-ac": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-ac", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca", + "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" + }, + "recipe": { + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20080502.1152", + "deps": [] + }, + "company-racer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "company-racer", + "sha256": "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4", + "rev": "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00" + }, + "recipe": { + "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130605.1239", + "deps": [] + }, + "gnuplot-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "gnuplot-mode", + "sha256": "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq", + "rev": "296ff8d263513cdfb8e85b06e2441c751565b793" + }, + "recipe": { + "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.139", + "deps": [] + }, + "show-css": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "smmcg", + "repo": "showcss-mode", + "sha256": "0n38dbyw039lpdxzbhngndqfhcfgsx570bpflrb5wdh2mq5w57md", + "rev": "1b8c330644c06e6d99ec5da8a9722c918b2ea039" + }, + "recipe": { + "sha256": "1b3n8h39m85inxsqvzwgb9fqnqn2sgib91hrisn1gpgfyjydzkr7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140816.1208", + "deps": [ + "dom" + ] + }, + "picolisp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "picolisp-mode", + "sha256": "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115", + "rev": "1a537b14090813f46cbba54636d40365e1a8067e" + }, + "recipe": { + "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150516.355", + "deps": [] + }, + "highlight-numbers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-numbers", + "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai", + "rev": "e1245b27a732ec43c1562f825533fe147759d24e" + }, + "recipe": { + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130923.1317", + "deps": [] + }, + "org-toodledo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-toodledo", + "sha256": "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna", + "rev": "2c91a92bd07ae4a546771b018a6faa0e06399968" + }, + "recipe": { + "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150301.513", + "deps": [ + "cl-lib", + "emacs", + "request-deferred" + ] + }, + "occur-context-resize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "occur-context-resize.el", + "sha256": "161lsgpzlrfzsn3pzcwhwj46ns088frjm0dps9jbc4bzqbpsd293", + "rev": "78263b8907569695773e9acaa375ce0cb3245f10" + }, + "recipe": { + "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140826.1449", + "deps": [] + }, + "evil-surround": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "timcharper", + "repo": "evil-surround", + "sha256": "15vy2l6q0zm50wknw4fnz2v3j81p77y4ya7clk66lia3qdca4z9v", + "rev": "9f1ab3c302d585c3489f0429b904e7e6e3204e94" + }, + "recipe": { + "sha256": "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151210.1418", + "deps": [] + }, + "dts-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bgamari", + "repo": "dts-mode", + "sha256": "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l", + "rev": "6ec1443ead16105234765f9b48df9b4aca562e61" + }, + "recipe": { + "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.308", + "deps": [ + "js2-mode" + ] + }, + "processing-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h", + "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" + }, + "recipe": { + "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150217.632", + "deps": [] + }, + "csharp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "csharp-mode", + "sha256": "1bp4bsghvmar6kvwiarxz4fnh0bikkyjnw30x796d1hi7jdk3ll9", + "rev": "b11fcda620aed46fbd4e702ee565448af26a1b25" + }, + "recipe": { + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1524", + "deps": [] + }, + "evil-avy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "louy2", + "repo": "evil-avy", + "sha256": "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l", + "rev": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5" + }, + "recipe": { + "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150621.2242", + "deps": [ + "emacs" + ] + }, + "wanderlust": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "wanderlust", + "sha256": "1181fhazm2r9j9w3yc6cjm0j0lwgv94pz15qsdmg31z43w55l0qk", + "rev": "912c443a912e037d898941397b747d3325aa01b3" + }, + "recipe": { + "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151118.1727", + "deps": [ + "semi" + ] + }, + "private": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "private", + "sha256": "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm", + "rev": "9266d01c095895cc3ee9de95bc20511e88353755" + }, + "recipe": { + "sha256": "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150121.1957", + "deps": [ + "aes" + ] + }, + "jquery-doc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "jquery-doc.el", + "sha256": "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9", + "rev": "24032284919b942ec27707d929bdd8bf48420062" + }, + "recipe": { + "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150812.258", + "deps": [] + }, + "mallard-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-mode", + "sha256": "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2", + "rev": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1" + }, + "recipe": { + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131203.2225", + "deps": [] + }, + "i2b2-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danlamanna", + "repo": "i2b2-mode", + "sha256": "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm", + "rev": "db10efcfc8bed369a516bbf7526ede41f98cb95a" + }, + "recipe": { + "sha256": "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130302.536", + "deps": [ + "ess", + "popup" + ] + }, + "solarized-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "solarized-emacs", + "sha256": "1xws08ppzh5mz7s0j0pv393zk0hr10vdcb5hya5kfscq8wvkf4p1", + "rev": "7a43652689de5188198c77715e2dbc111de760bf" + }, + "recipe": { + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140306.850", + "deps": [] + }, + "pig-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "motus", + "repo": "pig-mode", + "sha256": "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx", + "rev": "af4200c88a50264b63fa162a02860f3f54c8755b" + }, + "recipe": { + "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20101118.1524", + "deps": [] + }, + "helm-jstack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "helm-jstack", + "sha256": "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g", + "rev": "2064f7215dcf4ccbd6a7b8784223251507746da4" + }, + "recipe": { + "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150723.935", + "deps": [ + "emacs" + ] + }, + "org-readme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-readme", + "sha256": "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d", + "rev": "4cb9f768d282a2835b4510b6504ff9ede487007d" + }, + "recipe": { + "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120304.1222", + "deps": [] + }, + "bing-dict": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "bing-dict.el", + "sha256": "0yjywdzrbp821d4krv1jxnpwpb156j020mzvmv4pkkd0l1ivzk7m", + "rev": "4d8713c0134b3b44cb7607802bb06a7be9a9a202" + }, + "recipe": { + "sha256": "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.1954", + "deps": [] + }, + "django-manage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "django-manage", + "sha256": "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv", + "rev": "91ce758c830f06b33b7d04cc66dd5ec131bd4398" + }, + "recipe": { + "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.130", + "deps": [ + "hydra" + ] + }, + "ctable": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-ctable", + "sha256": "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb", + "rev": "cd673a09a80ce4e9e102ffe2e3d7e6bfb9d652b0" + }, + "recipe": { + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140304.1859", + "deps": [] + }, + "elscreen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "elscreen", + "sha256": "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m", + "rev": "249653a4a4b47c9b6306c2c29fa3753bc7342e61" + }, + "recipe": { + "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.2000", + "deps": [] + }, + "highlight-indent-guides": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarthFennec", + "repo": "highlight-indent-guides", + "sha256": "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj", + "rev": "4473af2bbeb80d50681a64b66f5891262cf52346" + }, + "recipe": { + "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151112.1427", + "deps": [] + }, + "ivs-edit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ivs-edit", + "sha256": "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva", + "rev": "c496e85f93f6f00e723d9df0ea0703f6c672826b" + }, + "recipe": { + "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121026.1618", + "deps": [] + }, + "pcmpl-git": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "pcmpl-git-el", + "sha256": "03ckgbp38fmsmh9wxjqpw97p2vkaqq7l63yg3lc6xczjqj12m5dk", + "rev": "2db904452b7367a9bf84a926e886945fc9128fad" + }, + "recipe": { + "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140218.2004", + "deps": [] + }, + "leuven-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fniessen", + "repo": "emacs-leuven-theme", + "sha256": "1kbvpf3wvma6r2gxd0zmz1j6clgr3xfsvsrbh900j5k5f1w8r8jx", + "rev": "94d12f81c5103e01b57f125581c5337ef883433c" + }, + "recipe": { + "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.1750", + "deps": [] + }, + "snippet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pkazmier", + "repo": "snippet.el", + "sha256": "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y", + "rev": "11d00dd803874b93836f2010b08bd2c97b0f3c63" + }, + "recipe": { + "sha256": "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130210.1715", + "deps": [] + }, + "ess": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-ess", + "repo": "ESS", + "sha256": "1j2i8n34kn6lkz70fc4c0sk0sxv348a61asc3wbz55a2hvys8z0a", + "rev": "837454b76475a4eb3256e288fe4149a927faefa9" + }, + "recipe": { + "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.744", + "deps": [ + "julia-mode" + ] + }, + "ocp-indent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "OCamlPro", + "repo": "ocp-indent", + "sha256": "0ydmjgxzdxbrzfz3zal1m3hnlxanldx8japapafpa9k8fm02rgnr", + "rev": "930f05acdf3ca6783e48a4729761996d27c8c009" + }, + "recipe": { + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.332", + "deps": [] + }, + "uuid": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-uuid", + "sha256": "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj", + "rev": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe" + }, + "recipe": { + "sha256": "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120910.351", + "deps": [] + }, + "launch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sfllaw", + "repo": "emacs-launch", + "sha256": "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1", + "rev": "e7c3b573fc05fe4d3d322389079909311542e799" + }, + "recipe": { + "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130619.1704", + "deps": [] + }, + "hoa-pp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hoaproject", + "repo": "Contributions-Emacs-Pp", + "sha256": "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l", + "rev": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e" + }, + "recipe": { + "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140306.845", + "deps": [] + }, + "2048-game": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/zck/2048.el", + "sha256": "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l", + "rev": "ea6c3bce8ac1" + }, + "recipe": { + "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151026.1433", + "deps": [] + }, + "mag-menu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "mag-menu", + "sha256": "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g", + "rev": "9b9277021cd09fb1dba64b1d2a00705d20914bd6" + }, + "recipe": { + "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150505.1350", + "deps": [ + "splitter" + ] + }, + "seethru": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Benaiah", + "repo": "seethru", + "sha256": "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr", + "rev": "d87e231f99313bea75b1e69e48c0f32968c82060" + }, + "recipe": { + "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150106.839", + "deps": [] + }, + "alect-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "alect-themes", + "sha256": "0hvf7ydd2p3dfk5hqjqcbaajhgihkyvlwvqcr97a8jknznk7hfzp", + "rev": "05d7515d936bbf48ad3fa961220f076d2e5d2312" + }, + "recipe": { + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150920.1324", + "deps": [ + "emacs" + ] + }, + "evil-exchange": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "evil-exchange", + "sha256": "1d9hxyplvjmv3hhgkp5snyssmddmca38r5v58bhba9gvk61lfcg9", + "rev": "22d9b6ce1b979c0560b32637d0c2b28bf4082d2b" + }, + "recipe": { + "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141128.43", + "deps": [ + "cl-lib", + "evil" + ] + }, + "markup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "markup.el", + "sha256": "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi", + "rev": "5ff4874ce897db146f5fd2b3d32147a0d404e1e5" + }, + "recipe": { + "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130207.1509", + "deps": [] + }, + "jira": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/jira.el", + "sha256": "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz" + }, + "recipe": { + "sha256": "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131210.1222", + "deps": [] + }, + "dired-k": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-dired-k", + "sha256": "13xpbbdd190lklz8jmj8nw8qm414kpkij9wrd7a9ws9j1jzj8x6s", + "rev": "4c5ae87f0198eaa4789a1fe85e9ef7cf5a8633e7" + }, + "recipe": { + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120912.24", + "deps": [] + }, + "eprime-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AndrewHynes", + "repo": "eprime-mode", + "sha256": "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw", + "rev": "17a481af26496be91c07139a9bfc05cfe722506f" + }, + "recipe": { + "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140513.1316", + "deps": [] + }, + "legalese": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/legalese.el", + "sha256": "0vjf2f5kpmgnw7904jsv2wnn6dcv654v7h1v917wmj72sy941xml" + }, + "recipe": { + "sha256": "0xsf3w5h4g7wigrv5kbys7lf9lfv2cab5ch320p74l3l3r2lj9wz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100119.1548", + "deps": [] + }, + "tco": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "tco.el", + "sha256": "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q", + "rev": "d2224bd291e25724b06d8589d4d62d74ed32db24" + }, + "recipe": { + "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140412.812", + "deps": [ + "dash", + "emacs" + ] + }, + "autobookmarks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "autobookmarks", + "sha256": "01q3k8i8vrs7pcr507kh48np0bc6smanh0ald1hv9h4dylkq89k7", + "rev": "cec3a2ac60a382ee61996c17bd962bc5a2e45c4b" + }, + "recipe": { + "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.1645", + "deps": [ + "cl-lib", + "dash" + ] + }, + "hayoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "benma", + "repo": "hayoo.el", + "sha256": "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l", + "rev": "3ca2fb0c4d5f337d0410c21b2702dd147014e984" + }, + "recipe": { + "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140831.721", + "deps": [ + "emacs", + "json" + ] + }, + "dedukti-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rafoo", + "repo": "dedukti-mode", + "sha256": "1haixiy94r50rfza64dypb7fi256231pf06g6p2il9kyscqg0zz2", + "rev": "7d9f459c87c84f1067eb87542da4549de5e38650" + }, + "recipe": { + "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150820.908", + "deps": [] + }, + "project-persist-drawer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist-drawer", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8", + "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" + }, + "recipe": { + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140808.1635", + "deps": [] + }, + "pianobar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "agrif", + "repo": "pianobar.el", + "sha256": "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d", + "rev": "9193e3888a8097dbe7ee58e4658cc6ec2a76b160" + }, + "recipe": { + "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120128.1501", + "deps": [] + }, + "image-archive": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-archive", + "sha256": "0hacg0549vpgx7yyyc748i44zw5y825w1v7nb440wx7sdxp855nb", + "rev": "ff33f64d09432a8f5bf1714d4cf750c01626fe98" + }, + "recipe": { + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.414", + "deps": [] + }, + "el-spice": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vedang", + "repo": "el-spice", + "sha256": "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri", + "rev": "65d9ec84b581a5867eebbc58de93958e992ca80d" + }, + "recipe": { + "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140805.1338", + "deps": [ + "thingatpt+" + ] + }, + "package-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "package-utils", + "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa", + "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" + }, + "recipe": { + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150126.606", + "deps": [ + "epl" + ] + }, + "julia-shell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dennisog", + "repo": "julia-shell-mode", + "sha256": "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8", + "rev": "3e25a6b2e942dc323512f2530f48cbc8794cfd48" + }, + "recipe": { + "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.1252", + "deps": [ + "julia-mode" + ] + }, + "cycbuf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "martinp26", + "repo": "cycbuf", + "sha256": "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w", + "rev": "1079b41c3eb27d65b66d4399959bb6253f84858e" + }, + "recipe": { + "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131203.1437", + "deps": [] + }, + "ruby-additional": { + "fetch": { + "tag": "fetchsvn", + "url": "http://svn.ruby-lang.org/repos/ruby/trunk/misc/", + "sha256": "0gl8wcnm7pidvd8zy3w5lzxqj0qxs9d932350ncgnmxwfsfzkdk7", + "rev": "53351" + }, + "recipe": { + "sha256": "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091002.545", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151010.1229", + "deps": [] + }, + "cdnjs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "cdnjs.el", + "sha256": "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk", + "rev": "eac2b4d150907aeb2d568327d04775578c82887f" + }, + "recipe": { + "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150128.1151", + "deps": [] + }, + "interval-list": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "interval-list", + "sha256": "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz", + "rev": "38af7ecf0a493ad8f487074938a2a115f3531177" + }, + "recipe": { + "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150327.1218", + "deps": [ + "cl-lib", + "dash", + "emacs" + ] + }, + "beginend": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "beginend", + "sha256": "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p", + "rev": "c5bfdc3bb77a8c019aa4433cf12d3c45690c27bd" + }, + "recipe": { + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150607.1201", + "deps": [ + "emacs" + ] + }, + "org-if": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "org-if", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq", + "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" + }, + "recipe": { + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150920.1013", + "deps": [] + }, + "recursive-narrow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "recursive-narrow", + "sha256": "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33", + "rev": "bc0cab88234ca92640d4b8da0d83e132c1897922" + }, + "recipe": { + "sha256": "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140902.1227", + "deps": [] + }, + "tidy": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/tidy.el", + "sha256": "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa" + }, + "recipe": { + "sha256": "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20111222.1156", + "deps": [] + }, + "shift-text": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "shift-text", + "sha256": "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr", + "rev": "1be9cbf994000022172ceb746fe1d597f57ea8ba" + }, + "recipe": { + "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130831.1155", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "vimgolf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "vimgolf", + "sha256": "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj", + "rev": "289bef87963b660c0cf6ea1f648ac2440c609c88" + }, + "recipe": { + "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140814.1648", + "deps": [] + }, + "palimpsest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danielsz", + "repo": "Palimpsest", + "sha256": "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq", + "rev": "69fe61494bfd24305bf7e387fa716474918eafa2" + }, + "recipe": { + "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130731.1021", + "deps": [] + }, + "ac-geiser": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xiaohanyu", + "repo": "ac-geiser", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn", + "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" + }, + "recipe": { + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130130.1550", + "deps": [] + }, + "hound": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ryoung786", + "repo": "hound.el", + "sha256": "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j", + "rev": "26fb047ff4e4c1fe5b66423cb29a7394b9ace665" + }, + "recipe": { + "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150217.1149", + "deps": [ + "cl-lib", + "web" + ] + }, + "tuareg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ocaml", + "repo": "tuareg", + "sha256": "1650j84yvvwci0b8zy40dsdp75ad5f4d9pvkf9kzd47dkafjsyca", + "rev": "bc94358eda8b6b1484e9daa83ac884fc0f5427d2" + }, + "recipe": { + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140810.234", + "deps": [] + }, + "benchmark-init": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dholm", + "repo": "benchmark-init-el", + "sha256": "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2", + "rev": "8e4c32f32ec869fe521fb4d3c0a69406830b4178" + }, + "recipe": { + "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150905.438", + "deps": [] + }, + "octicons": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-octicons", + "sha256": "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw", + "rev": "229286a6166dba8ddabc8c4d338798c6cd3cf67d" + }, + "recipe": { + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150302.1048", + "deps": [] + }, + "go-stacktracer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "samertm", + "repo": "go-stacktracer.el", + "sha256": "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y", + "rev": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976" + }, + "recipe": { + "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150430.1642", + "deps": [] + }, + "initsplit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dabrahams", + "repo": "initsplit", + "sha256": "031i0fihcisizip069rdv28nkzvq9krd9sj0lmyq1bj2d8729316", + "rev": "ec1d659a8121e874bcc87a2a5e5c3f68f24e5f68" + }, + "recipe": { + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141219.1829", + "deps": [] + }, + "downplay-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tobias", + "repo": "downplay-mode", + "sha256": "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548", + "rev": "4a2c3addc73c8ca3816345c3c11c08af265baedb" + }, + "recipe": { + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130816.1554", + "deps": [] + }, + "math-symbols": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "math-symbols", + "sha256": "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la", + "rev": "666b1f00d9e106cf2a3a7d58c2262fe9a1404764" + }, + "recipe": { + "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.1842", + "deps": [ + "helm" + ] + }, + "ruby-compilation": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx", + "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" + }, + "recipe": { + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150630.1632", + "deps": [ + "hide-comnt" + ] + }, + "rebox2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "rebox2", + "sha256": "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z", + "rev": "00634eca420cc48657b81e40e599ff8548083985" + }, + "recipe": { + "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121113.700", + "deps": [] + }, + "alchemist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "alchemist.el", + "sha256": "1waspq1apxk4l6m9wshhjp44nj1sci1xvk9pah9gy977j74ng0yl", + "rev": "2d9c2079c95a0dea0d564576e64dee2e758eea97" + }, + "recipe": { + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141207.1352", + "deps": [] + }, + "function-args": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "function-args", + "sha256": "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8", + "rev": "25e447d8a8930a8c515077de57a7693c6a642514" + }, + "recipe": { + "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151022.751", + "deps": [ + "swiper" + ] + }, + "dayone": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "emacs-dayone", + "sha256": "084alwm2kvq1ilfyrqqfni1xbihx3dzrihykl98vv8ldqvw8kn95", + "rev": "046771dcb58f6cd9d21a67b3627075d739d3ed4d" + }, + "recipe": { + "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.455", + "deps": [ + "ht", + "mustache", + "uuid" + ] + }, + "splitjoin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-splitjoin", + "sha256": "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc", + "rev": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c" + }, + "recipe": { + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150505.932", + "deps": [ + "cl-lib" + ] + }, + "url-shortener": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuyang0", + "repo": "url-shortener", + "sha256": "118c23dsfgkhwhv65dx3wbg2dn7qyrd80d78cykl732c68d6wvi0", + "rev": "2ce3fedbdc44f778f28a5a08f06958bc5dccae88" + }, + "recipe": { + "sha256": "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150806.113", + "deps": [] + }, + "frame-restore": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "frame-restore.el", + "sha256": "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx", + "rev": "6346cf157d5e1b487a16839d998258b7e693cbc8" + }, + "recipe": { + "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140811.1609", + "deps": [ + "emacs" + ] + }, + "fortune-cookie": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "andschwa", + "repo": "fortune-cookie", + "sha256": "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4", + "rev": "9bf0d29358989e1aee61c472bd5204b9bdf46465" + }, + "recipe": { + "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.35", + "deps": [] + }, + "link": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140717.2229", + "deps": [] + }, + "bind-map": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-bind-map", + "sha256": "18i2lq89pay4s58xvybmk7bs9haq5vx217wi25fzxgam6nwnzkhy", + "rev": "d47be94d236c819b5ca47d66551d23a0ee17ac33" + }, + "recipe": { + "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.1029", + "deps": [ + "emacs" + ] + }, + "jumplist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ganmacs", + "repo": "jumplist", + "sha256": "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl", + "rev": "c482d137d95bc5e1bcd790cdbde25b7f729b2502" + }, + "recipe": { + "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1833", + "deps": [] + }, + "button-lock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl", + "rev": "f9082feb329432fcf2ac49a95e64bed9fda24d58" + }, + "recipe": { + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150223.754", + "deps": [] + }, + "readline-complete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "monsanto", + "repo": "readline-complete.el", + "sha256": "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6", + "rev": "30c020c37b2741160cc37e656e13c85d826a0ebf" + }, + "recipe": { + "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150708.937", + "deps": [] + }, + "fill-column-indicator": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alpaker", + "repo": "Fill-Column-Indicator", + "sha256": "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq", + "rev": "0e755319451dd9c6c99c2a2ef82c890ba93343b6" + }, + "recipe": { + "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1433", + "deps": [] + }, + "mallard-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-snippets", + "sha256": "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2", + "rev": "70c5293f10722f2ace73bdf74d9a18f95b040edc" + }, + "recipe": { + "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140216.1046", + "deps": [ + "gnus" + ] + }, + "farmhouse-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattly", + "repo": "emacs-farmhouse-theme", + "sha256": "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz", + "rev": "a09e7cd5b12542d27474aad7e118c8ede3edbea1" + }, + "recipe": { + "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150506.2327", + "deps": [] + }, + "serverspec": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-serverspec", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2", + "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" + }, + "recipe": { + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150623.655", + "deps": [ + "dash", + "f", + "helm", + "s" + ] + }, + "prognth": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "prognth", + "sha256": "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm", + "rev": "2f1ca4d34b1fd581163e1df122c85418137e8e62" + }, + "recipe": { + "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130920.1259", + "deps": [] + }, + "butler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AshtonKem", + "repo": "Butler", + "sha256": "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg", + "rev": "8ceb35737107572455cca9a61ff46b3ff78f1016" + }, + "recipe": { + "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150811.1908", + "deps": [ + "deferred", + "emacs", + "json" + ] + }, + "iflipb": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jrosdahl", + "repo": "iflipb", + "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki", + "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" + }, + "recipe": { + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130228.408", + "deps": [] + }, + "bbdb-android": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-android", + "sha256": "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm", + "rev": "60641acf8b90e34b70f783b3d6e7789a4272f2b4" + }, + "recipe": { + "sha256": "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150706.24", + "deps": [ + "bbdb-vcard" + ] + }, + "sift": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "sift.el", + "sha256": "0mlwv66528927gf9x8jx9ifqbj1bhid21lrcm5gjym92lvpvps4p", + "rev": "99218553b5979b3431f188906cf3f50265ad72a0" + }, + "recipe": { + "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.140", + "deps": [] + }, + "moz": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "mozrepl", + "sha256": "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9", + "rev": "57f278849e4246a992e731e188b221a2574fc81e" + }, + "recipe": { + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150805.1206", + "deps": [] + }, + "baidu-life": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-baidu-life", + "sha256": "00skx1aywzvnqqsm41n2mwry5i6ifib8kzq5klymbrc7qfnbb55f", + "rev": "4cb251d44e97da54306af9d99444d9b8525f043e" + }, + "recipe": { + "sha256": "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141117.714", + "deps": [ + "polymode" + ] + }, + "timer-revert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "timer-revert", + "sha256": "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q", + "rev": "615c91dec8b440d2b9b7c725dd733d7432564e45" + }, + "recipe": { + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150122.1432", + "deps": [] + }, + "igv": { + "fetch": { + "tag": "fetchgit", + "url": "https://bitbucket.org/sbarbit/eigv", + "sha256": "cefc95ead9e5d425d3763f8d63afa10dea416493cafd7144f4d3cdeee0d0fa86", + "rev": "47ac6ceede252f451348a2c696398c0cb5279555" + }, + "recipe": { + "sha256": "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141210.627", + "deps": [] + }, + "helm-mt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dfdeshom", + "repo": "helm-mt", + "sha256": "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl", + "rev": "39a7d58050942f6afc15b1078f1e397ec4c8cd5c" + }, + "recipe": { + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140905.1906", + "deps": [ + "emacs" + ] + }, + "bpr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ilya-babanov", + "repo": "emacs-bpr", + "sha256": "01bh371c0ln0qw1wixw28gdyjk4v8griw464d671r26wsxjdiwqy", + "rev": "1c8ffe083df2bb1e8a9aa44c9ed450f631081ae4" + }, + "recipe": { + "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.1415", + "deps": [ + "emacs" + ] + }, + "thumb-through": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "thumb-through", + "sha256": "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn", + "rev": "08d8fb720f93c6172653e035191a8fa9c3305e63" + }, + "recipe": { + "sha256": "1krn7zn2y8p51m8dxai5nbrwbdviz6zrjzz0kykya9cqz4n9dhln", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120118.2334", + "deps": [] + }, + "darcula-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "darcula-theme-emacs", + "sha256": "100aycjy47md09aw0wlp846py93zrvw6wafcmmha1vbc8p5v5nms", + "rev": "05dea7041483e2ac9f0839cba01f7bf218a2d87e" + }, + "recipe": { + "sha256": "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150629.435", + "deps": [] + }, + "cm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "criticmarkup-emacs", + "sha256": "1ii3n9x0xdbbs0bpa6nf7i2jij19czwkm9fpdwkqh390j8r8mn6a", + "rev": "61b1557bad3cf7dfd0fc4c9eb4a7af0d86d605d0" + }, + "recipe": { + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141112.1915", + "deps": [] + }, + "dynamic-fonts": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "dynamic-fonts", + "sha256": "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh", + "rev": "ab0c65accbdb59acaed5b263327e22ec019b3e82" + }, + "recipe": { + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.2010", + "deps": [] + }, + "ssh": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "ssh-el", + "sha256": "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd", + "rev": "c17cf5b43df8ac4662a0580f85898e1f078df0d1" + }, + "recipe": { + "sha256": "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120904.1542", + "deps": [] + }, + "bbdb2erc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "bbdb2erc", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs", + "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" + }, + "recipe": { + "sha256": "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150603.647", + "deps": [] + }, + "m-buffer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "m-buffer-el", + "sha256": "07v2mch8qd8s760gxx3c8fdqqsjpqpxacl5nsbiqvpsvccky66b3", + "rev": "883e6192e992ae783e51de6cd6b6a7dbaa54dce0" + }, + "recipe": { + "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140816.1244", + "deps": [] + }, + "lodgeit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ionrock", + "repo": "lodgeit-el", + "sha256": "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl", + "rev": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c" + }, + "recipe": { + "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150312.849", + "deps": [] + }, + "distinguished-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lokaltog", + "repo": "distinguished-theme", + "sha256": "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm", + "rev": "9b1d25ac59465a5016d187ea84b7614c95a29b3b" + }, + "recipe": { + "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.1415", + "deps": [] + }, + "wavefront-obj-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abend", + "repo": "wavefront-obj-mode", + "sha256": "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy", + "rev": "75eedad052848e82cdd94064764956b906e6d6b2" + }, + "recipe": { + "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150501.1316", + "deps": [] + }, + "pow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yukihr", + "repo": "emacs-pow", + "sha256": "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf", + "rev": "7c0b39a07069d8b0f6b21adf3b4e462944641ad9" + }, + "recipe": { + "sha256": "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140420.306", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "memolist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mikanfactory", + "repo": "memolist.el", + "sha256": "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm", + "rev": "60c296e202a71e9dcf1c3936d47b5c4b95c5839f" + }, + "recipe": { + "sha256": "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131004.1844", + "deps": [] + }, + "marshal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "marshal.el", + "sha256": "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p", + "rev": "0ab06a654af0555dc669b5bdf4e0991a78238d6d" + }, + "recipe": { + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150916.2057", + "deps": [ + "eieio", + "json" + ] + }, + "chinese-yasdcv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "chinese-yasdcv", + "sha256": "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq", + "rev": "619e4d701ed995ad2c95f35072c638cfb3933afb" + }, + "recipe": { + "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120426.2023", + "deps": [] + }, + "eproject": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "eproject", + "sha256": "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2", + "rev": "fdff000d601eb8bdb165db3dc4925c6797308b78" + }, + "recipe": { + "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.2330", + "deps": [ + "helm" + ] + }, + "bonjourmadame": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "bonjourmadame", + "sha256": "1sapdy92arcgfmci17cvvr408kqw9x4yzjm4x77ndbs6nic8f3f6", + "rev": "85b72ddb602434ca7dd171b86acbcfd58baab83b" + }, + "recipe": { + "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.508", + "deps": [] + }, + "vdirel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "vdirel", + "sha256": "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v", + "rev": "aab19692e2c2084a0d5b554a96a64a2e3e2a3d09" + }, + "recipe": { + "sha256": "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.55", + "deps": [ + "emacs", + "helm", + "org-vcard", + "seq" + ] + }, + "scala-mode2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "emacs-scala-mode", + "sha256": "015p93isbpxgqiq6l0jmvsyxjqajjjclfnn76p7xz5p73hzlvfx7", + "rev": "c20d6e6df028f055e69066aa75d571e520ff0670" + }, + "recipe": { + "sha256": "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1248", + "deps": [] + }, + "show-marks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "show-marks", + "sha256": "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7", + "rev": "97609566582e65eed0d0a854efa5c312f209115d" + }, + "recipe": { + "sha256": "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130805.949", + "deps": [ + "fm" + ] + }, + "simple-rtm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mbunkus", + "repo": "simple-rtm", + "sha256": "0dxfgpqjcdwk1yzxjg9nbw7aa56vp7jxxbpyp8j92wd7lwgpk6a5", + "rev": "cff3e87bc2d440aa643c9f43bf99972668147231" + }, + "recipe": { + "sha256": "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140926.639", + "deps": [] + }, + "rigid-tabs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "rigid-tabs.el", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5", + "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" + }, + "recipe": { + "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150928.1133", + "deps": [] + }, + "synonymous": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "synonymous.el", + "sha256": "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw", + "rev": "9abd08c57f4a35902cd6b3eb5aad8dbb352141f4" + }, + "recipe": { + "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130725.2119", + "deps": [] + }, + "uncrustify-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "koko1000ban", + "repo": "emacs-uncrustify-mode", + "sha256": "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam", + "rev": "73893d000361e95784911e5ec268ad0ab2a1473c" + }, + "recipe": { + "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130707.859", + "deps": [] + }, + "hl-sentence": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "hl-sentence", + "sha256": "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs", + "rev": "45e3cc525ba636c0f22baa6d0938d9808622bc89" + }, + "recipe": { + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140802.1120", + "deps": [] + }, + "mynt-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "crshd", + "repo": "mynt-mode", + "sha256": "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma", + "rev": "23d4489167bfa899634548cb41ed32fdeb3600c9" + }, + "recipe": { + "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150425.1506", + "deps": [ + "xmlgen" + ] + }, + "tdd-status-mode-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "algernon", + "repo": "tdd-status-mode-line", + "sha256": "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5", + "rev": "4c082e62f4915b573338a97efcc6854d132323dc" + }, + "recipe": { + "sha256": "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131123.1116", + "deps": [] + }, + "processing-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h", + "rev": "a57415e523c9c3faeef02fa62a2b749270c4cc33" + }, + "recipe": { + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140426.928", + "deps": [ + "yasnippet" + ] + }, + "minibuf-isearch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knagano", + "repo": "minibuf-isearch", + "sha256": "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879", + "rev": "2846c6ac369ee623dad4cd3c8a7a6d9078965516" + }, + "recipe": { + "sha256": "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1343", + "deps": [] + }, + "namespaces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "elisp-namespaces", + "sha256": "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140", + "rev": "3d02525d9b9a5ae6e7be3adefd880121436e6270" + }, + "recipe": { + "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130326.1750", + "deps": [] + }, + "doremi": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/doremi.el", + "sha256": "0b50iwyjxnhny9kzbcqxwqwa5fg5xbldm7l4jzcyl3bmcdbg4w7q" + }, + "recipe": { + "sha256": "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150815.938", + "deps": [] + }, + "clevercss": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "CleverCSS-Mode", + "sha256": "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx", + "rev": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc" + }, + "recipe": { + "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131228.1955", + "deps": [] + }, + "grizzl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "grizzl", + "sha256": "1v5xh0hana9wqc73g0yrzk5ip9zxbqg9xi8k7972nzj3fnma77bh", + "rev": "38b819b8f132962e24eb6a2cff33d571e848776d" + }, + "recipe": { + "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.1358", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hyde": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nibrahim", + "repo": "Hyde", + "sha256": "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav", + "rev": "640959dd6837487dd4545809d6cc9ef54283673d" + }, + "recipe": { + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150615.1225", + "deps": [] + }, + "on-screen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "michael-heerdegen", + "repo": "on-screen.el", + "sha256": "1rksk0j9b27w913bzbq7w2ws75yi66m24ic6ljdhhbrq3z2ic7dy", + "rev": "80b00ddef6dffad7086174c2c57f29ef28b69d27" + }, + "recipe": { + "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120403.1315", + "deps": [] + }, + "shoulda": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marcwebbie", + "repo": "shoulda.el", + "sha256": "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i", + "rev": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e" + }, + "recipe": { + "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1907", + "deps": [] + }, + "pabbrev": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "pabbrev", + "sha256": "0cbsl184szbl486454jkn28zj4p7danp92h0zv8yscrlnyl68p0y", + "rev": "d28cf8632d2691dc93afbb28500126242d37961c" + }, + "recipe": { + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150806.645", + "deps": [] + }, + "tumblesocks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gcr", + "repo": "tumblesocks", + "sha256": "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2", + "rev": "85a6cdc2db3390593fd886c474959b675460b310" + }, + "recipe": { + "sha256": "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140505.855", + "deps": [] + }, + "main-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-mainline", + "sha256": "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5", + "rev": "0e88f91e49ef27cb77d74f6a8d8140063549d67f" + }, + "recipe": { + "sha256": "0c9c5kmixvhk9il8hsxzf2k14fggb9b9mw59g8q3hgpn5g7kgpkv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "143923" + }, + "recipe": { + "sha256": "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140617.1258", + "deps": [] + }, + "logstash-conf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "logstash-conf.el", + "sha256": "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa", + "rev": "60a06ad1ceb6699cef849e9f2e8255f7816ca5de" + }, + "recipe": { + "sha256": "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150308.718", + "deps": [] + }, + "volume": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "volume-el", + "sha256": "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7", + "rev": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6" + }, + "recipe": { + "sha256": "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150718.1509", + "deps": [] + }, + "evil-leader": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-leader", + "sha256": "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3", + "rev": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf" + }, + "recipe": { + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140606.743", + "deps": [ + "evil" + ] + }, + "niflheim-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "niflheim-theme", + "repo": "emacs", + "sha256": "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm", + "rev": "5265e89164132fbdbc13146a79f0abce78bd0c5e" + }, + "recipe": { + "sha256": "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150630.1021", + "deps": [] + }, + "inf-mongo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "inf-mongo", + "sha256": "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi", + "rev": "2d910f2143610f12de9c573ee202a322cf579e85" + }, + "recipe": { + "sha256": "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131216.428", + "deps": [] + }, + "highlight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/highlight.el", + "sha256": "01d7khl7d78wz37bz28wjszhdwz81lrq9vm9d4slnj2qg4by6dcy" + }, + "recipe": { + "sha256": "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151204.1851", + "deps": [] + }, + "darktooth-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-theme-darktooth", + "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9", + "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" + }, + "recipe": { + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.1922", + "deps": [] + }, + "helm-anything": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rubikitch", + "repo": "helm-anything", + "sha256": "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb", + "rev": "0ec578922928b7c75cf034d1b7a956b5f36107ea" + }, + "recipe": { + "sha256": "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150717.7", + "deps": [] + }, + "draft-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gaudecker", + "repo": "draft-mode", + "sha256": "1451rdfgnvkc5mgsj4v646gadj14bc2wlh2bq4l44qyfd4737lb4", + "rev": "8a59f537d44ef7e8f34a69da1a7d5e0d443d76f7" + }, + "recipe": { + "sha256": "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140609.956", + "deps": [] + }, + "edit-list": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "edit-list", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9", + "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" + }, + "recipe": { + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100930.943", + "deps": [] + }, + "grapnel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "grapnel", + "sha256": "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c", + "rev": "fbd0f9a51139973d35e4014855964fa435e8ecaf" + }, + "recipe": { + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131001.1034", + "deps": [] + }, + "fcopy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "fcopy", + "sha256": "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr", + "rev": "e355f6ec889d8ecbdb096019c2dc660b1cec4941" + }, + "recipe": { + "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150304.803", + "deps": [] + }, + "litable": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "litable", + "sha256": "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99", + "rev": "9065bade1ba42ad04d9839d58082b73da589dca6" + }, + "recipe": { + "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150908.909", + "deps": [ + "dash" + ] + }, + "ducpel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "ducpel", + "sha256": "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz", + "rev": "4a1671fc45ab92d44dee85a1a223122d5a43cb32" + }, + "recipe": { + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140419.16", + "deps": [ + "cl-lib" + ] + }, + "sclang-extensions": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "sclang-extensions", + "sha256": "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x", + "rev": "7133494182738cb0ef49f31cc09cfe0d2fab520e" + }, + "recipe": { + "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.622", + "deps": [ + "emacs" + ] + }, + "elfeed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" + }, + "recipe": { + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1322", + "deps": [ + "emacs" + ] + }, + "org-dropbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "heikkil", + "repo": "org-dropbox", + "sha256": "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx", + "rev": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e" + }, + "recipe": { + "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.2229", + "deps": [ + "emacs" + ] + }, + "kite": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jscheid", + "repo": "kite", + "sha256": "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd", + "rev": "7ed74d1147a6ddd152d3da65dc30df3517d53144" + }, + "recipe": { + "sha256": "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130207.1402", + "deps": [] + }, + "forecast": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "forecast.el", + "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21", + "rev": "51526906140700f076bd329753abe7ae31b6da90" + }, + "recipe": { + "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.1635", + "deps": [ + "emacs" + ] + }, + "perl6-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hinrik", + "repo": "perl6-mode", + "sha256": "1ibnax9498jwcmkgm0jnl7q8qlwkgkp8nhp6zz7xr0x1d0dibcas", + "rev": "6c97f87fd8556cc0dc7a6754ab2237ea815bf5a4" + }, + "recipe": { + "sha256": "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151014.1718", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "tox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "tox.el", + "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39", + "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" + }, + "recipe": { + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141004.1603", + "deps": [] + }, + "swap-buffers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ekazakov", + "repo": "swap-buffers", + "sha256": "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r", + "rev": "46ab31359b70d935add6c6e9533443116dc51103" + }, + "recipe": { + "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150506.1639", + "deps": [] + }, + "window-jump": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150213.1436", + "deps": [] + }, + "org-screenshot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org-screenshot", + "sha256": "0ay68vz1mqr46svy9bwnd2cb9yykad3jwwm1zvvi9w87drx5pj3y", + "rev": "90c78dce2846bd1d148181ff896afe0f9fa9bdeb" + }, + "recipe": { + "sha256": "012pm38d9v8qmg83vrsp39y6y30il0956rlrcmb5m5nzla84z2c3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100330.543", + "deps": [] + }, + "date-field": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-date-field", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w", + "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" + }, + "recipe": { + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100124.428", + "deps": [] + }, + "lemon-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "lemon-mode", + "sha256": "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7", + "rev": "155bfced6c9afc8072a0133d3d1baa54c6d67430" + }, + "recipe": { + "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151115.2245", + "deps": [] + }, + "toggle-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "deadghost", + "repo": "toggle-window", + "sha256": "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r", + "rev": "e82c60e543933880402ede11e9423e48a17dde53" + }, + "recipe": { + "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141207.948", + "deps": [] + }, + "slamhound": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "slamhound", + "sha256": "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad", + "rev": "f43dd49b63b2838081735ea1988f70de05389692" + }, + "recipe": { + "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140506.1818", + "deps": [] + }, + "syslog-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "syslog-mode", + "sha256": "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4", + "rev": "c18661b3058f0ec00e6957c955559a762cb0062c" + }, + "recipe": { + "sha256": "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140217.1818", + "deps": [ + "hide-lines" + ] + }, + "evil-numbers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-numbers", + "sha256": "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np", + "rev": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e" + }, + "recipe": { + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140606.751", + "deps": [] + }, + "switch-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "switch-window", + "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48", + "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" + }, + "recipe": { + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150114.415", + "deps": [] + }, + "zeal-at-point": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jinzhu", + "repo": "zeal-at-point", + "sha256": "1csxy186mi59zb3hmv2fngcz4hhg4r9qzqsyjjsn45l8zrb4q7vf", + "rev": "f18afeae0a4e0cd339a386255ac65b35deb787bb" + }, + "recipe": { + "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151103.2107", + "deps": [] + }, + "helm-robe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-robe", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg", + "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" + }, + "recipe": { + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.2155", + "deps": [ + "helm" + ] + }, + "helm-flx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "helm-flx", + "sha256": "02aran1myhm43skv7rjinrjbrayj1ld1s5f604bbqil8swvrq5ba", + "rev": "f634e85ee92f6a390da33d1a618a4c353e270762" + }, + "recipe": { + "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151031.2117", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "lice": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "lice-el", + "sha256": "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb", + "rev": "d8572d997f54f4022f245dcf7c38fef6919a474a" + }, + "recipe": { + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1222", + "deps": [] + }, + "mark-tools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs-mark-tools", + "sha256": "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz", + "rev": "a11b61effa90bd0abc876d12573674d36fc17f0c" + }, + "recipe": { + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150712.1630", + "deps": [] + }, + "helm-gitignore": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jupl", + "repo": "helm-gitignore", + "sha256": "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g", + "rev": "03aad6edb0ed4471c093230856f26719754e570b" + }, + "recipe": { + "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151007.2025", + "deps": [] + }, + "dkmisc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dkmisc", + "sha256": "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49", + "rev": "fe3d49c6f8322b6f89466361acd97585bdfe0608" + }, + "recipe": { + "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131110.515", + "deps": [ + "emacs" + ] + }, + "dedicated": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "dedicated", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414", + "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" + }, + "recipe": { + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150110.54", + "deps": [] + }, + "edit-indirect": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "edit-indirect", + "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds", + "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" + }, + "recipe": { + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141213.1205", + "deps": [ + "emacs" + ] + }, + "asn1-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "asn1-mode", + "sha256": "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj", + "rev": "f8acc7e79306ca416f28ff4dc308d8ec47af51a5" + }, + "recipe": { + "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151124.28", + "deps": [ + "emacs", + "s" + ] + }, + "soundklaus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "soundklaus.el", + "sha256": "1ipg4vvh6vgf0az8p31br1xkb8ndjmd6fybcx11r3c479sg0y6k7", + "rev": "830f2b5f4dd4bd110db23a71494b92bb8fe5b058" + }, + "recipe": { + "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150102.1521", + "deps": [ + "cl-lib", + "dash", + "deferred", + "emacs", + "emms", + "pkg-info", + "s" + ] + }, + "fireplace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johanvts", + "repo": "emacs-fireplace", + "sha256": "1y1bk18wfirscbq7mz8i1bmfvp2xh7pzfrkpq0lxmfb4sridqlx0", + "rev": "36c7cc50d23dad979d3e2d166032fd295b1ab743" + }, + "recipe": { + "sha256": "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1934", + "deps": [] + }, + "morlock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "morlock", + "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy", + "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" + }, + "recipe": { + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150815.1034", + "deps": [] + }, + "helm-fuzzy-find": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-fuzzy-find", + "sha256": "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a", + "rev": "daf24bc236dafa4f4be45f1621e11dbc9f304b64" + }, + "recipe": { + "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150613.549", + "deps": [ + "emacs", + "helm" + ] + }, + "auto-complete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "auto-complete", + "sha256": "1kaamih2589y2bc67wjkb5xh1rgxxyw1zkr58dvpfyhagjg3czzd", + "rev": "422e1a24b2e75bac25cf224191e306a645794e10" + }, + "recipe": { + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.554", + "deps": [ + "cl-lib", + "popup" + ] + }, + "psvn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "psvn", + "sha256": "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6", + "rev": "23048d302858fc3a52c118652bd83491a4956410" + }, + "recipe": { + "sha256": "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151103.1242", + "deps": [] + }, + "go-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "toumorokoshi", + "repo": "go-snippets", + "sha256": "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n", + "rev": "983eb74025030bf6d405f1ed63be3162cc28a528" + }, + "recipe": { + "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.57", + "deps": [ + "yasnippet" + ] + }, + "sparql-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "sparql-mode", + "sha256": "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij", + "rev": "303858e7f91829ec720141482c777460e66f310b" + }, + "recipe": { + "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150902.758", + "deps": [] + }, + "auto-compile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "auto-compile", + "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg", + "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" + }, + "recipe": { + "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.941", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "tomatinho": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "konr", + "repo": "tomatinho", + "sha256": "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n", + "rev": "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7" + }, + "recipe": { + "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140120.1740", + "deps": [] + }, + "r-autoyas": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "r-autoyas.el", + "sha256": "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j", + "rev": "b4020ee7f5f895e0065b8b26da8a49c51432d530" + }, + "recipe": { + "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1608", + "deps": [] + }, + "scad-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "openscad", + "repo": "openscad", + "sha256": "1na5ab12y5zr93pinnl9x7cgz139wvxgwpjys7akbpm3car86g5n", + "rev": "dff10cc9af40ff5c8ac1dd46deace5971409b31b" + }, + "recipe": { + "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150330.2229", + "deps": [] + }, + "ccc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "0yrjrrm0rkrvr34jwxbl5bm8ahr7w5xh76k859qwgi2cbz6vr7q0", + "rev": "47980e6c4f9979ff0b2d656befa5366c57e4527b" + }, + "recipe": { + "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.743", + "deps": [] + }, + "search-web": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tomoya", + "repo": "search-web.el", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i", + "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" + }, + "recipe": { + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150312.603", + "deps": [] + }, + "helm-growthforecast": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "daic-h", + "repo": "helm-growthforecast", + "sha256": "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk", + "rev": "0f94ac090d6c354058ad89a86e5c18385c136d9b" + }, + "recipe": { + "sha256": "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140119.2144", + "deps": [ + "helm" + ] + }, + "id-manager": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-id-manager", + "sha256": "0bzbp0vgnzvd1m3lhbcrxmknpi0cjisff6jd49f1nvkdx3p2ks40", + "rev": "0d968929bbaff813dd7e098c7f69e0b54434ce09" + }, + "recipe": { + "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150605.2239", + "deps": [] + }, + "clips-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "grettke", + "repo": "clips-mode", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd", + "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" + }, + "recipe": { + "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131012.1601", + "deps": [] + }, + "kivy-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kivy", + "repo": "kivy", + "sha256": "1py7wzbbmmz5924n23jlss403yliljd608yhcxvf50i41svvsdrw", + "rev": "dfc535142a1ffa75ac3b7685b5c2168d99b1ba28" + }, + "recipe": { + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140524.757", + "deps": [] + }, + "mpv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "mpv.el", + "sha256": "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm", + "rev": "3021c55fa5723a806dde5fb2a630b115e2c53d06" + }, + "recipe": { + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140902.1149", + "deps": [] + }, + "busybee-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "busybee-theme", + "sha256": "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx", + "rev": "70850d1781ff91c4ce125a31ed451d080f8da643" + }, + "recipe": { + "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130920.1142", + "deps": [] + }, + "erlang": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "erlang", + "repo": "otp", + "sha256": "1dl2sxd77miaqbl9plrg6kgql5jg5vz42lj9f85i771g95h2c6nk", + "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8" + }, + "recipe": { + "sha256": "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151013.357", + "deps": [] + }, + "cssh": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "cssh", + "sha256": "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a", + "rev": "2fe2754235225a59b63f08b130cfd4352e2e1c3f" + }, + "recipe": { + "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150425.1301", + "deps": [] + }, + "concurrent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14", + "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" + }, + "recipe": { + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150309.2252", + "deps": [ + "deferred" + ] + }, + "yari": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hron", + "repo": "yari.el", + "sha256": "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf", + "rev": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9" + }, + "recipe": { + "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.139", + "deps": [] + }, + "cobra-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Nekroze", + "repo": "cobra-mode", + "sha256": "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp", + "rev": "acd6e53f6286af5176471d01f25257e5ddb6dd01" + }, + "recipe": { + "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140116.1516", + "deps": [] + }, + "grep+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/grep+.el", + "sha256": "03a4mmhbkwj2bq48525jba6wiczs943lmlhvy5vz8x4hb47rlmc3" + }, + "recipe": { + "sha256": "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1610", + "deps": [] + }, + "textile-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juba", + "repo": "textile-mode", + "sha256": "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2", + "rev": "db33dc5f994c008ef9f1556801bf8ac62d451f31" + }, + "recipe": { + "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.253", + "deps": [] + }, + "xterm-title": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "xterm-title", + "sha256": "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl", + "rev": "b6ea73d297d191d48bba7dd1e2adc23bbdfa1c3c" + }, + "recipe": { + "sha256": "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091203.1223", + "deps": [] + }, + "helm-zhihu-daily": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-zhihu-daily", + "sha256": "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g", + "rev": "c084d2505621dbb71d83ec10550fa0801623cafc" + }, + "recipe": { + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [] + }, + "darkburn-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gorauskas", + "repo": "darkburn-theme", + "sha256": "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf", + "rev": "a0151684ae4fa7c364115188422f6c3425d1594c" + }, + "recipe": { + "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151003.300", + "deps": [] + }, + "bongo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "bongo", + "sha256": "0ghjfrwc2i04rxg3nqc5fg2kgfyjlhk8n2qcz53p9i7ncc3zgpha", + "rev": "4cdacc10a530d4edbfdf6c95891f3cf229518e9d" + }, + "recipe": { + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130906.18", + "deps": [] + }, + "caskxy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "caskxy", + "sha256": "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3", + "rev": "dc18dcab7ed526070ab76de071c9c5272e6ac40e" + }, + "recipe": { + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140520.403", + "deps": [] + }, + "twittering-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hayamiz", + "repo": "twittering-mode", + "sha256": "02c9z229ayqnmlvja5a2fz3vk8914v9v8akin57q8a0gyzn2bli5", + "rev": "97197cdd3cc005000dc2599f67c754d74fab5972" + }, + "recipe": { + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150906.1203", + "deps": [] + }, + "rtags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Andersbakken", + "repo": "rtags", + "sha256": "0lvajqcw4mfw33wpb6m43k0c0f74s8m33lw5i730qvkrh0in8gf0", + "rev": "8f032d75a7a7d6b8019913b5f2b5703181a15d19" + }, + "recipe": { + "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.1501", + "deps": [] + }, + "totd": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "egh", + "repo": "emacs-totd", + "sha256": "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g", + "rev": "ca47b618ea8290776cdb5b0f1c2c335691f69660" + }, + "recipe": { + "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.826", + "deps": [] + }, + "travis": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-travis", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz", + "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" + }, + "recipe": { + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150116.1000", + "deps": [ + "yasnippet" + ] + }, + "calfw-gcal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "calfw-gcal.el", + "sha256": "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi", + "rev": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870" + }, + "recipe": { + "sha256": "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120111.400", + "deps": [] + }, + "project-explorer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "project-explorer", + "sha256": "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd", + "rev": "589a09008706f5f4ef91393dc4306eede0d15ca9" + }, + "recipe": { + "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151207.1603", + "deps": [] + }, + "ant": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "ant-el", + "sha256": "1g4ah0iwqrvvzcxr0ss6il5kign73gzcz1dbc22wdgprlfa4hah7", + "rev": "8afe6cd0ee4674911ce6b9381b551ab22c567c49" + }, + "recipe": { + "sha256": "03rxn2dh0xj89kl24jd19q7kmrn1hnr2cdl3519bpng298kxwni6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131228.107", + "deps": [] + }, + "ac-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-helm", + "sha256": "1ycchpiiavxw8n08gra0bsp9pxp6ln8cgjrkz9jjq7i6ixi8f9d6", + "rev": "0cde22dac4726d08c27801c926cf40b1165c8a07" + }, + "recipe": { + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140930.1223", + "deps": [ + "cl-lib" + ] + }, + "rainbow-delimiters": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-delimiters", + "sha256": "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd", + "rev": "0823d0c67f935a4c36a1c945e93051102963c7fb" + }, + "recipe": { + "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150320.217", + "deps": [] + }, + "pp+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/pp+.el", + "sha256": "1997hkxnnhrhkszzxmhabkh8ifb07bzr0w9svx8yynn22j0s5dmh" + }, + "recipe": { + "sha256": "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150418.1028", + "deps": [] + }, + "evil-annoying-arrows": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "endrebak", + "repo": "evil-annoying-arrows", + "sha256": "05fba10yvxl82g2xl48mxwz7cwjp4pylb7n8a4b08i8f9xasny7f", + "rev": "1ec60cea0e67d782e5b8d093d19da6d0d4fd1e7f" + }, + "recipe": { + "sha256": "024zz9l43y1kk2hm8l96h1ahril23cj35f0x72jrcfjysid7wpry", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150819.1148", + "deps": [ + "dash" + ] + }, + "twig-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "moljac024", + "repo": "twig-mode", + "sha256": "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa", + "rev": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6" + }, + "recipe": { + "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130220.1250", + "deps": [] + }, + "genrnc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-genrnc", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn", + "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" + }, + "recipe": { + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.717", + "deps": [] + }, + "fm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fm", + "sha256": "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs", + "rev": "555bcebdf47ea3b1d9d1e152af7237b9daa62d59" + }, + "recipe": { + "sha256": "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130126.1818", + "deps": [] + }, + "company-anaconda": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-anaconda", + "sha256": "1369k2wcf5mgbnxsp6dn9vrml8dzq7lgv3a1918jhgmlxicn4dm1", + "rev": "f796fea142cb164a08f9b0968f565e279bd23dd7" + }, + "recipe": { + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120520.932", + "deps": [] + }, + "evil-tutor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-tutor", + "sha256": "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx", + "rev": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28" + }, + "recipe": { + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151019.822", + "deps": [ + "flycheck" + ] + }, + "evil-visualstar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-visualstar", + "sha256": "17m4kdz1is4ipnyiv9n3vss49faswbbd6v57df9npzsbn5jyydd0", + "rev": "bd9e1b50c03b37c57355d387f291c2ec8ce51eec" + }, + "recipe": { + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150514.1610", + "deps": [ + "evil" + ] + }, + "hlinum": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "hlinum-mode", + "sha256": "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4", + "rev": "22218c9883a2de6468bf6ad13864b50b44c93592" + }, + "recipe": { + "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150621.2133", + "deps": [ + "cl-lib" + ] + }, + "rainbow-identifiers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-identifiers", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh", + "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" + }, + "recipe": { + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141102.926", + "deps": [ + "emacs" + ] + }, + "demangle-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "demangle-mode", + "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl", + "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" + }, + "recipe": { + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.1453", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "github-clone": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "github-clone.el", + "sha256": "1aiy1jwrzyy3v0ra4a107dbsdf8c92yyvv87q5pf471vsf61fqmb", + "rev": "96070145cdcbbfbbfbfa69e6992b8663fef5c9d1" + }, + "recipe": { + "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1842", + "deps": [ + "emacs", + "gh", + "magit" + ] + }, + "shrink-whitespace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jcpetkovich", + "repo": "shrink-whitespace.el", + "sha256": "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m", + "rev": "8d4263d974fbe66417c0bb9edc155ecc2f48e4b7" + }, + "recipe": { + "sha256": "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150916.1415", + "deps": [] + }, + "helm-git-files": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kenbeese", + "repo": "helm-git-files", + "sha256": "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw", + "rev": "43193960774069369ac6964bbf7c026900206fa8" + }, + "recipe": { + "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141212.717", + "deps": [ + "helm" + ] + }, + "hi2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nilcons", + "repo": "hi2", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf", + "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" + }, + "recipe": { + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141005.1431", + "deps": [] + }, + "deferred": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0m7y41hqv8mjwyy3v8pmgffqw11gcbyvhmydj1ph0jwxkc68hy14", + "rev": "01710a52a1206a0da1374335e6b89ad5aed92160" + }, + "recipe": { + "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150915.1452", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "bind-key": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "1kng5yzm73gz67znifjhzrr2zbcc7cyb2f1j703hmf33zb9naqhp", + "rev": "1d7e6ff5b73761c3b7180530da8bc433338d0cec" + }, + "recipe": { + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1639", + "deps": [] + }, + "urlenc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "urlenc-el", + "sha256": "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4", + "rev": "835a6dcb783bbe84714bae87a3464aa0b128bfac" + }, + "recipe": { + "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140116.856", + "deps": [] + }, + "bbdb-": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "bbdb-", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp", + "rev": "2839e84c894de2513af41053e80a277a1b483d22" + }, + "recipe": { + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150330.303", + "deps": [] + }, + "etable": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "ETable", + "sha256": "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy", + "rev": "8c9a32a92e7f808874c150c851f1605b2dd83d6e" + }, + "recipe": { + "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150327.1216", + "deps": [ + "dash", + "emacs", + "interval-list" + ] + }, + "gplusify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "gplusify", + "sha256": "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1", + "rev": "bd6237ae671db2fbf406dcc6225839dcbd2475b2" + }, + "recipe": { + "sha256": "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150312.1444", + "deps": [] + }, + "prop-menu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "prop-menu-el", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc", + "rev": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3" + }, + "recipe": { + "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150728.618", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esqlite": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-esqlite", + "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3", + "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" + }, + "recipe": { + "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150515.947", + "deps": [] + }, + "cypher-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "cypher-mode", + "sha256": "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf", + "rev": "ce8543d7877c736c574a17b49874c9dcdc7a06d6" + }, + "recipe": { + "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151110.542", + "deps": [] + }, + "bbcode-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "bbcode-mode", + "sha256": "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7", + "rev": "b6ff1bfb8041b1435ebfc0a7d8e5e34eeb1b6aae" + }, + "recipe": { + "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141103.1541", + "deps": [] + }, + "ob-kotlin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-kotlin", + "sha256": "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7", + "rev": "c494f50184d25e196c009bf5cc105c4931b9464d" + }, + "recipe": { + "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150312.814", + "deps": [ + "org" + ] + }, + "fold-dwim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fold-dwim", + "sha256": "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1", + "rev": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b" + }, + "recipe": { + "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140208.1037", + "deps": [] + }, + "cake-inflector": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake-inflector", + "sha256": "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4", + "rev": "a91cecd533930bacf1dc30f5209831f79847abda" + }, + "recipe": { + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140415.358", + "deps": [ + "s" + ] + }, + "kwin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "reactormonk", + "repo": "kwin-minor-mode", + "sha256": "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy", + "rev": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566" + }, + "recipe": { + "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150308.1312", + "deps": [] + }, + "purescript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dysinger", + "repo": "purescript-mode", + "sha256": "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864", + "rev": "1390bf6a2ddd0764a5ee7f5cac4e88980cf44eaf" + }, + "recipe": { + "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151001.834", + "deps": [] + }, + "rectangle-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "rectangle-utils", + "sha256": "14ysbjdndsmcc4j3zhc3nfjxhdm9310jx237mrp98ancxdhsh4q9", + "rev": "81071e62862c0062b8559eb217e6658878c34a1e" + }, + "recipe": { + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120819.1914", + "deps": [ + "ess", + "helm" + ] + }, + "mingus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pft", + "repo": "mingus", + "sha256": "0r4jh58pls859fljb6qm49l4imfxxif9mxsmjgwan0czfhq33xqh", + "rev": "151f2225f9af3c4cc7ca89e94dc6a19077baf6a4" + }, + "recipe": { + "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151115.1317", + "deps": [ + "libmpdee" + ] + }, + "hippie-namespace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hippie-namespace", + "sha256": "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc", + "rev": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49" + }, + "recipe": { + "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [] + }, + "sbt-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "emacs-sbt-mode", + "sha256": "1l6l90lhqk56l20dhy19snn0fz4di03j714d2v07yl19q64gfk6c", + "rev": "209a396babd0a302cbb5a32f16525aabb409528b" + }, + "recipe": { + "sha256": "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151014.242", + "deps": [ + "scala-mode2" + ] + }, + "evil-easymotion": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "evil-easymotion", + "sha256": "17qb3qnnn2f8jj2mi8735ymnw8rhpj6w3l61lhqfrkc0m6vq1vhy", + "rev": "ba7f1e08a5dca4c0540b347f55547828421d6c79" + }, + "recipe": { + "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151016.2259", + "deps": [ + "avy", + "emacs" + ] + }, + "org-dashboard": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "org-dashboard", + "sha256": "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5", + "rev": "b523aefb5822c1f09a70bc429579c2959929782b" + }, + "recipe": { + "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150812.502", + "deps": [ + "cl-lib" + ] + }, + "shpec-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shpec", + "repo": "shpec-mode", + "sha256": "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn", + "rev": "146adc8281d0f115df39a3a3f982ac59ab61b754" + }, + "recipe": { + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150530.422", + "deps": [] + }, + "jonprl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "jonprl-mode", + "sha256": "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx", + "rev": "a7c7525ee19682c700f4d1d432b5be5707e94f10" + }, + "recipe": { + "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140317.536", + "deps": [ + "anything" + ] + }, + "novice+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/novice+.el", + "sha256": "1lv911k9s0607g8mrhc42zb7s1cw0zqqafqbrk6w17j4hr53n897" + }, + "recipe": { + "sha256": "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1834", + "deps": [] + }, + "discover": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "discover.el", + "sha256": "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka", + "rev": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df" + }, + "recipe": { + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140103.1539", + "deps": [ + "makey" + ] + }, + "ob-elixir": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-elixir", + "sha256": "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk", + "rev": "d0e8007efa0b99ab7a6e4cb7160a87d6cb60d210" + }, + "recipe": { + "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.647", + "deps": [ + "org" + ] + }, + "ledger-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ledger", + "repo": "ledger", + "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465", + "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" + }, + "recipe": { + "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151026.1742", + "deps": [] + }, + "eshell-autojump": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "eshell-autojump", + "sha256": "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2", + "rev": "c6a8b81a16576df9875e721fbbfe6690d04e7e43" + }, + "recipe": { + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150927.224", + "deps": [] + }, + "company-restclient": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-restclient", + "sha256": "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5", + "rev": "752f39490178832f6a09abd82e10d9356636350a" + }, + "recipe": { + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140315.1129", + "deps": [ + "auto-complete", + "cake" + ] + }, + "ddskk": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "0yrjrrm0rkrvr34jwxbl5bm8ahr7w5xh76k859qwgi2cbz6vr7q0", + "rev": "47980e6c4f9979ff0b2d656befa5366c57e4527b" + }, + "recipe": { + "sha256": "1wj3z6ldlkaj99xqh7a497in1syn7shf2w1ffcn6aiskxjrzmpiq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.42", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.657", + "deps": [] + }, + "org-tree-slide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "takaxp", + "repo": "org-tree-slide", + "sha256": "19id53sjv0r0xnm3l8d694s27dxlmdfm9dal57zlf60s5lg8hykq", + "rev": "3a2d3733baa81484ac53bee9a8d0f9dafa54881c" + }, + "recipe": { + "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.147", + "deps": [] + }, + "org-transform-tree-table": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-org-transform-tree-table", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3", + "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" + }, + "recipe": { + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150110.833", + "deps": [ + "dash", + "s" + ] + }, + "asilea": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "asilea", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597", + "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" + }, + "recipe": { + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150619.1003", + "deps": [] + }, + "ox-reveal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yjwen", + "repo": "org-reveal", + "sha256": "196bjiij0nj19qsz95y9l44sr63673mxxj0cv6aa3ijpm48vmj9p", + "rev": "b92d0e843f2526788caa08bda5284f23e15e09cd" + }, + "recipe": { + "sha256": "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151023.106", + "deps": [ + "org" + ] + }, + "demo-it": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "howardabrams", + "repo": "demo-it", + "sha256": "051i2ywmy0qs6cqq6qxyjpgy28k7pxr9wfjpm48r871hmb61xaai", + "rev": "1b41e85d34960278f21139b02e4d85eecb07c4b0" + }, + "recipe": { + "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.2343", + "deps": [] + }, + "helm-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-package", + "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw", + "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" + }, + "recipe": { + "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150828.1916", + "deps": [] + }, + "revive": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "revive", + "sha256": "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1", + "rev": "16e1ac7cfa2fdccddf60d4a0e15731fc7448d818" + }, + "recipe": { + "sha256": "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150417.1755", + "deps": [] + }, + "smart-tab": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "genehack", + "repo": "smart-tab", + "sha256": "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4", + "rev": "28918a72045811294ecb33f666ba23fe66c169af" + }, + "recipe": { + "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150703.1117", + "deps": [] + }, + "man-commands": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "man-commands", + "sha256": "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk", + "rev": "f4ba0c3790855d7544dff92d470d212f24de1d9d" + }, + "recipe": { + "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.1621", + "deps": [ + "cl-lib" + ] + }, + "helm-git": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "helm-git", + "sha256": "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn", + "rev": "cb96a52b5aecadd3c27aba7749d14e43ab128d55" + }, + "recipe": { + "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120630.1603", + "deps": [] + }, + "git-lens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-lens", + "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish", + "rev": "1feacc217c58fd4a41f9378eb09658f664036509" + }, + "recipe": { + "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150817.214", + "deps": [ + "emacs" + ] + }, + "emacs-setup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-setup", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8", + "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" + }, + "recipe": { + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120727.926", + "deps": [] + }, + "interaction-log": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "michael-heerdegen", + "repo": "interaction-log.el", + "sha256": "0jdm4xjzpl5dr5s8n2hhd5md6hfl6m6v10nwd1n54pb7bv98aqsl", + "rev": "977a3d276b73a4e239addc6c30214bc55ac6fd1f" + }, + "recipe": { + "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150603.1210", + "deps": [ + "cl-lib" + ] + }, + "ac-emmet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-emmet", + "sha256": "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g", + "rev": "88f24876ee3b759978d4614a758280b5d512d543" + }, + "recipe": { + "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140816.733", + "deps": [] + }, + "highlight-quoted": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-quoted", + "sha256": "0vqkadhzszlxiqb4ysr7p86hhmi4z1j95llxa680xn6md8x2sj8a", + "rev": "ec9108486cf7f21f9a0b13f81369849b3b525f1f" + }, + "recipe": { + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140916.1322", + "deps": [ + "emacs" + ] + }, + "org-wc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dato", + "repo": "org-wc", + "sha256": "0miahg10xx3sy85n22xqwjp1z7kcmcsb85dh0653sf7axp42kq98", + "rev": "f1765fc913f288432ee2cc330c8a7af3af7715c8" + }, + "recipe": { + "sha256": "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140509.722", + "deps": [] + }, + "wordsmith-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "wordsmith-mode", + "sha256": "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h", + "rev": "597e1e7c7ef89b06ed8280251ecd8f40ce55e1bf" + }, + "recipe": { + "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.436", + "deps": [] + }, + "makey": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "makey", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy", + "rev": "a61781e69d3b451551e269446e1c5f624ab81137" + }, + "recipe": { + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140130.2016", + "deps": [] + }, + "magit-gitflow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jtatarik", + "repo": "magit-gitflow", + "sha256": "10c1qd1l92h0z7mz7j004bx3fc9p6ij3m732lwmni9vlfbishbb4", + "rev": "dd1d88888957f0fd8b950037e0e58dba2d3221d9" + }, + "recipe": { + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150905.239", + "deps": [ + "magit", + "magit-popup" + ] + }, + "wsd-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "wsd-mode", + "sha256": "134ysscql74v1ix3wnpgrcbmayq6d264m0m975g41hcz8f876j03", + "rev": "d54c22f6f9a774ef2b1595ab52947403af2ff994" + }, + "recipe": { + "sha256": "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.850", + "deps": [] + }, + "rubocop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "rubocop-emacs", + "sha256": "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk", + "rev": "c54905256410ce2aed6725d5b5f7ed61d4ddc956" + }, + "recipe": { + "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150627.951", + "deps": [ + "emacs" + ] + }, + "ert-runner": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-runner.el", + "sha256": "0ivnfc42pw9pc9glx2m4klzx4csy4m60hj1x12js7492bd0ri933", + "rev": "0a88a6cc9d970660c9f1205a623bc80d9bd5a05b" + }, + "recipe": { + "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131012.730", + "deps": [ + "coffee-mode" + ] + }, + "zenburn-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "zenburn-emacs", + "sha256": "071wrw9n1f3f9r19ng55942fzijlssrd3kzmxxs1c76yvdpy3wy5", + "rev": "7bdf03cb51105bb1c8f1cd86107e4a7b03b2a81e" + }, + "recipe": { + "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.450", + "deps": [] + }, + "web-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "web-mode", + "sha256": "1k3kwcr4q6j0ljxj8hqfy466nw12v5j7yrszg2brmgfxz2285k63", + "rev": "71aebc9f003dccce021be917deb58e9c0dd5c704" + }, + "recipe": { + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.1600", + "deps": [] + }, + "helm-filesets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gcla", + "repo": "helm-filesets", + "sha256": "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9", + "rev": "b352910af4c3099267a8aa0169c7f743b35bb1fa" + }, + "recipe": { + "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140929.1335", + "deps": [ + "filesets+", + "helm" + ] + }, + "gitconfig-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150330.1248", + "deps": [] + }, + "helm-sheet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-sheet", + "sha256": "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx", + "rev": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463" + }, + "recipe": { + "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130630.739", + "deps": [ + "helm" + ] + }, + "tao-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "11111000000", + "repo": "tao-theme-emacs", + "sha256": "1zhr6vrzf511mxrj4fkc9k8wfr1hixn733f5g28j4qzykr4zl2mh", + "rev": "48a69f5568b2d16496960aa92b312cd02be80ecc" + }, + "recipe": { + "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.1040", + "deps": [] + }, + "ahg": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/agriggio/ahg", + "sha256": "0fnn52b2prai8dlsj4759mbcgbbbvhr2lbqs3f0k5d2q8vvqrch1", + "rev": "e8eda2f41471" + }, + "recipe": { + "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.501", + "deps": [] + }, + "isearch-dabbrev": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "isearch-dabbrev", + "sha256": "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb", + "rev": "1efe7abba4923015cbc2462395deaec5446a9cc8" + }, + "recipe": { + "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141224.22", + "deps": [ + "cl-lib" + ] + }, + "helm-bm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-bm", + "sha256": "1gcx7imq9gxfgmh188a8xlpmmlrdif1vsnnff49qvk82082ghbfz", + "rev": "1764c0139cb2f04b9fd520c7aca0b6d0152913bd" + }, + "recipe": { + "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141128.408", + "deps": [] + }, + "mwim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "mwim.el", + "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4", + "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" + }, + "recipe": { + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150822.1436", + "deps": [] + }, + "launchctl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pekingduck", + "repo": "launchctl-el", + "sha256": "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj", + "rev": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4" + }, + "recipe": { + "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150518.809", + "deps": [ + "emacs" + ] + }, + "transmission": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "transmission", + "sha256": "08jir2kj42x0kf124g1znphnmh6n25vcxkykyyn01brbdycgkb1j", + "rev": "61d487b5cdf1931852bf3c8a30f3695c5ae7e8aa" + }, + "recipe": { + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1447", + "deps": [ + "emacs", + "let-alist" + ] + }, + "ghq": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rcoedo", + "repo": "emacs-ghq", + "sha256": "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf", + "rev": "bfbf9245075f710ffc7dc2c6bf584dd2ca7bde24" + }, + "recipe": { + "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151130.318", + "deps": [] + }, + "soft-charcoal-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-charcoal-theme", + "sha256": "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm", + "rev": "5607ab977fae6638e78b1495e02da8955c9ba19f" + }, + "recipe": { + "sha256": "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140420.1143", + "deps": [] + }, + "dyalog-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/harsman/dyalog-mode", + "sha256": "0ghxnzi2iy1g633fshl9wdpg2asrcl0v5rkk61gqd6axm7fjaxcj", + "rev": "ce795beb8747" + }, + "recipe": { + "sha256": "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.924", + "deps": [] + }, + "notmuch": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.notmuchmail.org/git/notmuch", + "sha256": "1b103da2084cb38dcf5ce07a62d69b6a15f81b59fae9130686934ec9820dc7b4", + "rev": "8881a61fe7a1956534b89cd1f79984793ff694fe" + }, + "recipe": { + "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.640", + "deps": [] + }, + "nixos-options": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3", + "rev": "6b1418611b49a6cf77380a76f7e6236bbb5df83a" + }, + "recipe": { + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151013.1809", + "deps": [ + "emacs" + ] + }, + "monky": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "monky", + "sha256": "0ddkcb5rzpcqpsrwkhvm9kzpx2mlrrsp7psljkz5q5qfvy3wdagh", + "rev": "48c0200910739b6521f26f6423b2bfb8c38b4482" + }, + "recipe": { + "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150404.218", + "deps": [] + }, + "pythonic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pythonic", + "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c", + "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" + }, + "recipe": { + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150501.1126", + "deps": [ + "yasnippet" + ] + }, + "go-errcheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-errcheck.el", + "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3", + "rev": "1b0cd6af048a8b2074ace14ab51fb6c987beb430" + }, + "recipe": { + "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150828.1335", + "deps": [] + }, + "lexbind-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "spacebat", + "repo": "lexbind-mode", + "sha256": "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932", + "rev": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d" + }, + "recipe": { + "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141027.929", + "deps": [] + }, + "minimal-session-saver": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "minimal-session-saver", + "sha256": "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm", + "rev": "cf654ac549850746dc21091746e4bcc1aef7668e" + }, + "recipe": { + "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [] + }, + "flymake-vala": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "daniellawrence", + "repo": "flymake-vala", + "sha256": "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf", + "rev": "c3674f461fc84fb0300cd3a562fb903a59782745" + }, + "recipe": { + "sha256": "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141108.2108", + "deps": [ + "popup" + ] + }, + "cake2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake2", + "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb", + "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" + }, + "recipe": { + "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150813.808", + "deps": [ + "cl-lib", + "helm" + ] + }, + "async": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "emacs-async", + "sha256": "0z91alzf4ajj3r7pnwazynvp81cg67csy9kf87fk98024xldpkdp", + "rev": "c25bf17b34a1608da45e8a1ca02e1c89a34acd34" + }, + "recipe": { + "sha256": "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.456", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gotest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "gotest.el", + "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2", + "rev": "ab0da939aad5cec301126c59b7718cd3158b3233" + }, + "recipe": { + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150920.1533", + "deps": [ + "cl-lib", + "ede", + "semantic" + ] + }, + "floobits": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Floobits", + "repo": "floobits-emacs", + "sha256": "1b9zxyv5bn1ja0gcv5p3dk3lq3gp3g1dhbnizx7ifgpzc36sp374", + "rev": "c75af788d089b701dc71fd79c2baefe82d0d17eb" + }, + "recipe": { + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.1804", + "deps": [ + "highlight", + "json" + ] + }, + "md-readme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thomas11", + "repo": "md-readme", + "sha256": "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3", + "rev": "9f3630d3ad2b83ec20968cf02c6613c53e8e32ec" + }, + "recipe": { + "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151113.1102", + "deps": [] + }, + "foreign-regexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k-talo", + "repo": "foreign-regexp.el", + "sha256": "1fczg710a0rjs932yv6vv9rwr9g5ii6cwva82nqfzyhlkf0b1sn5", + "rev": "c7251fce89c8585f2595e687d8d7bc65cf465b5e" + }, + "recipe": { + "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140823.1942", + "deps": [] + }, + "wilt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sixty-north", + "repo": "emacs-wilt", + "sha256": "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd", + "rev": "5febe367c6c3729848654358af4d17ee2987da8d" + }, + "recipe": { + "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.718", + "deps": [ + "dash", + "emacs", + "s" + ] + }, + "airplay": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "airplay-el", + "sha256": "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7", + "rev": "bd690aafcae3a887946e1bba8327597932d964ad" + }, + "recipe": { + "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130602.748", + "deps": [] + }, + "weibo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "austin-----", + "repo": "weibo.emacs", + "sha256": "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh", + "rev": "a8abb50b7602fe15fe2bc6400ac29780e956b390" + }, + "recipe": { + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141005.40", + "deps": [] + }, + "bbdb-china": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "bbdb-china", + "sha256": "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn", + "rev": "a64725ca6dbb5ec1825f3a9112df9aa54bb14f6c" + }, + "recipe": { + "sha256": "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131006.847", + "deps": [] + }, + "stan-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "1k0jidh177s9lk4k9vphivq8dapd2qzajim2s835pn72j6k675vg", + "rev": "e981ca7fee98431162b21ec6b79c82100ce4b276" + }, + "recipe": { + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.2258", + "deps": [] + }, + "parse-csv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrc", + "repo": "el-csv", + "sha256": "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s", + "rev": "dc31201af8868aa98f055de055ee7aa5fae266dd" + }, + "recipe": { + "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140203.316", + "deps": [] + }, + "edts": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tjarvstrand", + "repo": "edts", + "sha256": "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv", + "rev": "70dfcfd8cc448c854fb67d65e005ba00e77384c5" + }, + "recipe": { + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.614", + "deps": [] + }, + "avy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "avy", + "sha256": "17sa27vhyz642y3g6pjqjs03clqlblmbx2vinpmylga3anf5rrnw", + "rev": "9d18bf9fc247e7423b954d05cecdea2417dfc239" + }, + "recipe": { + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.445", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "marmalade": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "marmalade", + "sha256": "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl", + "rev": "2a4f07fbd4c17e08556c1a80c1753c37b3626d39" + }, + "recipe": { + "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151013.1212", + "deps": [ + "cl-lib" + ] + }, + "aurora-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xzerocode", + "repo": "aurora-theme", + "sha256": "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6", + "rev": "3cd8c3359b7b15148e5cea503f3d071e1ed7fc79" + }, + "recipe": { + "sha256": "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151015.1302", + "deps": [] + }, + "systemtap-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "systemtap-mode", + "sha256": "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd", + "rev": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9" + }, + "recipe": { + "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.1340", + "deps": [] + }, + "evil-dvorak": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jbranso", + "repo": "evil-dvorak", + "sha256": "0jbb0ln54p43rqyw188ggrc848v24mhwdj9xna16y4g41g00i105", + "rev": "c193913839e153b0f2c973fae5e6b1fe51809d2b" + }, + "recipe": { + "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110507.224", + "deps": [] + }, + "zop-to-char": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "zop-to-char", + "sha256": "1gqlxwvih7bhwvnjk7s0qff2dmnsjhiw522hd34jvx7z03s4bc7g", + "rev": "e1b4080286d7c905119eac745b8b7aaca2784844" + }, + "recipe": { + "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130306.1415", + "deps": [] + }, + "connection": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140717.2229", + "deps": [] + }, + "gmail-message-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "gmail-mode", + "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg", + "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" + }, + "recipe": { + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.2134", + "deps": [] + }, + "bug-reference-github": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "bug-reference-github", + "sha256": "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr", + "rev": "6f693e1f659d9a75abea3f23e95946c7f67138cd" + }, + "recipe": { + "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131202.1503", + "deps": [] + }, + "clojure-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "130s55mwzmi1almjajfl5bv3jra9ccafsiv240ls4agqkq2702vv", + "rev": "22b6709a651cc9c38a0c2a4c42df500ec3e46f1b" + }, + "recipe": { + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.636", + "deps": [ + "emacs" + ] + }, + "utop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "diml", + "repo": "utop", + "sha256": "034hn9rf6jh8kk07jdhvk03dlxm9v0asypjdhkkslgwfj3hp7yz2", + "rev": "e608977856005c7a3503afff7a2f6c3ca8a423c5" + }, + "recipe": { + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.447", + "deps": [ + "emacs" + ] + }, + "with-editor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" + }, + "recipe": { + "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.1541", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "evil-jumper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-jumper", + "sha256": "1y4jm800mam36vzh2lwc4j6l0856c4h6da1fivz4kkgf4gy79mq8", + "rev": "f1a4952c0e1cee793275d75e297351eaaf6bb1b2" + }, + "recipe": { + "sha256": "0zwsk7slzvcgvgh8fjrwangylishrwc1w0glxcr71sybxph2g46x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.1002", + "deps": [ + "cl-lib", + "evil" + ] + }, + "lingr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lugecy", + "repo": "lingr-el", + "sha256": "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40", + "rev": "4215a8704492d3c860097cbe2649936c22c196df" + }, + "recipe": { + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100807.1231", + "deps": [] + }, + "auto-complete-sage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "auto-complete-sage", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3", + "rev": "a61a4e58b14134712e0737280281c0b10e56da93" + }, + "recipe": { + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131226.1408", + "deps": [] + }, + "marcopolo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "marcopolo", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh", + "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" + }, + "recipe": { + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120531.1636", + "deps": [] + }, + "el-mock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "el-mock.el", + "sha256": "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm", + "rev": "5cb160b9bd2c9b909a2b64adcc9ec947da643c39" + }, + "recipe": { + "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150906.521", + "deps": [] + }, + "smart-newline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "smart-newline.el", + "sha256": "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg", + "rev": "f5f5ff033645aea0652aa375b034746754a38b1e" + }, + "recipe": { + "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131207.2140", + "deps": [] + }, + "fringe-current-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kyanagi", + "repo": "fringe-current-line", + "sha256": "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231", + "rev": "0ef000bac76abae30601222e6f06c7d133ab4942" + }, + "recipe": { + "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140110.2211", + "deps": [] + }, + "vertica": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "r0man", + "repo": "vertica-el", + "sha256": "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j", + "rev": "3c9647b425c5c13c30bf0cba483646af18196588" + }, + "recipe": { + "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131217.911", + "deps": [ + "sql" + ] + }, + "hydra": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "hydra", + "sha256": "0dp1ablyih2m3q5224xnkwxqm8pgblkdfcwls81r0qsaav7ag3fj", + "rev": "7f022f7f1a7833618c1bf4d38a4854d2bae06199" + }, + "recipe": { + "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151214.617", + "deps": [ + "cl-lib" + ] + }, + "xmlunicode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ndw", + "repo": "xmlunicode", + "sha256": "0y1n5xmz06var2m19nfw3q3b5mlqibd6h7dn35la3lb2s9s3b1bg", + "rev": "aecbdb50fcc4eee8a84fb37107bf3a69fb7a1e21" + }, + "recipe": { + "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.1113", + "deps": [] + }, + "pony-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidmiller", + "repo": "pony-mode", + "sha256": "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr", + "rev": "d319b0317bfbdac12d28cfd83abe31cc35f3cdd7" + }, + "recipe": { + "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150829.832", + "deps": [] + }, + "auto-shell-command": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "auto-shell-command", + "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6", + "rev": "59d4abce779a3ce3e920592bf5696b54b2e192c7" + }, + "recipe": { + "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150711.1723", + "deps": [ + "emacs" + ] + }, + "shelldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-shelldoc", + "sha256": "0i6xp6g3ggs4fkr410blxa4mkb1y05pcygkdbvb7y3gh878q5b5k", + "rev": "20eb889f3d3d9bd01aafdc699e712a75db42d8f3" + }, + "recipe": { + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150720.1255", + "deps": [ + "fringe-helper", + "groovy-mode" + ] + }, + "fullframe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "fullframe", + "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90", + "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" + }, + "recipe": { + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140619.505", + "deps": [ + "cl-lib" + ] + }, + "cperl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "cperl-mode", + "sha256": "02fl9y72prykh6qmxlnyn7fl27rqsk5kgcm4vdhj3i6fvl1iqdm6", + "rev": "06f5668653a114991836139344dbe8f0674577af" + }, + "recipe": { + "sha256": "0hkmpa0vg1miv8qqpnml4xblzvn9w4ba02fqp6qa2nnv554i7azp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140309.422", + "deps": [] + }, + "handlebars-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danielevans", + "repo": "handlebars-mode", + "sha256": "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p", + "rev": "81f6b73fea8f397807781a1b51568397af21a6ef" + }, + "recipe": { + "sha256": "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150211.1149", + "deps": [] + }, + "helm-git-grep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-git-grep", + "sha256": "1mp5gbda81szbx19rvaa6ybb28v64q49hqic8d478ggnjjsqhfyr", + "rev": "9e602f79ea58fe12c6a48ce3c2f749b817ef8c86" + }, + "recipe": { + "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150630.1635", + "deps": [] + }, + "wgrep-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130822.532", + "deps": [] + }, + "tabbar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dholm", + "repo": "tabbar", + "sha256": "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x", + "rev": "ad4c9c20cf9090a5ebf77a5150f2bf98bdb4bded" + }, + "recipe": { + "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141109.343", + "deps": [] + }, + "pretty-symbols": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "drothlis", + "repo": "pretty-symbols", + "sha256": "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830", + "rev": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956" + }, + "recipe": { + "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140814.459", + "deps": [] + }, + "comment-dwim-2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remyferre", + "repo": "comment-dwim-2", + "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps", + "rev": "8cedecde018b5872195bfead6511af822776a430" + }, + "recipe": { + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150825.1749", + "deps": [] + }, + "dom": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "toroidal-code", + "repo": "dom.el", + "sha256": "165d22qkkdxd8zsbln0991r5n7aklz92f2snf6d8578flkqvdmm2", + "rev": "19a3cadd02ef2cafc258b7ddb1f1609eec894ed6" + }, + "recipe": { + "sha256": "0cpd12vhshlk2v3w42n769gc0b3rsqc8wb7g84846v9r05ypinj2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150427.2214", + "deps": [] + }, + "pcsv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-pcsv", + "sha256": "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af", + "rev": "798e0933f8d0818beb17aebf3b1056bbf74e03d0" + }, + "recipe": { + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.531", + "deps": [] + }, + "projectile-speedbar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "anshulverma", + "repo": "projectile-speedbar", + "sha256": "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la", + "rev": "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16" + }, + "recipe": { + "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150629.1353", + "deps": [ + "projectile" + ] + }, + "helm-unicode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "helm-unicode", + "sha256": "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg", + "rev": "cf08fea1235fdc9f900efc0742b021ca33ef65aa" + }, + "recipe": { + "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150428.1354", + "deps": [ + "emacs", + "helm" + ] + }, + "base16-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkaito", + "repo": "base16-emacs", + "sha256": "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr", + "rev": "18693adea42ec2667534651c28c32934bc1bcec0" + }, + "recipe": { + "sha256": "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151019.911", + "deps": [] + }, + "xah-fly-keys": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-fly-keys", + "sha256": "0ayd26gmv4jw6dblq1x81hsb35hy65f2mx5nsbfrgdkh078vzsq7", + "rev": "668895c2f6014174b0e42539b9d2963ed71b401c" + }, + "recipe": { + "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.2256", + "deps": [] + }, + "chm-view": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/chm-view.el", + "sha256": "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8" + }, + "recipe": { + "sha256": "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110616.1219", + "deps": [] + }, + "company-quickhelp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "company-quickhelp", + "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl", + "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" + }, + "recipe": { + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150804.519", + "deps": [ + "company", + "emacs", + "pos-tip" + ] + }, + "fxrd-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "msherry", + "repo": "fxrd-mode", + "sha256": "1n2cvingj7li61k1ff4kmf2gf591fdkslvqsqk0lh71nz59c543j", + "rev": "e8c93535cc04083d3b63a1944770488984bc19ce" + }, + "recipe": { + "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1444", + "deps": [ + "s" + ] + }, + "gnus-desktop-notify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "gnus-desktop-notify", + "sha256": "0ylcphnf4lv78kiazdkl5izn7ql402fpvv82n7n1gpjiqq4ylalr", + "rev": "cbd5352d7cb5209a410db7f0faa60b4585f8647b" + }, + "recipe": { + "sha256": "0hf2dszk5d7vn80bm0msaqv7iji384n85dxgw8ng64c0f9f6752b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150703.854", + "deps": [ + "gnus" + ] + }, + "abyss-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "emacs-abyss-theme", + "sha256": "12cgjc01k3ivy02381py2g87n2wzwnv153favw2raw4gwl2sfwhs", + "rev": "7971da041f5fb608e32cdac9259b53c87013c04f" + }, + "recipe": { + "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151007.608", + "deps": [ + "emacs" + ] + }, + "js-comint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "js-comint", + "sha256": "0hh49j4ngnw7zkp31nm7bckkic3ya3xwzrsz4ksj2ws4fyjkqc9v", + "rev": "6eb9b2be4fc1c43d600ae9d4cfeacee40fba5c73" + }, + "recipe": { + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.2038", + "deps": [ + "nvm" + ] + }, + "orglue": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "orglue", + "sha256": "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6", + "rev": "4732f8bfd6866e20230b36e5971f2492827c6944" + }, + "recipe": { + "sha256": "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130427.1008", + "deps": [] + }, + "org-journal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "emacs-journal", + "sha256": "0j6c2ykcm0yscfx5fjnbx53x4jvjc7c0lsgidlnn3a2mwynrc234", + "rev": "f67e147d864ec05f08f757725c8a97cb8d8a3fd1" + }, + "recipe": { + "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150910.949", + "deps": [] + }, + "selectric-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rbanffy", + "repo": "selectric-mode", + "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79", + "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" + }, + "recipe": { + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.918", + "deps": [] + }, + "circe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz", + "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" + }, + "recipe": { + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151207.344", + "deps": [ + "cl-lib" + ] + }, + "blgrep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ataka", + "repo": "blgrep", + "sha256": "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0", + "rev": "605beda210610a5829750a987f5fcebea97af546" + }, + "recipe": { + "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150401.916", + "deps": [ + "clmemo" + ] + }, + "sublime-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "owainlewis", + "repo": "emacs-color-themes", + "sha256": "0gnxc9i544g6202s205jkjsfyzbybiqsdaxmfxcwj8la7ga6h2bf", + "rev": "88315505322f285ff56272a6cd5f20af8eff2ef0" + }, + "recipe": { + "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150915.203", + "deps": [] + }, + "evm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "evm.el", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb", + "rev": "d0623b2355436a5fd9f7238b419782080c79196b" + }, + "recipe": { + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141007.656", + "deps": [ + "dash", + "f" + ] + }, + "snakemake-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "snakemake-mode", + "sha256": "18n4r3nqslvlzambraf70s5qgbdljy0qlfhpghilp1nvh327fmv5", + "rev": "3c6ed16930c0c18c4f5fddbe181ba407df681a07" + }, + "recipe": { + "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.37", + "deps": [ + "emacs" + ] + }, + "nameless": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "Nameless", + "sha256": "13v0v90vrc2w0wi7wmzmpql6yjbr6lpzh29kxggq9fy38lahd3ks", + "rev": "a3dfd7ecf9c58898241c8d1145eb8e0c875f5448" + }, + "recipe": { + "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151014.639", + "deps": [ + "emacs" + ] + }, + "epresent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "epresent", + "sha256": "1a8gzf7abda0zgcllyl351m47avnf995i9lvwjf05nyx2jb31dnw", + "rev": "c185826a464f780467dff240fd63ec385bd1d9c2" + }, + "recipe": { + "sha256": "1x16wqfjfrh7kaqar5px61bf3lnlibvcbr5xaf3mcgph37sgi6la", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150324.810", + "deps": [] + }, + "truthy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "truthy", + "sha256": "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm", + "rev": "8ed8d07772aa8457554547eb17e264b5df2b4a69" + }, + "recipe": { + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [ + "list-utils" + ] + }, + "php-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "php-mode", + "sha256": "0206jv7rz9gm016lpfdwh2l0z6da25szc6hfxgcz2qvkzjpvrlr6", + "rev": "9b1e7736ce014f26f40635af3c781127a5e32dfa" + }, + "recipe": { + "sha256": "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151002.2230", + "deps": [] + }, + "helm-bibtexkey": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kenbeese", + "repo": "helm-bibtexkey", + "sha256": "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9", + "rev": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f" + }, + "recipe": { + "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140214.904", + "deps": [ + "helm" + ] + }, + "sotlisp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-lisp", + "sha256": "027jmqx4240hym2is9q1iyjdws9ijyyck8dnsbm9xc5lhpsdrl69", + "rev": "d5d5ae44e6a31e231024cc7ad9861aa451165413" + }, + "recipe": { + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.934", + "deps": [ + "emacs" + ] + }, + "helm-spaces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-spaces", + "sha256": "0sw7g1zcs1jfqcpprxwjq97lsk4qfngwamkj3q8jhm77zh7kfa3b", + "rev": "7545fed3880effe079bb27bfbf22e902ac0bc828" + }, + "recipe": { + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130605.1100", + "deps": [ + "helm", + "spaces" + ] + }, + "logito": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "logito", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr", + "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" + }, + "recipe": { + "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120225.1455", + "deps": [ + "eieio" + ] + }, + "slack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuya373", + "repo": "emacs-slack", + "sha256": "1qczdpklkb1ayyy71d40xi3iw276kpns4p3ml30sykva4y995khl", + "rev": "feaf6beae109e3dd9c8828cda2024eba69fad936" + }, + "recipe": { + "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.532", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130607.2149", + "deps": [] + }, + "programmer-dvorak": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yangchenyun", + "repo": "programmer-dvorak", + "sha256": "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00", + "rev": "3288a8f058eca4cab390a564babbbcb17cfa0350" + }, + "recipe": { + "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150426.2037", + "deps": [] + }, + "gold-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "gold-mode-el", + "sha256": "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q", + "rev": "6d3aa59602b1b835495271c8c9741ac344c2eab1" + }, + "recipe": { + "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20080329.2159", + "deps": [] + }, + "electric-operator": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "electric-operator", + "sha256": "15k9jc8c7d1wq8lrmdpdk52a7krla0irb2anbllz7kmdj1cp6311", + "rev": "42be5a7e1e98ce879e93d87472de7b37434a5868" + }, + "recipe": { + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120515.1148", + "deps": [] + }, + "owdriver": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "owdriver", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk", + "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" + }, + "recipe": { + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150602.2004", + "deps": [ + "dash", + "emacs" + ] + }, + "visible-mark": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "iankelling", + "repo": "visible-mark", + "sha256": "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv", + "rev": "c1852e13b6b61982738b56977a452ec9026faf1b" + }, + "recipe": { + "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151029.918", + "deps": [] + }, + "spotify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "spotify-el", + "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw", + "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" + }, + "recipe": { + "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150108.1003", + "deps": [] + }, + "vi-tilde-fringe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "vi-tilde-fringe", + "sha256": "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z", + "rev": "f1597a8d54535bb1d84b442577b2024e6f910308" + }, + "recipe": { + "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141027.2142", + "deps": [ + "emacs" + ] + }, + "babel-repl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hung-phan", + "repo": "babel-repl", + "sha256": "19sj3kw8kyv1bmagf2mw27yxmajf4k2abzmb6pc5rlhhhjq0xam1", + "rev": "be3ec68b36f4dea88aa5705d9ac230b74afcd77e" + }, + "recipe": { + "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150712.1000", + "deps": [ + "emacs" + ] + }, + "spotlight": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "benmaughan", + "repo": "spotlight.el", + "sha256": "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8", + "rev": "ab902900f22e7d1ea2dd8169441d2da7155aaa68" + }, + "recipe": { + "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131010.2258", + "deps": [] + }, + "shadchen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "VincentToups", + "repo": "shadchen-el", + "sha256": "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8", + "rev": "35f2b9c304eec990c16efbd557198289dc7cbb1f" + }, + "recipe": { + "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141102.1239", + "deps": [] + }, + "mustache-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mustache", + "repo": "emacs", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk", + "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" + }, + "recipe": { + "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.932", + "deps": [] + }, + "persistent-soft": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "persistent-soft", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc", + "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" + }, + "recipe": { + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150223.1253", + "deps": [ + "list-utils", + "pcache" + ] + }, + "prosjekt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.816", + "deps": [ + "dash" + ] + }, + "chef-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mpasternacki", + "repo": "chef-mode", + "sha256": "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa", + "rev": "c333dd3f9229c4f35fe8c4495b21049ba730cc42" + }, + "recipe": { + "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20111121.900", + "deps": [] + }, + "simplenote": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dotemacs", + "repo": "simplenote.el", + "sha256": "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9", + "rev": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078" + }, + "recipe": { + "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141118.840", + "deps": [] + }, + "key-combo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "key-combo", + "sha256": "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf", + "rev": "2e220fe3a91c944ce30c4c0297f99d0053b95754" + }, + "recipe": { + "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150324.939", + "deps": [] + }, + "white-sand-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "white-sand-theme", + "sha256": "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn", + "rev": "97621edd69267dd143760d94393db2c2558c9ea4" + }, + "recipe": { + "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150726.159", + "deps": [] + }, + "magit-filenotify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-filenotify", + "sha256": "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r", + "rev": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4" + }, + "recipe": { + "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.1740", + "deps": [ + "emacs", + "magit" + ] + }, + "xterm-color": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "xterm-color", + "sha256": "064fpjcj1sp8m5x106dw6zgy0p0rfd5fxcx57h533q263l7z00ny", + "rev": "1bc4ddb0e1bf7562cbf4b6b3bdd2ce3f9b596b39" + }, + "recipe": { + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150823.846", + "deps": [] + }, + "cp5022x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "awasira", + "repo": "cp5022x.el", + "sha256": "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz", + "rev": "ea7327dd75e54539576916f592ae1be98179ae35" + }, + "recipe": { + "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120323.1835", + "deps": [] + }, + "sqlite": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cnngimenez", + "repo": "sqlite.el", + "sha256": "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d", + "rev": "9a7fb5836a19bc0ea8b4c5a50177112524380986" + }, + "recipe": { + "sha256": "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150417.15", + "deps": [] + }, + "phpunit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "phpunit.el", + "sha256": "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6", + "rev": "1ea2aa7901b5d0b1878d6e104ca92de2bbd7313f" + }, + "recipe": { + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20101125.1355", + "deps": [] + }, + "org-gcal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-gcal.el", + "sha256": "1fg5qd1jswbdykx2aghpv79y5fccxcrwhwm81cnfh8s4fsq5nyfi", + "rev": "d9e04635ad692a02073947cc290c3c36a56c89f0" + }, + "recipe": { + "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.348", + "deps": [] + }, + "helm-rubygems-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "neomantic", + "repo": "helm-rubygems-org", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0", + "rev": "6aaed984f698cbdf9f9aceb0221404563e28764d" + }, + "recipe": { + "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140826.656", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "ag": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ag.el", + "sha256": "03157dyw4in7hazw2glc9dz9509097s76x8g79w9cr9cyjwax42p", + "rev": "4894b38feffc4c044f8cbaabf3033f49084dba2c" + }, + "recipe": { + "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1805", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "smartscan": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "smart-scan", + "sha256": "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p", + "rev": "5fd584d29ff8e5cd7a9e689369756868ab2922d3" + }, + "recipe": { + "sha256": "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131230.939", + "deps": [] + }, + "propfont-mixed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ikirill", + "repo": "propfont-mixed", + "sha256": "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v", + "rev": "0b461ef4754a469610dba71874a34b6da42176bf" + }, + "recipe": { + "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150113.1611", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "jenkins": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "jenkins.el", + "sha256": "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs", + "rev": "5ae8759d4799789337df0fd5e0e7d6f732f59b79" + }, + "recipe": { + "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151114.2108", + "deps": [ + "dash", + "emacs", + "json" + ] + }, + "el-init": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init", + "sha256": "140afbksvm1kvam7pyaibay8rqhfhmb22rrh39mvdnqskqfnlqgr", + "rev": "a23cc95dd67fe63e131da211caa48eae804b11c5" + }, + "recipe": { + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150424.904", + "deps": [] + }, + "alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "alert", + "sha256": "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z", + "rev": "dfb003476aeb26d08782c17257f3a81934bcf6ce" + }, + "recipe": { + "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.959", + "deps": [ + "gntp", + "log4e" + ] + }, + "slime-ritz": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pallet", + "repo": "ritz", + "sha256": "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz", + "rev": "4003fdaa5657d4ed1eeb0e244c46658cbb981667" + }, + "recipe": { + "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130218.1737", + "deps": [] + }, + "buffer-flip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "buffer-flip.el", + "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz", + "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" + }, + "recipe": { + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150712.621", + "deps": [] + }, + "company-dcd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tsukimizake", + "repo": "company-dcd", + "sha256": "0qbis9jqcrgj71cf8i9yfxsm7yj6d546gxw6linqd7slqn97l8rl", + "rev": "1d121dc42906fc58fa3a7febff8dabd29fba34f2" + }, + "recipe": { + "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151012.442", + "deps": [ + "emacs" + ] + }, + "bert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "manzyuk", + "repo": "bert-el", + "sha256": "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf", + "rev": "a3eec6980a725aa4abd2019e4c00246450260490" + }, + "recipe": { + "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.414", + "deps": [] + }, + "tern-django": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "tern-django", + "sha256": "1yb416py93sxnkfnfnbwrlfg68gkp97wpfsrdpc83sai888p44wc", + "rev": "455326a1732daa58d4d963b0b11bb1a9fd2f2b86" + }, + "recipe": { + "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100504.350", + "deps": [] + }, + "pager": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "pager", + "sha256": "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851", + "rev": "347e48d150d5e9a1ce2ca33ec12924d5fa89264d" + }, + "recipe": { + "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100330.1331", + "deps": [] + }, + "ido-ubiquitous": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" + }, + "recipe": { + "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1036", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151107.1418", + "deps": [] + }, + "vagrant": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ottbot", + "repo": "vagrant.el", + "sha256": "04r73s3fhvdcryv0l57awkpg1hi3kg6zcqxbxb03jc89h0f9vdlh", + "rev": "dabf69b7146f8a035bba15285b1fafc1e9ef4b3c" + }, + "recipe": { + "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141125.2159", + "deps": [] + }, + "tramp-term": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "randymorris", + "repo": "tramp-term.el", + "sha256": "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip", + "rev": "983ed67ee65d26a51c641f306fa6b921ec83eeaf" + }, + "recipe": { + "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141104.1545", + "deps": [] + }, + "windsize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "grammati", + "repo": "windsize", + "sha256": "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121", + "rev": "beb6376fdf52afa6f220c89032448460faf76e7f" + }, + "recipe": { + "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.740", + "deps": [] + }, + "unbound": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/unbound.el", + "sha256": "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06" + }, + "recipe": { + "sha256": "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140307.328", + "deps": [] + }, + "uuidgen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kanru", + "repo": "uuidgen-el", + "sha256": "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw", + "rev": "7eb96415484c3854a3f383d1a3e10b87ae674e22" + }, + "recipe": { + "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140918.1801", + "deps": [] + }, + "anti-zenburn-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "anti-zenburn-theme", + "sha256": "0p4jg397iqriahqm7ssr8zsmqnwh0wrwl9bxkhwh8fzkd2rvxci0", + "rev": "7e107cd0b77e4212a6c330600e8eb83a72d7defe" + }, + "recipe": { + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.1613", + "deps": [] + }, + "sws-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506", + "rev": "0d0bbf60730d0e33c6362e1fceeaf0e133b1ceeb" + }, + "recipe": { + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150317.1445", + "deps": [] + }, + "impatient-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "netguy204", + "repo": "imp.el", + "sha256": "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj", + "rev": "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0" + }, + "recipe": { + "sha256": "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150121.1037", + "deps": [ + "projectile" + ] + }, + "lentic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic", + "sha256": "0r5mngz8jsgx1z0dyvm93pimsh63wg18bisvk11d9mq7c1whyc4v", + "rev": "02073c4f1c376c99511e0e637a15ed0da18405a8" + }, + "recipe": { + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.314", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150412.1300", + "deps": [] + }, + "ubuntu-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "ubuntu-theme", + "sha256": "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc", + "rev": "88b0eefc75d4cbcde103057e1c5968d4c3052f69" + }, + "recipe": { + "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150805.1006", + "deps": [] + }, + "lfe-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rvirding", + "repo": "lfe", + "sha256": "14rkvxyyxsr80bcymvwxvnyvk9mminvxsy5yg1gqvw9aif0y8ia4", + "rev": "64dec553ac6fcee72cb61f7e0f6f317690a73c1f" + }, + "recipe": { + "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131029.133", + "deps": [] + }, + "ascii": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/ascii.el", + "sha256": "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75" + }, + "recipe": { + "sha256": "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "flycheck-d-unittest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-d-unittest", + "sha256": "1r71alxbxwcrdf3r5rg7f0bdwh0ylvayp5g97i9biyxdg59az4ad", + "rev": "f2255abf6a5cd9268b1576d9b46356f8151a7311" + }, + "recipe": { + "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150709.109", + "deps": [ + "dash", + "flycheck" + ] + }, + "crontab-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "crontab-mode", + "sha256": "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d", + "rev": "68341c82b26462a6af4a5e2b624b1c2165243b8e" + }, + "recipe": { + "sha256": "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140810.8", + "deps": [] + }, + "keymap-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keymap-utils", + "sha256": "18kc48glbwy9njw863fzlrgc4g0a65s5wf2iarfsjqcynad7r4c7", + "rev": "f9164e23dbc58c4fdce635138ed59fe2eb285313" + }, + "recipe": { + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141107.1717", + "deps": [ + "emacs" + ] + }, + "spray": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ian-kelling", + "repo": "spray", + "sha256": "0fvywcwn0zd06yy4b6cxpasiwfbps17jz9dy3jr0y0mdx5lzfxa9", + "rev": "11623f45955a18115459a2c18dc95bc967980a53" + }, + "recipe": { + "sha256": "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150626.145", + "deps": [] + }, + "xcscope": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dkogan", + "repo": "xcscope.el", + "sha256": "1wf6yijafqwcksrqci3d8zy3zh5yzqpfbf0d3m7qyslbax2aw25a", + "rev": "d845a033058ccb83e32dd9648885e8f608bb6258" + }, + "recipe": { + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140510.1637", + "deps": [] + }, + "helm-mu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-mu", + "sha256": "0x523ic0bi40iplp2lbiyvy6yw6mrbgj9cfah71a47rwcm0fvhjk", + "rev": "2ae4b26817f13760e6d9e739477e2512292d90d5" + }, + "recipe": { + "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151019.1144", + "deps": [ + "helm" + ] + }, + "org-cliplink": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rexim", + "repo": "org-cliplink", + "sha256": "1fwnsyl6lq43bvdh4fldsb8224y1dasavkjdlg0fw1libqjp8w6i", + "rev": "401d378e6324334d8b6ac4d28c86182848cd8c26" + }, + "recipe": { + "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1455", + "deps": [] + }, + "flymake-cppcheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-cppcheck", + "sha256": "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m", + "rev": "9554f504d425a04fa6a875f7e3179bc7cf07dd03" + }, + "recipe": { + "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140415.757", + "deps": [ + "flymake-easy" + ] + }, + "weechat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "the-kenny", + "repo": "weechat.el", + "sha256": "03xsh3fc7if6rkdp2s8lmrzpqm3pjakgqi3faap44y9i84q6mc6k", + "rev": "a191b4c52e2cca33acfdd82145da42fb2798b185" + }, + "recipe": { + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.1339", + "deps": [] + }, + "ample-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "ample-theme", + "sha256": "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw", + "rev": "8259da1cc14e7f7dd3ee0fb01245c58110a95382" + }, + "recipe": { + "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150814.1301", + "deps": [] + }, + "ob-restclient": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alf", + "repo": "ob-restclient.el", + "sha256": "0gd2n7dgaasl0clx71gsdm74xxm03qr5yrin8vz3q7wvkfn4bzdf", + "rev": "fc5684186275146bba667325c8c33bf7d6011552" + }, + "recipe": { + "sha256": "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151207.1503", + "deps": [] + }, + "cmake-font-lock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "cmake-font-lock", + "sha256": "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf", + "rev": "982b753e0228bb5189e3bf2283afad9197d93c37" + }, + "recipe": { + "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1604", + "deps": [] + }, + "vala-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "vala-snippets", + "sha256": "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq", + "rev": "671439501060449bd100b9fffd524a86064fbfbb" + }, + "recipe": { + "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150428.2252", + "deps": [ + "yasnippet" + ] + }, + "plenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "karupanerura", + "repo": "plenv.el", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g", + "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" + }, + "recipe": { + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130707.116", + "deps": [] + }, + "random-splash-image": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kakakaya", + "repo": "random-splash-image", + "sha256": "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll", + "rev": "907e2db5ceff781ac7f4dbdd65fe71736c36aa22" + }, + "recipe": { + "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151002.2030", + "deps": [] + }, + "typescript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ananthakumaran", + "repo": "typescript.el", + "sha256": "16y1r8080scjanbd95hpgk9lp8xqy8cxwkk9xij53jiqfglcwi5c", + "rev": "49241bcc1f60b3787ccd9448a559f792156907a9" + }, + "recipe": { + "sha256": "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150830.2028", + "deps": [] + }, + "git-gutter+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-plus", + "sha256": "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q", + "rev": "b7726997806d9a2da9fe84ff00ecf21d62b6f975" + }, + "recipe": { + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140117.120", + "deps": [ + "dash" + ] + }, + "flymake-gjshint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "flymake-gjshint-el", + "sha256": "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24", + "rev": "dc957c14cb060819585de8aedb330e24efa4b784" + }, + "recipe": { + "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130327.732", + "deps": [] + }, + "smotitah": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "smotitah", + "sha256": "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx", + "rev": "f9ab562128a5460549d016913533778e8c94bcf3" + }, + "recipe": { + "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150218.430", + "deps": [] + }, + "org-dotemacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "org-dotemacs", + "sha256": "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7", + "rev": "99a066508fedf8c80a3bfef08e015e612499d417" + }, + "recipe": { + "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121227.1702", + "deps": [] + }, + "pangu-spacing": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "pangu-spacing", + "sha256": "01zc2cvkyfx80snwrm3cs8cbwgxmd56rgvvbsyq53r4q3zhdk1li", + "rev": "4662e66d5cb72738d46d3296ac7626536fc88acb" + }, + "recipe": { + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150927.224", + "deps": [] + }, + "protobuf-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "protobuf", + "sha256": "04j0i9glv0g6k59gjdpdpnlq44h2b958md8vr2mh4qsbhm89nbk3", + "rev": "b27f2893b2a118b4e3bfcd23d32114dbdd4e6d9b" + }, + "recipe": { + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150521.2211", + "deps": [] + }, + "metaweblog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "metaweblog.el", + "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4", + "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" + }, + "recipe": { + "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141130.805", + "deps": [ + "xml-rpc" + ] + }, + "imenus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "imenus.el", + "sha256": "0wi346m05b18i14xxih4qvwdrfcgv30gdvxjjcn6vd7gr0wdk2ns", + "rev": "a153eadef49bcc0a2dd5d045c0e003fdfd8c13cd" + }, + "recipe": { + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150107.1139", + "deps": [ + "cl-lib" + ] + }, + "systemd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "systemd-mode", + "sha256": "0f0xwsizi34pbpy48r70sdqk5692c0ds11amscafj0lyw3lza93j", + "rev": "26de1dd6f4505eb9db606d97c11b0d120c395d76" + }, + "recipe": { + "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.2332", + "deps": [ + "emacs" + ] + }, + "sourcegraph": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sourcegraph", + "repo": "emacs-sourcegraph-mode", + "sha256": "18iv7jhy08smpdksplngj1mxcm2mm9gvbylimgr3211l8jr9gq8r", + "rev": "554c55734c23588fce66a8fa966945509b03d395" + }, + "recipe": { + "sha256": "0rl6s1d0y2pggbfiq4f4xg9qp7nhkd708himzilfqyfa4jwna8yz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150403.2127", + "deps": [ + "emacs" + ] + }, + "wordnut": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "wordnut", + "sha256": "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj", + "rev": "3e0184a8a1cc118a985f1cbd0b6d5b7417987169" + }, + "recipe": { + "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.1335", + "deps": [] + }, + "nav": { + "fetch": { + "tag": "fetchhg", + "url": "https://code.google.com/p/emacs-nav/", + "sha256": "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p", + "rev": "d7f54ce8536e" + }, + "recipe": { + "sha256": "036lf6iirxamlqzq3w6m0hji36l480yx5c9wnwypms85hi8hq0vl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120507.207", + "deps": [] + }, + "seclusion-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dleslie", + "repo": "seclusion-mode", + "sha256": "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239", + "rev": "9634e76c52bfb7200ff0f9f01404f743429e9ef0" + }, + "recipe": { + "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121118.1753", + "deps": [] + }, + "auto-highlight-symbol": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gennad", + "repo": "auto-highlight-symbol", + "sha256": "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c", + "rev": "26573de912d760e04321b350897aea70958cee8b" + }, + "recipe": { + "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151011.345", + "deps": [] + }, + "flycheck-clangcheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kumar8600", + "repo": "flycheck-clangcheck", + "sha256": "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck", + "rev": "24a9424c484420073a24443a829fd5779752362b" + }, + "recipe": { + "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150129.1516", + "deps": [] + }, + "helm-rb": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "helm-rb", + "sha256": "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid", + "rev": "4949d646420a9849af234dacdd8eb34a77c662fd" + }, + "recipe": { + "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130705.250", + "deps": [] + }, + "w3m": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "w3m", + "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs", + "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" + }, + "recipe": { + "sha256": "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130130.1550", + "deps": [] + }, + "pydoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "statmobile", + "repo": "pydoc", + "sha256": "1q9fmdrnsqmisykndxzy9bvjl6n1rsmfgvh3h8fkg6b44ypcyyw7", + "rev": "74fb1a66e9d81661ddd371a03e916ea5e0b01dc8" + }, + "recipe": { + "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150525.2045", + "deps": [] + }, + "ov": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "ov.el", + "sha256": "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2", + "rev": "fae7215b3dedba2a9ced145284332e4609bfdc38" + }, + "recipe": { + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120205.507", + "deps": [] + }, + "ibuffer-vc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-vc", + "sha256": "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp", + "rev": "daae8b8cec4b8e572b065e00c8c8a368fd0a8b8b" + }, + "recipe": { + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150714.1520", + "deps": [ + "cl-lib" + ] + }, + "kanji-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wsgac", + "repo": "kanji-mode", + "sha256": "0vfagfzhh4rkmvjzfhfcm7w3z1x31aqzxwigk5yw9scnfb77pinz", + "rev": "3caaee58f00f69a8c9ee2491b8a2050add9df962" + }, + "recipe": { + "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.225", + "deps": [] + }, + "dired-dups": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "dired-dups", + "sha256": "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni", + "rev": "694ad128c822c59348ced16c4a0c1356d43da47a" + }, + "recipe": { + "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130527.1625", + "deps": [] + }, + "edebug-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ScottyB", + "repo": "edebug-x", + "sha256": "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2", + "rev": "a2c2c42553d3bcbd5ac11898554865acbed1bc46" + }, + "recipe": { + "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130616.125", + "deps": [] + }, + "servant": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "servant.el", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d", + "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" + }, + "recipe": { + "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.2006", + "deps": [ + "moz" + ] + }, + "bitlbee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "elisp", + "sha256": "1cnx5kr0hah4h4b6arp7hb2i556vpx1dwmziny2csil39hkcjgbs", + "rev": "5eafcd3ff0725b5826d1e01bfe4c7ed01563b75e" + }, + "recipe": { + "sha256": "15xb0vjamnfwi25yqd37zwfm6xb6p71if88hk2ymxikza4i47x0f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130328.1218", + "deps": [] + }, + "dired-efap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "dired-efap", + "sha256": "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv", + "rev": "624757b2e54d9a13e2183118d6c113e37684b90c" + }, + "recipe": { + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140122.1056", + "deps": [] + }, + "form-feed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "form-feed", + "sha256": "0ymj89bha77fwb64wrkgyaxp61k03kvdhp98c4l3vljmfm5hmsbl", + "rev": "ba1fb2be4b509e98ba7a368176bb13e4a3bb4720" + }, + "recipe": { + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150926.756", + "deps": [] + }, + "auto-complete-nxml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "auto-complete-nxml", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y", + "rev": "ac7b09a23e45f9bd02affb31847263de4180163a" + }, + "recipe": { + "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130130.1551", + "deps": [] + }, + "ws-butler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "ws-butler", + "sha256": "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152", + "rev": "a998a23ee8713808ac1fe3d1523ea1861be4da57" + }, + "recipe": { + "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150126.959", + "deps": [] + }, + "nsis-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "nsis-mode", + "sha256": "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp", + "rev": "5ea767c326bbe180e42be723605c0b03b16fdb06" + }, + "recipe": { + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.746", + "deps": [] + }, + "cucumber-goto-step": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gstamp", + "repo": "cucumber-goto-step", + "sha256": "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx", + "rev": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa" + }, + "recipe": { + "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131209.2319", + "deps": [ + "pcre2el" + ] + }, + "strie": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hackscience", + "repo": "strie.el", + "sha256": "1xgsdr75p52vg34s1gm16ffkr3s7gdsln56xjxpdirnwr78glbmw", + "rev": "066e72c39ed51162d7d7892c7451a6cac28581b7" + }, + "recipe": { + "sha256": "0i1bgjlwcc2ks8hzjkyrw924q4k8pcz8335z9935m73js0sq0lxl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140109.812", + "deps": [] + }, + "punctuality-logger": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "punctuality-logger", + "sha256": "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q", + "rev": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0" + }, + "recipe": { + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141120.1431", + "deps": [] + }, + "obsidian-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "obsidian-theme", + "sha256": "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1", + "rev": "0f92ce87245529d5c75d6e5f7862ebbc54bdbc92" + }, + "recipe": { + "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140420.1143", + "deps": [] + }, + "firecode-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-firecode-theme", + "sha256": "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm", + "rev": "73573192e5e9d14d94dfc5131dd2b7a780b89626" + }, + "recipe": { + "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150511.519", + "deps": [] + }, + "snapshot-timemachine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrBliss", + "repo": "snapshot-timemachine", + "sha256": "17nbm8692ihrlcikihspdqg8wvp80ryq4h06da34d0awqm0w027m", + "rev": "5c1e29fc771ffc65180faa1366c85aa50a335773" + }, + "recipe": { + "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150501.1300", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "python-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "python-x.el", + "sha256": "0ky23irh8zdkssgzhsyas37118vjc7w50rlc5a2414d2mmgnp70m", + "rev": "d241015775e34f5ef7844abc067ea68b88f0b548" + }, + "recipe": { + "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1926", + "deps": [ + "cl-lib", + "folding", + "python" + ] + }, + "el-spec": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "uk-ar", + "repo": "el-spec", + "sha256": "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az", + "rev": "1dbc465401d4aea5560318c4f13ff30920a0718d" + }, + "recipe": { + "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121018.204", + "deps": [] + }, + "slime-annot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arielnetworks", + "repo": "cl-annot", + "sha256": "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n", + "rev": "c99e69c15d935eabc671b483349a406e0da9518d" + }, + "recipe": { + "sha256": "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.218", + "deps": [ + "ruby-mode" + ] + }, + "font-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "font-utils", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055", + "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" + }, + "recipe": { + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150402.1922", + "deps": [] + }, + "yatex": { + "fetch": { + "tag": "fetchhg", + "url": "https://www.yatex.org/hgrepos/yatex/", + "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6", + "rev": "5b49aea3810d" + }, + "recipe": { + "sha256": "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151014.2228", + "deps": [] + }, + "phi-autopair": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-autopair", + "sha256": "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5", + "rev": "ec4e02f3b1602a6450ece118c79d4beb2430ff08" + }, + "recipe": { + "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090208.2238", + "deps": [] + }, + "navi2ch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "naota", + "repo": "navi2ch", + "sha256": "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m", + "rev": "faebfd15184de9df6903eae436dafb52c38ee86e" + }, + "recipe": { + "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150329.2116", + "deps": [] + }, + "smartwin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jerryxgh", + "repo": "smartwin", + "sha256": "1fyv0j641iyhnkdf8wmg6d35gv0678w26kdgx61phwa3kgcc156l", + "rev": "bff875daca9509ef323e4ed846b9b4fdbf7b0d95" + }, + "recipe": { + "sha256": "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.611", + "deps": [ + "emacs" + ] + }, + "dired-filetype-face": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "dired-filetype-face", + "sha256": "0v6n4ymlnphzmqaqlfbxvf24dh1pa0xy37xhz9xfjkk02l02wsgf", + "rev": "c51bb2d5fba8964b86e63242c247c4688441b9db" + }, + "recipe": { + "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.2057", + "deps": [] + }, + "pandoc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "pandoc-mode", + "sha256": "0aj509yjqgq8bxrvdq5x3d1sfj0dgwwh6kg7f20vapz9qxjdjvdg", + "rev": "23444375a60f44b3439994e969d8aa7acf220f8c" + }, + "recipe": { + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151108.116", + "deps": [] + }, + "elx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "elx", + "sha256": "1mchc4d61li5gfsf05dwhgb694fjj9hljnbvwvc12c1iik0zavq0", + "rev": "a8dff14f0626f729e745092dd88a1801c6239710" + }, + "recipe": { + "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.639", + "deps": [ + "emacs" + ] + }, + "bibslurp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "bibslurp", + "sha256": "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823", + "rev": "aeba96368f2a06959e4fe945375ce2a54d34b189" + }, + "recipe": { + "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.1746", + "deps": [ + "dash", + "s" + ] + }, + "ensime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "ensime-emacs", + "sha256": "0p6fdph08332c82vv8ds2h6ghxjb1kird84ykblkx41f748hw2y2", + "rev": "f590c350695e3efbe3a3197bb4ad7e6a3174f77c" + }, + "recipe": { + "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.620", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.610", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "hackernews": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clarete", + "repo": "hackernews.el", + "sha256": "15d7zjxjp9h8jmxq3dqakwzlymqk6hqsg7zklkjs0ih7fz0d25pl", + "rev": "676d72da9fa4743dae34da95138fd022a51fbfdd" + }, + "recipe": { + "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150901.1017", + "deps": [ + "json" + ] + }, + "powerline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "powerline", + "sha256": "0dq7fqlv72p72hbshzbwz5k40mqfdw10v9hsd1m18s2rf7082570", + "rev": "e886f6fe46c7413befb1de3799a185366fd8b39c" + }, + "recipe": { + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151008.1649", + "deps": [ + "cl-lib" + ] + }, + "helm-sage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "helm-sage", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl", + "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" + }, + "recipe": { + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140630.947", + "deps": [] + }, + "flymake-perlcritic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "illusori", + "repo": "emacs-flymake-perlcritic", + "sha256": "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj", + "rev": "edfaa86500ddfa8a6a6f51f5581a81a821277df6" + }, + "recipe": { + "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "oneonone": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/oneonone.el", + "sha256": "1810acc61dwdq80jwn5diwg9djzag3n1l9lql72bjkq21my320k5" + }, + "recipe": { + "sha256": "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150821.1428", + "deps": [ + "hexrgb" + ] + }, + "emamux": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-emamux", + "sha256": "1x88blaf7f1nwqm20jlcx4xh9almz0570dck87qf27lljrbfikpn", + "rev": "1bb88275e472e131c4c14590b48e2016861724a5" + }, + "recipe": { + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.2302", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "itail": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "re5et", + "repo": "itail", + "sha256": "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9", + "rev": "ff80d0456a0039062de1cf73932a5a32d46821b1" + }, + "recipe": { + "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151113.1035", + "deps": [] + }, + "rings": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "konr", + "repo": "rings", + "sha256": "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp", + "rev": "1655dbf88ad877f54d67fab49f292945f70708eb" + }, + "recipe": { + "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150825.327", + "deps": [] + }, + "ggtags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "ggtags", + "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n", + "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" + }, + "recipe": { + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140307.1044", + "deps": [] + }, + "ac-cake2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake2", + "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv", + "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" + }, + "recipe": { + "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140320.208", + "deps": [ + "auto-complete", + "cake2" + ] + }, + "elog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "elog", + "sha256": "19yvhyg34w1idsh712cahmcy1pzbxcipw9j6xk567lvkqkinqg7s", + "rev": "03c275877301c72fbc61d5fdd72efe5fdc0b6e98" + }, + "recipe": { + "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.1937", + "deps": [ + "eieio" + ] + }, + "cfengine-code-style": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cfengine", + "repo": "core", + "sha256": "176s48z9zm8xl1dm891kzky0f6c0ammsn1kk9vps9i7cig8j4aar", + "rev": "6929de02ae1084c20f89ade7f2653ee8860baee0" + }, + "recipe": { + "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131209.611", + "deps": [] + }, + "rpm-spec-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bjorlykke", + "repo": "rpm-spec-mode", + "sha256": "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv", + "rev": "7d06d19a31e888b932da6c8202ff2c73f42703a1" + }, + "recipe": { + "sha256": "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150411.1055", + "deps": [] + }, + "jscs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "papaeye", + "repo": "emacs-jscs", + "sha256": "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy", + "rev": "9d39d0f2355e69a020bf76242504f3a33e013ccf" + }, + "recipe": { + "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.803", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "corral": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nivekuil", + "repo": "corral", + "sha256": "1q9jxg9khvjm7lqjhgfhdnb9j9620bq1k5b2cj74q8k4paa6kyyw", + "rev": "9a5ab7f293a23a4fec77ab4fb442d69ecfcc293f" + }, + "recipe": { + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.1226", + "deps": [] + }, + "cacoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-cacoo", + "sha256": "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx", + "rev": "c9fa04fbe97639b24698709530361c2bb5f3273c" + }, + "recipe": { + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120319.1859", + "deps": [ + "concurrent" + ] + }, + "widget-mvc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-widget-mvc", + "sha256": "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz", + "rev": "a3fd2d2abc29a1b53aeaae8b267d0718740fb783" + }, + "recipe": { + "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150101.2206", + "deps": [] + }, + "sprintly-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sprintly", + "repo": "sprintly-mode", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6", + "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" + }, + "recipe": { + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121006.34", + "deps": [ + "furl" + ] + }, + "org-alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "groksteve", + "repo": "org-alert", + "sha256": "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv", + "rev": "d9b73febcc4f211406521786a39853c6bc6dd1bf" + }, + "recipe": { + "sha256": "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150214.23", + "deps": [] + }, + "multi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-multi", + "sha256": "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx", + "rev": "0987ab71692717ed457cb3984de184db9185806d" + }, + "recipe": { + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131013.1044", + "deps": [ + "emacs" + ] + }, + "eclipse-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "eclipse-theme", + "sha256": "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w", + "rev": "222f5b37d9c0573f752aa6097c677c91af9d2427" + }, + "recipe": { + "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150929.801", + "deps": [] + }, + "json-reformat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "json-reformat", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs", + "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" + }, + "recipe": { + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151204.1100", + "deps": [] + }, + "unicode-whitespace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-whitespace", + "sha256": "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz", + "rev": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe" + }, + "recipe": { + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141105.1226", + "deps": [] + }, + "omni-tags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-tags.el", + "sha256": "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5", + "rev": "3f88b087d492e8ef742416d6e4bf8be41e5a46c4" + }, + "recipe": { + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151002.2249", + "deps": [ + "cl-lib" + ] + }, + "polymode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "polymode", + "sha256": "0dlgmp1vmpvfjx19jz52xjmpg0fi1d0gy3zz7rsyjdkdw8dmr1v6", + "rev": "af589492a49b4703d390a7a91b281cf0d10d91a7" + }, + "recipe": { + "sha256": "0ndavaan7k55l3ghm5h08i0slmmzc82c0gl4b8w91fa8bi2lq4h4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.733", + "deps": [ + "emacs" + ] + }, + "restclient": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pashky", + "repo": "restclient.el", + "sha256": "08j4m70j9xdl731bwa4vh656lji0w0f9mm1aki0qqd5msglw6kvx", + "rev": "2075b17e2f8e118cf0739e4087f791ed724be1ad" + }, + "recipe": { + "sha256": "14wxfhb17n2f9wil68lb05abj7m0whwkqvrm3y9dg9mh14lcpbvc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.1712", + "deps": [] + }, + "lentic-server": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic-server", + "sha256": "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv", + "rev": "533e0eadb2dd79c50da7de8fc1d6e6f1e99bd6ff" + }, + "recipe": { + "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120508.1320", + "deps": [] + }, + "emms-soundcloud": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "emms-soundcloud", + "sha256": "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld", + "rev": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b" + }, + "recipe": { + "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131221.545", + "deps": [ + "emms", + "json" + ] + }, + "abl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "afroisalreadyinu", + "repo": "abl-mode", + "sha256": "081rz6q46wdpnlzd3ddcw425434vz54q7xw29z2nnaxsqckmim8f", + "rev": "5a2a65cc5eb1dc2ee80c8b64a7ea352a444abfdb" + }, + "recipe": { + "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.335", + "deps": [] + }, + "page-break-lines": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "page-break-lines", + "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4", + "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" + }, + "recipe": { + "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150226.1017", + "deps": [] + }, + "kpm-list": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "KMahoney", + "repo": "kpm-list", + "sha256": "1m9hixlclynph2i5q18miq077dyvhx14pfzgawrwj82j1kslz50x", + "rev": "397912496d42e57c261ff6d33edc8fc029479b8b" + }, + "recipe": { + "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130131.348", + "deps": [] + }, + "edbi-sqlite": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-sqlite", + "sha256": "0xnaj2f9zvnc6abjkaa23j6ga4anmq676aplws0n01y7qz6w0xk8", + "rev": "929009365529b56daec172b87d7632240b15be1f" + }, + "recipe": { + "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150115.1301", + "deps": [ + "edbi", + "emacs" + ] + }, + "rope-read-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "rope-read-mode", + "sha256": "1zcpd2rb35xjv16jrypd0vvsfw8ik72gil8wdzbwq19phjqvccjx", + "rev": "9ea77f9cb6f5e4e97838f05603a1c81834bcde1f" + }, + "recipe": { + "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1359", + "deps": [] + }, + "desktop+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "desktop-plus", + "sha256": "18k5898r4n96h93xsvjrpm90hz3rd0ir6x3axjzqwwrgs2ik7pj2", + "rev": "8ef242d0aa6f715ff4c5abbc4ee6be66a90ffedd" + }, + "recipe": { + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141205.1815", + "deps": [] + }, + "colemak-evil": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "patbl", + "repo": "colemak-evil", + "sha256": "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci", + "rev": "cd2c75848ab0ad1aec42ca421d03a923166fa228" + }, + "recipe": { + "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1812", + "deps": [ + "evil" + ] + }, + "elnode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "elnode", + "sha256": "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw", + "rev": "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9" + }, + "recipe": { + "sha256": "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140920.1611", + "deps": [] + }, + "perlbrew": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kentaro", + "repo": "perlbrew.el", + "sha256": "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26", + "rev": "30e14a606a08948fde5eafda2cbe1cd4eb83b3f3" + }, + "recipe": { + "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130127.524", + "deps": [] + }, + "download-region": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "download-region", + "sha256": "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr", + "rev": "51fc808e10803f695ea3d24c22e1af27e080903d" + }, + "recipe": { + "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150807.232", + "deps": [ + "cl-lib" + ] + }, + "swoop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "emacs-swoop", + "sha256": "0qp078q9jrfm0k8sjq6qglfilwgqy1n0bbhyjk3hrf7rjxlkfkx7", + "rev": "80a5df8edb86efd9885073b3ec6f475d8b969adf" + }, + "recipe": { + "sha256": "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.1527", + "deps": [] + }, + "vertigo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "vertigo.el", + "sha256": "0v884gbqq5vrx5gwg9dqn97kaqgnzhrqv8kam8dy9g7hx4fm6b2l", + "rev": "fecc566e9039408303f9b1c979624d546152b7df" + }, + "recipe": { + "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151110.2213", + "deps": [ + "dash" + ] + }, + "flycheck-ats2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "drvink", + "repo": "flycheck-ats2", + "sha256": "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c", + "rev": "431e46d5bbd20941c26270c7ba6872c86451348b" + }, + "recipe": { + "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151130.807", + "deps": [ + "emacs", + "flycheck" + ] + }, + "supergenpass": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ober", + "repo": "sgpass", + "sha256": "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331", + "rev": "549072ef7b5b82913cadd4758e8a0a9926f0a04a" + }, + "recipe": { + "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130329.48", + "deps": [] + }, + "iodine-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "srdja", + "repo": "iodine-theme", + "sha256": "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3", + "rev": "02fb780e1d8d8a6b9c709bfac399abe1665c6999" + }, + "recipe": { + "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151031.1139", + "deps": [ + "emacs" + ] + }, + "mkdown": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ajtulloch", + "repo": "mkdown.el", + "sha256": "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk", + "rev": "8e23de82719af6c5b53b52b3308a02b3a1fb872e" + }, + "recipe": { + "sha256": "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140517.918", + "deps": [ + "markdown-mode" + ] + }, + "ctxmenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-ctxmenu", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb", + "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" + }, + "recipe": { + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150310.353", + "deps": [ + "deferred" + ] + }, + "flymake-phpcs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "senda-akiha", + "repo": "flymake-phpcs", + "sha256": "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi", + "rev": "a4d383474e055e554aaf1cd617055d5d7181aa50" + }, + "recipe": { + "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140713.131", + "deps": [ + "flymake-easy" + ] + }, + "gotham-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "gotham-theme", + "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h", + "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" + }, + "recipe": { + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.358", + "deps": [] + }, + "evil-quickscope": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "blorbx", + "repo": "evil-quickscope", + "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977", + "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" + }, + "recipe": { + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1622", + "deps": [] + }, + "lenlen-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "lenlen-theme", + "sha256": "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65", + "rev": "05202458fa0a5242e5c6e4451e375f6c16920272" + }, + "recipe": { + "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150307.211", + "deps": [ + "color-theme-solarized" + ] + }, + "orgtbl-aggregate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgaggregate", + "sha256": "0am2yfnaxwc6f2wvrg4d508pdcs88cynr32k7bgyyadwq4xq3zsg", + "rev": "16b54b2be7cbb87aab9498c0ab7b8bca0f73cb59" + }, + "recipe": { + "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1018", + "deps": [] + }, + "cssfmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "KeenS", + "repo": "cssfmt.el", + "sha256": "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y", + "rev": "802c82a1aa8d433ec473e253ae1fa4ecad3fb4b0" + }, + "recipe": { + "sha256": "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151012.1828", + "deps": [ + "color-theme" + ] + }, + "xbm-life": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "xbm-life", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6", + "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201" + }, + "recipe": { + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.154", + "deps": [] + }, + "flymake-lua": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sroccaserra", + "repo": "emacs", + "sha256": "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv", + "rev": "ee23c427a8eb01773c87e215d0e61cd8b5b5fe76" + }, + "recipe": { + "sha256": "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140310.430", + "deps": [] + }, + "elpa-mirror": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "elpa-mirror", + "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a", + "rev": "6c32875c2317736e590e067820996010b21acb1d" + }, + "recipe": { + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.653", + "deps": [] + }, + "e2wm-bookmark": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-bookmark.el", + "sha256": "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0", + "rev": "bad816b6d8049984d69bcd277b7d325fb84d55eb" + }, + "recipe": { + "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.2321", + "deps": [ + "e2wm" + ] + }, + "p4": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gareth-rees", + "repo": "p4.el", + "sha256": "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra", + "rev": "eff047caa75dbe4965defca9d1212454cdb755d5" + }, + "recipe": { + "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150721.1437", + "deps": [] + }, + "review-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kmuto", + "repo": "review-el", + "sha256": "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch", + "rev": "d043b227eb1cd10361f8117c17de9a67caebe96a" + }, + "recipe": { + "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150110.812", + "deps": [] + }, + "peacock-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-peacock-theme", + "sha256": "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3", + "rev": "268a2a7eb48ac750fc939657169ec65f2ac0f4f7" + }, + "recipe": { + "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.102", + "deps": [ + "emacs" + ] + }, + "edit-server": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs_chrome", + "sha256": "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd", + "rev": "0a50fbb524fe256560f481701c000309c627b9ca" + }, + "recipe": { + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141231.1558", + "deps": [] + }, + "imakado": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "imakado", + "repo": "emacs-imakado", + "sha256": "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp", + "rev": "00a1e7eea2cb9e9066343a23927d6c747707902f" + }, + "recipe": { + "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.423", + "deps": [] + }, + "dynamic-ruler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "dynamic-ruler", + "sha256": "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5", + "rev": "06318152d6831b1b0cfd814b4f4150a00b47ef67" + }, + "recipe": { + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150826.1609", + "deps": [] + }, + "fontawesome": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-fontawesome", + "sha256": "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1", + "rev": "66650efea4a044afe0e5f482ccac465082cd5e62" + }, + "recipe": { + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150218.45", + "deps": [ + "cl-lib" + ] + }, + "o-blog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "o-blog", + "sha256": "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch", + "rev": "e466c59478feddc8126c43c1b98550474af484c0" + }, + "recipe": { + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.1739", + "deps": [] + }, + "love-minor-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "love-minor-mode", + "sha256": "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl", + "rev": "31c3fc1ecd31f72f0f736014a4ff905eb3742e74" + }, + "recipe": { + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140619.722", + "deps": [] + }, + "quickref": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pd", + "repo": "quickref.el", + "sha256": "1i7qqpqdwifd6vxpyyxyzq0b3wc82r7pqcw07bj0x2lhrjnqrxby", + "rev": "cfedf98c6b8b679b93296f7436e1fb4c2cc7ad25" + }, + "recipe": { + "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130113.1700", + "deps": [ + "dash", + "s" + ] + }, + "dash-functional": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb", + "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df" + }, + "recipe": { + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150828.613", + "deps": [ + "dash", + "emacs" + ] + }, + "pdf-tools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "pdf-tools", + "sha256": "05b5fn3w2bika21a5sxyjs3yfrcdvn6qdrx9li1jda9jg623bpn3", + "rev": "97b86cd09a411d00a7947da76b4c3f77995ccf44" + }, + "recipe": { + "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1359", + "deps": [ + "emacs", + "let-alist", + "tablist" + ] + }, + "beacon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "beacon", + "sha256": "1aczmdlc8ckcq5qbnsdyraw9wp8p5cddjm5jx8rf0ahsszh6vxws", + "rev": "0353da8dd7f78179a721f42cec4df8c23f0908f2" + }, + "recipe": { + "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.1203", + "deps": [ + "seq" + ] + }, + "image+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-imagex", + "sha256": "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd", + "rev": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc" + }, + "recipe": { + "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150707.1116", + "deps": [ + "cl-lib" + ] + }, + "dockerfile-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "spotify", + "repo": "dockerfile-mode", + "sha256": "08pd42vv2c3l19nfib1hd7i7sy9dqwar1wfrvsnm5dkxcwlsm99j", + "rev": "40be396417535c6721c1b13ca9f99c46192f1d73" + }, + "recipe": { + "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.1057", + "deps": [] + }, + "telepathy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "telepathy.el", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc", + "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" + }, + "recipe": { + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131209.658", + "deps": [] + }, + "flycheck-haskell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-haskell", + "sha256": "0sv4swdqnra3xvjp8im0mxphwfsfw6c45shwdgnjagqs6z6v0i5k", + "rev": "d83da3ff856ac59b84e3d84598a5bb30c288bd55" + }, + "recipe": { + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150917.100", + "deps": [] + }, + "evil-iedit-state": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-iedit-state", + "sha256": "1kdigwpl9pp88l11bkpxkw91pvs8z3gachxccibivzgjxd2pnvfl", + "rev": "153de161d5a272e3740dd862a3b7530b4240bcf8" + }, + "recipe": { + "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141217.1934", + "deps": [ + "evil", + "iedit" + ] + }, + "unicode-enbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-enbox", + "sha256": "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5", + "rev": "77074fac1994a4236f111d6a1d0cf79ea3fca151" + }, + "recipe": { + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151018.135", + "deps": [] + }, + "flycheck-pos-tip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-pos-tip", + "sha256": "1aq68lycw3pfzb0bivldfaz8v6lf35jidjgm74hh2pgppvijyi31", + "rev": "32ddd6bf3c1a642a9f7afe25475c4bf2ebc7aae9" + }, + "recipe": { + "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.822", + "deps": [ + "dash", + "flycheck", + "pos-tip" + ] + }, + "subatomic256-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "subatomic256", + "sha256": "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8", + "rev": "326177d6f99cd2b1d30df695e67ee3bc441cd96f" + }, + "recipe": { + "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130620.2110", + "deps": [] + }, + "evil-paredit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-paredit", + "sha256": "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p", + "rev": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f" + }, + "recipe": { + "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150413.1548", + "deps": [ + "evil", + "paredit" + ] + }, + "ac-dcd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "ac-dcd", + "sha256": "1dydjkilvyzxl7wwy3afmn1cjf8jv0385im4nhn8c3xr8iiil7yv", + "rev": "8fe1a48fcfeeafa1970e5041b0e71a4fcd10f336" + }, + "recipe": { + "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.416", + "deps": [] + }, + "metascript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "metascript", + "repo": "metascript-mode", + "sha256": "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5", + "rev": "edb361c7b0e5de231e5334a17b90652fb1df78f9" + }, + "recipe": { + "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150710.2151", + "deps": [] + }, + "live-py-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "donkirkby", + "repo": "live-py-plugin", + "sha256": "02jvfn0g7r07kvb9m97kqa22j5nsgxbnp6r5vsq3d9qjsi459yd3", + "rev": "35dda7dadba37ffbcc14d3b0a2711ca4967f1db5" + }, + "recipe": { + "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151108.1107", + "deps": [ + "emacs" + ] + }, + "virtualenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aculich", + "repo": "virtualenv.el", + "sha256": "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q", + "rev": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3" + }, + "recipe": { + "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140220.1701", + "deps": [] + }, + "pos-tip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pitkali", + "repo": "pos-tip", + "sha256": "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23", + "rev": "051e08fec5cf30b7574bdf439f79fef7d42d689d" + }, + "recipe": { + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150318.1013", + "deps": [] + }, + "empos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimalik", + "repo": "empos", + "sha256": "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n", + "rev": "7b99ad30e56937adb7e6349777e5a2045597d564" + }, + "recipe": { + "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151011.1416", + "deps": [] + }, + "helm-gitlab": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "07i4j9yl1yag70sl89n7v4yg4jvh5mrifhrf1xswlb29by6najdx", + "rev": "78deece7f314f9652b50117605e93be9f8c860f4" + }, + "recipe": { + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.1804", + "deps": [ + "fsm" + ] + }, + "magit-gerrit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "terranpro", + "repo": "magit-gerrit", + "sha256": "0qhrh7z5snbmxfcrcj1v00z7vkmxqwgxmx4hfi0bvs3lfkcdrfxv", + "rev": "c4e3da19d55229feef8df2e062104ecc9fd4290d" + }, + "recipe": { + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.1818", + "deps": [ + "magit" + ] + }, + "bubbleberry-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-bubbleberry-theme", + "sha256": "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28", + "rev": "22e9adf4586414024e4592972022ec297321b320" + }, + "recipe": { + "sha256": "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141017.444", + "deps": [ + "emacs" + ] + }, + "org-pomodoro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lolownia", + "repo": "org-pomodoro", + "sha256": "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb", + "rev": "95e2b1f555359a6096a19634814e1d93b2072f25" + }, + "recipe": { + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.410", + "deps": [ + "yasnippet" + ] + }, + "monokai-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "oneKelvinSmith", + "repo": "monokai-emacs", + "sha256": "09vm2mq89vnlnl13qra511inc1dsall3qd2sxjg0g536fk3y9v13", + "rev": "451a46930b9c5420d526505abe8f157a7292644e" + }, + "recipe": { + "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130627.1808", + "deps": [] + }, + "kurecolor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "kurecolor", + "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz", + "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" + }, + "recipe": { + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150423.2322", + "deps": [ + "emacs", + "s" + ] + }, + "dropbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pavpanchekha", + "repo": "dropbox.el", + "sha256": "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s", + "rev": "fb71a2787030f911b569426596c081a89241056e" + }, + "recipe": { + "sha256": "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130513.1737", + "deps": [ + "json", + "oauth" + ] + }, + "helm-rails": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "helm-rails", + "sha256": "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158", + "rev": "31d79cd0feca11cbb1aa532a8d2112ec794de4f0" + }, + "recipe": { + "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130424.1019", + "deps": [ + "helm", + "inflections" + ] + }, + "flymake-haml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haml", + "sha256": "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l", + "rev": "3117d94ecad908710502e8def42dbae5748e9c1d" + }, + "recipe": { + "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150307.408", + "deps": [] + }, + "runtests": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sunesimonsen", + "repo": "emacs-runtests", + "sha256": "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6", + "rev": "ed90249f24cc48290018df48b9b9b7172440be3e" + }, + "recipe": { + "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150807.331", + "deps": [] + }, + "monroe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sanel", + "repo": "monroe", + "sha256": "1z1gyknxscvk2qpfcrgzymf9w5m8jcnj525q852b8s6yf5fnffmh", + "rev": "7f42a0139a8030407da736ddb0f67132634b70c0" + }, + "recipe": { + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141111.307", + "deps": [] + }, + "helm-ctest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danlamanna", + "repo": "helm-ctest", + "sha256": "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry", + "rev": "973a138aa8ff4c6a1cd798779e8d0dd80522354d" + }, + "recipe": { + "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140205.725", + "deps": [ + "flymake-easy" + ] + }, + "names": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "names", + "sha256": "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh", + "rev": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6" + }, + "recipe": { + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.604", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "worf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "worf", + "sha256": "0flwch8hsfz1kkb0hg68s71szbvmh7mqih8hj0kwfjdb7alsah8r", + "rev": "61a6fc392034c2a588c44fef0a514032cf660e68" + }, + "recipe": { + "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.2040", + "deps": [ + "ace-link", + "helm", + "hydra" + ] + }, + "ztree": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "ztree", + "sha256": "1m6s02jvd48hx8i9apqlscrzqlqa46rk1zf1ix28c6xg0xpri00i", + "rev": "3d70aefd95404a42e21e53d7139c0b1fba47087b" + }, + "recipe": { + "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.1412", + "deps": [] + }, + "log4j-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "log4j-mode", + "sha256": "14dmmjdmcc0zag8i947n59ihjc2df2l44f7issf66767ym3839kk", + "rev": "ec3de92cfe60dd3d0de613e9062476196dea0faf" + }, + "recipe": { + "sha256": "0axr0x8mdxif0xbvs83mxc3gqgs84jb4b9la9n62i3lldckghwmg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150328.959", + "deps": [ + "clj-refactor", + "discover" + ] + }, + "faceup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "faceup", + "sha256": "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja", + "rev": "70fa6be83768adf78f20425d0d76fe809dc44d79" + }, + "recipe": { + "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150215.1548", + "deps": [] + }, + "repl-toggle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "repl-toggle", + "sha256": "0lx9zbn9zvr50i8x5vpd5cr22c2v27ln2v89dmn0shcdx54m454l", + "rev": "903791e3e34f67bca64c47dc2b91e612d3bad09c" + }, + "recipe": { + "sha256": "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140610.231", + "deps": [ + "log4e", + "yaxception" + ] + }, + "noxml-fold": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paddymcall", + "repo": "noXML-fold", + "sha256": "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8", + "rev": "feecc06b1136c1ddbabcdc37287f1ef26f1282fc" + }, + "recipe": { + "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120329.1136", + "deps": [] + }, + "look-dired": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "look-dired", + "sha256": "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj", + "rev": "5b2afe910a904d13674103f5264c6bcdbb9f9fb2" + }, + "recipe": { + "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151115.1956", + "deps": [ + "look-mode" + ] + }, + "salt-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "beardedprojamz", + "repo": "salt-mode", + "sha256": "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn", + "rev": "c9147cb78680cc34e6fcff3968c336460a9090a4" + }, + "recipe": { + "sha256": "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141104.1845", + "deps": [ + "dash" + ] + }, + "docker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "docker.el", + "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x", + "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" + }, + "recipe": { + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "rpn-calc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "rpn-calc", + "sha256": "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8", + "rev": "ed202e9eb59c4ace74b4703174f7bc7fa7e2d594" + }, + "recipe": { + "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151026.111", + "deps": [ + "dash", + "emacs" + ] + }, + "map-progress": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-progress", + "sha256": "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1", + "rev": "3167eb218510953fb97e7d50948a625eaa3f0005" + }, + "recipe": { + "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140310.1632", + "deps": [] + }, + "eno": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "enoson", + "repo": "eno.el", + "sha256": "15zqfisfa5yrdnlh0xd6avas0qxj273hy5nvj97bm9h54mamjbs6", + "rev": "c379bf040bab10e52aba44140e9aa1b566cdebb6" + }, + "recipe": { + "sha256": "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130718.932", + "deps": [ + "org" + ] + }, + "karma": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "karma.el", + "sha256": "1xcs15j555cgp2k4k9vl5sy2lrffbk0ma2fv60hlxwirqyw4jcdy", + "rev": "07d5ba0fd669b909efdf02ffd0c1f45e6136edc4" + }, + "recipe": { + "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1327", + "deps": [ + "cl-lib" + ] + }, + "js3-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thomblake", + "repo": "js3-mode", + "sha256": "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l", + "rev": "d0767afbb4fc8019f9e90e978937036d3bddbc5e" + }, + "recipe": { + "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150902.1149", + "deps": [] + }, + "scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "scratch-el", + "sha256": "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq", + "rev": "54e31e81cd239e1fd1b3c6a20ff426029bf9aaf5" + }, + "recipe": { + "sha256": "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120830.1228", + "deps": [] + }, + "tangotango-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juba", + "repo": "color-theme-tangotango", + "sha256": "00v2y2gfb44kmzfdbp6f4nmxlwn8gf6y3hvgqzggmlbqb5m8hg8d", + "rev": "92a94756080577c0446b2fc7f06d43d7b76b2005" + }, + "recipe": { + "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150702.304", + "deps": [] + }, + "imgur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "imgur.el", + "sha256": "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs", + "rev": "ed952eb8f556c6fc0d982e2a689083504558cffb" + }, + "recipe": { + "sha256": "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120307.425", + "deps": [ + "anything" + ] + }, + "c-c-combo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "c-c-combo.el", + "sha256": "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5", + "rev": "a261a833499a7fdc29610863b3aafc74818770ba" + }, + "recipe": { + "sha256": "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.2055", + "deps": [] + }, + "auto-auto-indent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "auto-auto-indent", + "sha256": "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7", + "rev": "0139378577f936d34b20276af6f022fb457af490" + }, + "recipe": { + "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131106.1303", + "deps": [ + "cl-lib", + "es-lib" + ] + }, + "aproject": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vietor", + "repo": "aproject", + "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc", + "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" + }, + "recipe": { + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150605.406", + "deps": [] + }, + "helm-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "helm-projectile", + "sha256": "1c6pfy3qghpqnng1jsnxnvqnd6sq41f2dm7kkwkgml405asqlcqa", + "rev": "2544343b4214511988fa1b652474d7984008f807" + }, + "recipe": { + "sha256": "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.421", + "deps": [ + "cl-lib", + "dash", + "helm", + "projectile" + ] + }, + "ahk-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ahk-mode", + "sha256": "122as0ssc6xzmxb5hlvhx6dlx6gq2f70xisz0z8pxgm3bpf9h6mx", + "rev": "e08a1b467d42b9d5e719c39407908152011b4573" + }, + "recipe": { + "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.1737", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "requirejs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "requirejs-emacs", + "sha256": "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv", + "rev": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1" + }, + "recipe": { + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150315.1942", + "deps": [] + }, + "pastehub": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "pastehub", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n", + "rev": "37b045c67659c078f1517d0fbd5282dab58dca23" + }, + "recipe": { + "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140615.120", + "deps": [] + }, + "nim-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nim-lang", + "repo": "nim-mode", + "sha256": "00s8c4a5qnfm0h6zx26f1m0syq7gii7n45nl83y71yaccdw0syls", + "rev": "1f0a6cdd39460c1d59da79aa8d4b132753448c56" + }, + "recipe": { + "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.225", + "deps": [ + "emacs", + "epc" + ] + }, + "elfeed-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remyhonig", + "repo": "elfeed-org", + "sha256": "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j", + "rev": "e5206bc983d04c68310181da83147908682de295" + }, + "recipe": { + "sha256": "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120331.1544", + "deps": [] + }, + "langtool": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-langtool", + "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh", + "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" + }, + "recipe": { + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150818.320", + "deps": [] + }, + "ac-skk": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ac-skk.el", + "sha256": "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm", + "rev": "d25a265930430d080329789fb253d786c01dfa24" + }, + "recipe": { + "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130901.935", + "deps": [] + }, + "rbt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "rbt.el", + "sha256": "0ij2gqhg714ah812rhf1yg2n7ah1v4d5yldn1rixrzfcdng10mpi", + "rev": "47cf236c732e9c5f468fb24c6a1c2db69a133797" + }, + "recipe": { + "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.2255", + "deps": [ + "popup" + ] + }, + "uzumaki": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "geyslan", + "repo": "uzumaki", + "sha256": "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x", + "rev": "afae141588ef9407ff86ce1ae9a0f1860843c4a4" + }, + "recipe": { + "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120808.2207", + "deps": [] + }, + "creole-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "creole-mode", + "sha256": "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h", + "rev": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4" + }, + "recipe": { + "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130721.1950", + "deps": [] + }, + "fvwm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "theBlackDragon", + "repo": "fvwm-mode", + "sha256": "0w2kqmx38ji5273mzhn9sp4r6vn7jfwb5qpsf2w8d46avpf8rj5i", + "rev": "cfd14546b6905806e0f2ad3df58b08de2401be3c" + }, + "recipe": { + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141105.2236", + "deps": [] + }, + "factlog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "factlog", + "sha256": "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y", + "rev": "6503d77ea882c995b051d22e72db336fb28770fc" + }, + "recipe": { + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140115.424", + "deps": [] + }, + "calmer-forest-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "caldwell", + "repo": "calmer-forest-theme", + "sha256": "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h", + "rev": "87ba7bae389084d13fe3bc34e0c923017eda6ba0" + }, + "recipe": { + "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130926.10", + "deps": [] + }, + "kaesar-file": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "1maab8iaf2wcjj02ibl21jlfzmi9gmcl167cgdlwj50wkig74s23", + "rev": "11ab63b8e6f1c4ebc5a2e54474095754a39104e5" + }, + "recipe": { + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150130.1004", + "deps": [ + "kaesar" + ] + }, + "purty-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hackscience", + "repo": "purty-mode", + "sha256": "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1", + "rev": "8eef77317a3bab07ade212353a50fbd3f20f365a" + }, + "recipe": { + "sha256": "1ackqv95sdphbsjwydbc4dmdzwpaj74v329f55zcwa8hn3li9d5m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131004.1759", + "deps": [] + }, + "idea-darkula-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "idea-darkula-theme", + "sha256": "0famn16syz4d5ln1xiblqm0naxr5cnv9757r03xnzi9l9r67vyrs", + "rev": "509481632d337dc6ad49809225d209eb2fdb243f" + }, + "recipe": { + "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.517", + "deps": [ + "emacs" + ] + }, + "boon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jyp", + "repo": "boon", + "sha256": "1qgyfcrk1rs1kbshmcgy67hhpfw7rbkbncm3iyqs51wk076hss7a", + "rev": "b4bb92a5c4ce0367e84137b29625a03ace60da2a" + }, + "recipe": { + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1557", + "deps": [ + "emacs", + "expand-region", + "multiple-cursors" + ] + }, + "inflections": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5", + "rev": "56cec33dd98231a95faa26dd4c0612885d923f78" + }, + "recipe": { + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121016.357", + "deps": [] + }, + "loccur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fourier", + "repo": "loccur", + "sha256": "1293ihhl1n1vkbp160ha23g46sx7s6wbdyqbbb2ym6300yrl2x10", + "rev": "5e2f33943a18c0b1ae984c24c8000bbaed737067" + }, + "recipe": { + "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150611.1237", + "deps": [] + }, + "interval-tree": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "interval-tree", + "sha256": "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3", + "rev": "301302f480617091cf3ab6989caac385d52543dc" + }, + "recipe": { + "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130325.907", + "deps": [ + "dash" + ] + }, + "todochiku": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/todochiku.el", + "sha256": "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5" + }, + "recipe": { + "sha256": "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140625.2306", + "deps": [] + }, + "mode-line-debug": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "mode-line-debug", + "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1", + "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" + }, + "recipe": { + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150307.712", + "deps": [] + }, + "helm-mode-manager": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-mode-manager", + "sha256": "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh", + "rev": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc" + }, + "recipe": { + "sha256": "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151124.338", + "deps": [ + "helm" + ] + }, + "python-docstring": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "glyph", + "repo": "python-docstring-mode", + "sha256": "1a2019172ycw7sdfjrxpyrg41ky9cp09mx30x6cr2qkc1w9pkyrv", + "rev": "263879fb339b18ee55d9463697d6f0a73171ee78" + }, + "recipe": { + "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150907.1504", + "deps": [] + }, + "helm-aws": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-aws", + "sha256": "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af", + "rev": "512fb7edcdc6c65303b9641bfc737f836939e5e9" + }, + "recipe": { + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150505.1211", + "deps": [] + }, + "autotetris-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "autotetris-mode", + "sha256": "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az", + "rev": "dd490d5ad6d84bd964ab349484f6a2d05651ede1" + }, + "recipe": { + "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141114.1046", + "deps": [ + "cl-lib" + ] + }, + "pcache": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "pcache", + "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8", + "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" + }, + "recipe": { + "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1609", + "deps": [] + }, + "lolcode-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bodil", + "repo": "lolcode-mode", + "sha256": "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb", + "rev": "1914f1ba87587ecf5f175eeb2144c28e9f039317" + }, + "recipe": { + "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20111002.347", + "deps": [] + }, + "go-playground": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "grafov", + "repo": "go-playground", + "sha256": "1hpxvp0slqafbxhkashnmfjssb0ccjq67x01b4p7gznf6rwji166", + "rev": "6de119fe6d1ecb8db2dad1f70831561695c5da58" + }, + "recipe": { + "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151031.1610", + "deps": [ + "emacs", + "go-mode", + "gotest" + ] + }, + "cache": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "cache", + "sha256": "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby", + "rev": "7499586b6c8224df9f5c5bc4dec96b008258d580" + }, + "recipe": { + "sha256": "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20111019.1800", + "deps": [] + }, + "flymake-go": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "robert-zaremba", + "repo": "flymake-go", + "sha256": "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q", + "rev": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9" + }, + "recipe": { + "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150714.233", + "deps": [] + }, + "reverse-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-reverse-theme", + "sha256": "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f", + "rev": "8319d0d5342890a3530ffa4daafdb7c35feda1ca" + }, + "recipe": { + "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.1120", + "deps": [] + }, + "perspective": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "perspective-el", + "sha256": "1ajmyl3bg01a3gkhay4qibgk9a0r6s8rhf1cc1678w3cm0w6yvmd", + "rev": "b6f4f05951d3f0d16a503bf462f136c689ede4df" + }, + "recipe": { + "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.1654", + "deps": [ + "cl-lib" + ] + }, + "loop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "loop.el", + "sha256": "07f9lp7s5lbnpjca84nys2pvsc4bk0mpaw3x2h8i9vickns2mlwp", + "rev": "186332dfd3f63ab79b53c4e26b46ef75713b308e" + }, + "recipe": { + "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130309.1005", + "deps": [] + }, + "offlineimap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "offlineimap.el", + "sha256": "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq", + "rev": "cc3e067e6237a1eb7b21c575a41683b1febb47f1" + }, + "recipe": { + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150916.658", + "deps": [] + }, + "pmdm": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/inigoserna/pmdm.el", + "sha256": "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff", + "rev": "f50a54774156" + }, + "recipe": { + "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.1236", + "deps": [] + }, + "es-lib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-lib", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b", + "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" + }, + "recipe": { + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141111.1230", + "deps": [ + "cl-lib" + ] + }, + "php-eldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "php-eldoc", + "sha256": "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i", + "rev": "df05064146b884d9081e10657e32dc480f070cfe" + }, + "recipe": { + "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140202.1341", + "deps": [] + }, + "sqlplus": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/sqlplus.el", + "sha256": "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d" + }, + "recipe": { + "sha256": "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140806.2342", + "deps": [] + }, + "helm-fuzzier": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "EphramPerdition", + "repo": "helm-fuzzier", + "sha256": "1jns0428jmxrm4w9yk67ffbzmgyjgp1v5ii152y0wsb105ary0xp", + "rev": "7e8573de1a639c031056f20c677d13760f2cece0" + }, + "recipe": { + "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.838", + "deps": [ + "emacs", + "helm" + ] + }, + "pt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "pt.el", + "sha256": "0bjs9khpvqcdamvizd0symb5xvb05vacahwdax6nl7bsk1hmzvzk", + "rev": "d63d1c2765160683a7b496aa265024fc8e768ae0" + }, + "recipe": { + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151024.1051", + "deps": [] + }, + "idle-require": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "idle-require.el", + "sha256": "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam", + "rev": "33592bb098223b4432d7a35a1d65ab83f47c1ec1" + }, + "recipe": { + "sha256": "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090715.1703", + "deps": [] + }, + "save-visited-files": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "save-visited-files", + "sha256": "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm", + "rev": "35f8055a3eb0614721b5b755a3902ba008a4d6fa" + }, + "recipe": { + "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.1243", + "deps": [] + }, + "colonoscopy-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-colonoscopy-theme", + "sha256": "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6", + "rev": "7b873d7e7e091b71bf4fdd23ded19e261a1e3936" + }, + "recipe": { + "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "gitignore-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150330.1248", + "deps": [] + }, + "go-complete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vibhavp", + "repo": "go-complete", + "sha256": "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha", + "rev": "e39efc356f6e19f17db3f3d2c81f28d38b31a55e" + }, + "recipe": { + "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141218.2114", + "deps": [] + }, + "dkdo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidkeegan", + "repo": "dkdo", + "sha256": "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459", + "rev": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da" + }, + "recipe": { + "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131110.519", + "deps": [ + "dkmisc", + "emacs" + ] + }, + "occidental-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "olcai", + "repo": "occidental-theme", + "sha256": "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8", + "rev": "fd2db7256d4f78c43d99c3cddb1c39106d479816" + }, + "recipe": { + "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130312.1458", + "deps": [] + }, + "helm-flycheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-flycheck", + "sha256": "0k5703nj838qh0h6hzgffjrp0df9rs7psczg4r9mxpi19vqk8ff0", + "rev": "361d7f0359cea3dd0bfef1647d65ab61c9e52925" + }, + "recipe": { + "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1822", + "deps": [] + }, + "fold-dwim-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "fold-dwim-org", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw", + "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" + }, + "recipe": { + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150414.22", + "deps": [] + }, + "fstar-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "FStarLang", + "repo": "fstar-mode.el", + "sha256": "0qq2gradcibjhn477sljy4lnsmi3pzlac42hpa92c6ca1srh3lc4", + "rev": "5e7c3d5a4b5422284d8ef4b69023b1fd71952b81" + }, + "recipe": { + "sha256": "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131108.527", + "deps": [] + }, + "achievements": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/gvol/emacs-achievements", + "sha256": "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3", + "rev": "5b4b7b6816aa" + }, + "recipe": { + "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150530.1326", + "deps": [ + "keyfreq" + ] + }, + "company-nixos-options": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "0ia9wgn33znaviy7ilfm83yfalc2dbpm1g7nvss5s4rznqkdfhn3", + "rev": "6b1418611b49a6cf77380a76f7e6236bbb5df83a" + }, + "recipe": { + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1558", + "deps": [] + }, + "flymake-json": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-json", + "sha256": "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534", + "rev": "36084b67830bdc6c226115ea8287ea88d14b05dd" + }, + "recipe": { + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130424.157", + "deps": [ + "flymake-easy" + ] + }, + "sass-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "sass-mode", + "sha256": "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm", + "rev": "3da9040680880743fddb55a965ecd150d1039df6" + }, + "recipe": { + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.1130", + "deps": [ + "dash" + ] + }, + "flycheck-elm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bsermons", + "repo": "flycheck-elm", + "sha256": "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7", + "rev": "d1395ce80dcad5ed8931b4901471a8980fd3f2b8" + }, + "recipe": { + "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150527.1048", + "deps": [] + }, + "proc-net": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-proc-net", + "sha256": "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb", + "rev": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73" + }, + "recipe": { + "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130321.1912", + "deps": [] + }, + "phi-grep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-grep", + "sha256": "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx", + "rev": "9f1eb3548311816920864a171de303245a001301" + }, + "recipe": { + "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150522.533", + "deps": [] + }, + "sequences": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "sequences.el", + "sha256": "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl", + "rev": "2bcc54a6738202fffb23e9579b9695337ba6ef26" + }, + "recipe": { + "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130908.1322", + "deps": [ + "emacs" + ] + }, + "chronos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dxknight", + "repo": "chronos", + "sha256": "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4", + "rev": "b360d9dae57aa553cf2a14ffa0756a51ad71de09" + }, + "recipe": { + "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150602.1029", + "deps": [] + }, + "flymake-haskell-multi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haskell-multi", + "sha256": "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd", + "rev": "6183620ffee429b33c886fffd6106b876245ea47" + }, + "recipe": { + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130620.622", + "deps": [ + "flymake-easy" + ] + }, + "simple-screen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wachikun", + "repo": "simple-screen", + "sha256": "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i", + "rev": "4fcbdb4575310c0a2b4dd17fc8aeb4d7e6e9ffae" + }, + "recipe": { + "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141023.958", + "deps": [] + }, + "git-timemachine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-timemachine", + "sha256": "058ylvq71xap2r2qas8lw2l2fmg2769ahh9zs4dw1mhf9j3rlmzg", + "rev": "141122e52a80f28b958a8bad128c480567ce3942" + }, + "recipe": { + "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.438", + "deps": [ + "highlight" + ] + }, + "edn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "edn.el", + "sha256": "107ljwqibnd247h4iyav37y75zcgl0j2yav09s38kl3nbxmaad2y", + "rev": "501a69696bec2fc09bf5d61e38a3ea344ed77a47" + }, + "recipe": { + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151108.1305", + "deps": [] + }, + "virtualenvwrapper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "porterjamesj", + "repo": "virtualenvwrapper.el", + "sha256": "1a0x4dsyavqcl7xibn3g90fxvh1fnb6k0mpjm5mjvzc168p939kc", + "rev": "f95094dc7a6e6c0aa6f80fd897dbf380382f35f2" + }, + "recipe": { + "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141229.1634", + "deps": [] + }, + "google-contacts": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "google-contacts.el", + "sha256": "1a3qdjk7mpzxdiwciv6qr56pj4av23s2aslg8pqzirn24xmnfpmj", + "rev": "92969f5f02f0ec1957c591b248530c0be0cc5432" + }, + "recipe": { + "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120209.1251", + "deps": [] + }, + "govet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "meshelton", + "repo": "govet", + "sha256": "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb", + "rev": "736f11850f2d1d62bd417fb57d4f8bb55a176b70" + }, + "recipe": { + "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150428.1359", + "deps": [] + }, + "c-eldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nflath", + "repo": "c-eldoc", + "sha256": "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a", + "rev": "3baef9b6300370bd8db3ea7636084afcdebc6e85" + }, + "recipe": { + "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150904.332", + "deps": [] + }, + "toc-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "snosov1", + "repo": "toc-org", + "sha256": "0gzv45yxjy0bkdnx9kki0svmc7gxrdaarblvi1pyvl7id31ssw70", + "rev": "72883a08b01d08b74cc03c565eac8d0422770fcf" + }, + "recipe": { + "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150921.905", + "deps": [] + }, + "hl-sexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "hl-sexp", + "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw", + "rev": "0606100422321c18db51ceda80f25cd7717c2e01" + }, + "recipe": { + "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20101130.643", + "deps": [] + }, + "find-temp-file": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thisirs", + "repo": "find-temp-file", + "sha256": "0anc6icm1a5d4iirkzzmz8g4z5ssa3hpzgj7gigm3kvvp4r1261d", + "rev": "556cc3afbdc3011c99e92e1ab3fe0744bd1af9ba" + }, + "recipe": { + "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150101.801", + "deps": [] + }, + "avy-migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "avy-migemo", + "sha256": "0c7ss211z0qls26sd9qjpplak58g5zzk3n1h54zsyzyfnwxs0nsj", + "rev": "804a02dbd50dcfbdbf327ec800d9f7572e8b9511" + }, + "recipe": { + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150424.1916", + "deps": [] + }, + "helm-orgcard": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-orgcard", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3", + "rev": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d" + }, + "recipe": { + "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151001.1024", + "deps": [ + "helm-core" + ] + }, + "phpcbf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nishimaki10", + "repo": "emacs-phpcbf", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z", + "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" + }, + "recipe": { + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150302.728", + "deps": [ + "s" + ] + }, + "dispass": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "dispass.el", + "sha256": "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1", + "rev": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861" + }, + "recipe": { + "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.2352", + "deps": [ + "emacs" + ] + }, + "professional-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juanjux", + "repo": "emacs-professional-theme", + "sha256": "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b", + "rev": "0927d1474049a193f9f366bde5eb1887b9ba20ed" + }, + "recipe": { + "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150109.1223", + "deps": [] + }, + "flymake-css": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-css", + "sha256": "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy", + "rev": "4649fc209836498d709bb627e8aa6e50189a06ec" + }, + "recipe": { + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121104.1304", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-pyflakes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "flycheck-pyflakes", + "sha256": "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa", + "rev": "026ef070f1589bc0ae8f86a02072fa36e57b9912" + }, + "recipe": { + "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150330.301", + "deps": [] + }, + "pbcopy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "pbcopy.el", + "sha256": "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6", + "rev": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272" + }, + "recipe": { + "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150224.2259", + "deps": [] + }, + "ob-lfe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-lfe", + "sha256": "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn", + "rev": "d50a5d76e389501504e060a7005f20b96c895594" + }, + "recipe": { + "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150701.855", + "deps": [ + "org" + ] + }, + "auto-yasnippet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "auto-yasnippet", + "sha256": "14qr8c4i4644vwqvlh5d3xhw1dzmqz3v74hqlp7g8991yaka72va", + "rev": "9e126461d4473fb734f7e33dc2019cd71856dc42" + }, + "recipe": { + "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150902.1706", + "deps": [ + "company", + "dash", + "emacs" + ] + }, + "clippy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "clippy.el", + "sha256": "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc", + "rev": "23ba8772056a103267611b3757722730740d9f00" + }, + "recipe": { + "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140417.614", + "deps": [ + "pos-tip" + ] + }, + "company-coq": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cpitclaudel", + "repo": "company-coq", + "sha256": "1np5k6wnhylyi3si2vg4fff5axafixv9qdf3k7l2iislq372nq61", + "rev": "eba6fee09a02b42ef581fa757314b6b63a11601f" + }, + "recipe": { + "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150612.1439", + "deps": [ + "yasnippet" + ] + }, + "ycm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "neuromage", + "repo": "ycm.el", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj", + "rev": "4da8a14abcd0f4fa3235042ade2e12b5068c0601" + }, + "recipe": { + "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150822.1336", + "deps": [] + }, + "ldap-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "ldap-mode", + "sha256": "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3", + "rev": "8761a835e90b990fb5fe70173ecdcd6f4b776cb0" + }, + "recipe": { + "sha256": "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091203.1215", + "deps": [] + }, + "golint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "golang", + "repo": "lint", + "sha256": "16lghkdi0rd7l1fph0a254k6axxivmpmc6grx4ryvza3f4yf7483", + "rev": "32a87160691b3c96046c0c678fe57c5bef761456" + }, + "recipe": { + "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150414.1930", + "deps": [] + }, + "typed-clojure-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "typedclojure", + "repo": "typed-clojure-mode", + "sha256": "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6", + "rev": "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364" + }, + "recipe": { + "sha256": "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120702.1536", + "deps": [] + }, + "xah-math-input": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-math-input", + "sha256": "1j2dca3j71g2g8phzfxjvcwymlr10dq8fbahwslwdhadffjv9m87", + "rev": "f0c98d1271b20334c8af2593fd391af23a6e64b4" + }, + "recipe": { + "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1358", + "deps": [] + }, + "vim-region": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-vim-region", + "sha256": "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig", + "rev": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf" + }, + "recipe": { + "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "tumble": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "febuiles", + "repo": "tumble", + "sha256": "1klqqk0kn60c4ircgwh6hhdhhfqq7s3d7hw3xf62s7lp6r6yw5lc", + "rev": "8d04216752ad94c343ffa507016b893f8252602f" + }, + "recipe": { + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150127.1546", + "deps": [ + "elscreen", + "evil" + ] + }, + "solidity-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ethereum", + "repo": "emacs-solidity", + "sha256": "0drb237750lry18arbfx37drf16znwz8fhx5fawxy1q4z7bl7z5n", + "rev": "8bbd7d9e1e823b524d882d996b5c4e7b6a523b41" + }, + "recipe": { + "sha256": "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151124.1111", + "deps": [] + }, + "ac-math": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "ac-math", + "sha256": "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6", + "rev": "c012a8f620a48cb18db7d78995035d65eae28f11" + }, + "recipe": { + "sha256": "1gx35m0wv60cfgm87y2c7vrpwdsqjzk9bz4pp9dbs8dhxvji0ay4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120809.718", + "deps": [] + }, + "company-ghci": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juiko", + "repo": "company-ghci", + "sha256": "112nkvkjrk41yc75mc0mnzm0jy0j6wafmdm0pbhrdar12wj8y014", + "rev": "c62617770a457c53d1d49621d4e71a2c36de2f82" + }, + "recipe": { + "sha256": "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.1250", + "deps": [ + "company", + "haskell-mode" + ] + }, + "aurel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "aurel", + "sha256": "0z0wq79ks8251fflk2iwrhd885h5qbki2m19f0jy4a8c00ydmxyz", + "rev": "bcabf49c1410b89d592d8aa78f896428c492879a" + }, + "recipe": { + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.2340", + "deps": [ + "emacs" + ] + }, + "ob-typescript": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lurdan", + "repo": "ob-typescript", + "sha256": "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai", + "rev": "9dcbd226cbfb75e790dd9de91d9401dde85a889a" + }, + "recipe": { + "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150804.730", + "deps": [ + "emacs", + "org" + ] + }, + "anaconda-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "anaconda-mode", + "sha256": "01a9l785chmcf6d7fsyc72gapapb4gddgqmpps705zpkhjm8f6wj", + "rev": "e8f6d910993ac1ecaa41b07abc4cdc9e76e66fb8" + }, + "recipe": { + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141027.1750", + "deps": [ + "js2-mode" + ] + }, + "drag-stuff": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "drag-stuff", + "sha256": "08kkiqhfy1i6j9156gbl85jvyj592vd08qy24ng2dj0prjvap8w1", + "rev": "0d7e28bf234037380dbcb24b9175b96ae34ef8fb" + }, + "recipe": { + "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150717.732", + "deps": [] + }, + "epic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "epic", + "sha256": "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim", + "rev": "02f6472bb490a39d42ed49c0364972173202f6e1" + }, + "recipe": { + "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "1721816" + }, + "recipe": { + "sha256": "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130120.1457", + "deps": [] + }, + "clocker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "clocker.el", + "sha256": "0hw6i92k651p71am578p02lqp1dj9pic880n6x4z0ydz4xyjhmfw", + "rev": "9cb1440ca1fa4f82597f8b053c7f8e44f4682229" + }, + "recipe": { + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1624", + "deps": [] + }, + "quick-buffer-switch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "quick-buffer-switch", + "sha256": "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5", + "rev": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b" + }, + "recipe": { + "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151007.1708", + "deps": [] + }, + "jump-char": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "jump-char", + "sha256": "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q", + "rev": "b6011a1cb501c0242d11103bbee4d9138fcc765f" + }, + "recipe": { + "sha256": "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130104.821", + "deps": [] + }, + "tracking": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "1l6lm3i02r0b8ng0n3rckgk0q38wjng41dqbx148bjxfq44cpghz", + "rev": "c9862e432d2dad7cd568d79dbe49849245333fb1" + }, + "recipe": { + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151129.519", + "deps": [] + }, + "findr": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/findr.el", + "sha256": "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q" + }, + "recipe": { + "sha256": "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.707", + "deps": [] + }, + "helm-chrome": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "helm-chrome", + "sha256": "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb", + "rev": "4591cc760d3e721094c70b913b91138776f0e52e" + }, + "recipe": { + "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1958", + "deps": [ + "cl-lib", + "emacs", + "helm" + ] + }, + "chruby": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "plexus", + "repo": "chruby.el", + "sha256": "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl", + "rev": "0b210f5bb8c38dbe4581e660055cf9bac93304d0" + }, + "recipe": { + "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151204.630", + "deps": [] + }, + "whitaker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "whitaker", + "sha256": "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab", + "rev": "eaf26ea647b729ca705b73ea70312d5ffdf89448" + }, + "recipe": { + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150814.622", + "deps": [ + "dash" + ] + }, + "company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-mode", + "sha256": "0nd0zxzgaxwncbrrs2cql9kiya8s6kjjq0gls58qgq2vd9mwrrgg", + "rev": "900ae0d7a2270ea1d2ea00567e80a619333fd4e5" + }, + "recipe": { + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.2110", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130605.343", + "deps": [] + }, + "macro-math": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "macro-math.el", + "sha256": "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz", + "rev": "216e59371e9ee39c34117ba79b9acd78bb415750" + }, + "recipe": { + "sha256": "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130328.1104", + "deps": [] + }, + "elscreen-mew": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "elscreen-mew", + "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh", + "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" + }, + "recipe": { + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140629.1016", + "deps": [ + "elscreen" + ] + }, + "helm-backup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "helm-backup", + "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76", + "rev": "184026b9fe454aab8e7730106b4ca494fe307769" + }, + "recipe": { + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.707", + "deps": [] + }, + "rinari": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx", + "rev": "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4" + }, + "recipe": { + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141227.19", + "deps": [ + "cl-lib", + "emacs", + "irony" + ] + }, + "bm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joodland", + "repo": "bm", + "sha256": "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x", + "rev": "b91f87c8f78d2430edc376830d5ba15f45d28637" + }, + "recipe": { + "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1803", + "deps": [] + }, + "ox-textile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-textile", + "sha256": "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg", + "rev": "0dfca070e35bc6f4a412319e2474bb88666c8c2d" + }, + "recipe": { + "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151114.2225", + "deps": [ + "org" + ] + }, + "helm-prosjekt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140129.117", + "deps": [ + "helm", + "prosjekt" + ] + }, + "ucs-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "ucs-utils", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m", + "rev": "cbfd42f822bf5717934fa2d92060e6e24a813433" + }, + "recipe": { + "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.635", + "deps": [ + "emacs" + ] + }, + "string-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "string-utils", + "sha256": "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq", + "rev": "c2232d691617973ecf12a970c6008a161c21da14" + }, + "recipe": { + "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [ + "list-utils" + ] + }, + "nose": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/durin42/nosemacs", + "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm", + "rev": "194d7789bf79" + }, + "recipe": { + "sha256": "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140520.1148", + "deps": [] + }, + "egison-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "egisatoshi", + "repo": "egison3", + "sha256": "0sz506yx59gjkphyi3fp07i8h0mkm7gr73xfbjdhn29dss0xl7x0", + "rev": "dbb8773f8a47655f3b5311e0a87f63c7b39f60db" + }, + "recipe": { + "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150827.2329", + "deps": [] + }, + "hy-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hylang", + "repo": "hy-mode", + "sha256": "16z43mpj839bzafhyzpcbw6bmv4ckrf9ryslvg6z6q4g93k64q2m", + "rev": "af0d848b069ca0cda3ed177d37d94de117f7ffec" + }, + "recipe": { + "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.743", + "deps": [] + }, + "shader-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "midnightSuyama", + "repo": "shader-mode", + "sha256": "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4", + "rev": "5d5fcbc614f8d7e9226730dd587faf14115b0e6f" + }, + "recipe": { + "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150719.1620", + "deps": [ + "cider", + "helm" + ] + }, + "ido-occur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-occur", + "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490", + "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" + }, + "recipe": { + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150814.949", + "deps": [] + }, + "outshine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outshine", + "sha256": "0g6h5ifmzxvwgyi7qrkkmr8s28kpq8xhmv7rkr3gphqrh5hyppl8", + "rev": "d1847614727a060e01d1d2f33b414a1b49d3e85b" + }, + "recipe": { + "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150819.620", + "deps": [] + }, + "evil-mark-replace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-mark-replace", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv", + "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" + }, + "recipe": { + "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "helm-hoogle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "haskell-config", + "sha256": "052hzybign54qawdm1fflsaz4bcwflycksv6wb1nw1jv79s2qbap", + "rev": "8e4e28c3852376510861f64f00009a63b8ec0c7d" + }, + "recipe": { + "sha256": "0672mqm0c261mknbgc3a4pahq27gw2pfklflxl1y4ykbs6q7vcyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150919.421", + "deps": [ + "emacs", + "helm" + ] + }, + "kixtart-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ryrun", + "repo": "kixtart-mode", + "sha256": "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb", + "rev": "1c2356797e7b766bbaaa2b341176a8b10499cd79" + }, + "recipe": { + "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150611.1104", + "deps": [ + "emacs" + ] + }, + "helm-ag": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ag", + "sha256": "19ymwdi9ld1myl66a4xsy32ysni8wb5qi80yh5l7v0bmgp6ybdqq", + "rev": "679ce0cc4a36cc377fa9f438705c3c8be9a944f3" + }, + "recipe": { + "sha256": "023zvgmi5b5b2qga3jqd7jrq9ap8n3rhvl6jrv9fsi565sg1fv43", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.335", + "deps": [ + "cl-lib", + "helm" + ] + }, + "direx-grep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "direx-grep", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h", + "rev": "1109a512a80b2673a70b18b8568514049017faad" + }, + "recipe": { + "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090804.1752", + "deps": [] + }, + "cycle-resize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pierre-lecocq", + "repo": "cycle-resize", + "sha256": "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3", + "rev": "1a5ed3ff6f7f5dc097c38b4361708b6882af692c" + }, + "recipe": { + "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1534", + "deps": [] + }, + "centimacro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "centimacro", + "sha256": "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh", + "rev": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742" + }, + "recipe": { + "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140306.827", + "deps": [] + }, + "cmake-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Kitware", + "repo": "CMake", + "sha256": "1imzpf467rkmgsifbycc81jqvkpwhdi1ngr39h9i3z2j7nx7f023", + "rev": "1d73f6525c523661e51173829b327acf9de9dfc4" + }, + "recipe": { + "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151012.926", + "deps": [] + }, + "eyedropper": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/eyedropper.el", + "sha256": "1bs8239sv3mjyj2dw72wrl7yp1ds7gs3cs4a9ds7hlzzz7qw9s6s" + }, + "recipe": { + "sha256": "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150509.1545", + "deps": [ + "hexrgb" + ] + }, + "smart-forward": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "smart-forward.el", + "sha256": "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha", + "rev": "7b6dbfdbd4b646376a567c70e1a161545431b72b" + }, + "recipe": { + "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140430.213", + "deps": [ + "expand-region" + ] + }, + "majapahit-theme": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "franksn", + "repo": "majapahit-theme", + "sha256": "0bn2qllfv0iwssdc17g2vhmkk7i9iygh7wji6nbksv0ssgxbfvc0", + "rev": "3b753a972f716a10f6a4ed1f596ceea348d6b489" + }, + "recipe": { + "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.2232", + "deps": [] + }, + "interleave": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "interleave", + "sha256": "13bsszx4rsq3awg6zgzfdwgflkldw38nihkc9nldfixzvw1gdqqv", + "rev": "4b8ce53ee8ca075029ce88d203735256a875e516" + }, + "recipe": { + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.835", + "deps": [] + }, + "workgroups2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pashinin", + "repo": "workgroups2", + "sha256": "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n", + "rev": "928d509157ec8a4a2e343b6115dff034c3243a7a" + }, + "recipe": { + "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150214.648", + "deps": [ + "emacs" + ] + }, + "extempore-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "extemporelang", + "repo": "extempore-emacs-mode", + "sha256": "0nry653cd3qzsj6asrf9hh4zkzhz8nnwjrg1wp17f5ggzpjyybjw", + "rev": "a08be9f0cec32c2818f93a6f7633c14fc2013e61" + }, + "recipe": { + "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.51", + "deps": [ + "emacs" + ] + }, + "oauth": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "psanford", + "repo": "emacs-oauth", + "sha256": "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj", + "rev": "ee4744ad76a1560281b0c4944575a3bd598c6458" + }, + "recipe": { + "sha256": "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130127.1951", + "deps": [] + }, + "delight": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/delight.el", + "sha256": "1gap2icsqi7cryfvcffh41zqg2ghl4y7kg9pngzdfjrc3m7sf635" + }, + "recipe": { + "sha256": "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141128.837", + "deps": [] + }, + "apropospriate-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "apropospriate-theme", + "sha256": "1jw6am5c8szrrlff1qfh0hpyi5p5nqnhs8kywl5s4bpj1gxgq8dh", + "rev": "fdd70f890c2fd25882de011c1327ddab143937ce" + }, + "recipe": { + "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.956", + "deps": [] + }, + "speech-tagger": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "speech-tagger", + "sha256": "03vvv8s5l3218231hm7l6bkl990b0ypc8n72lda1zxk6kjyr1q25", + "rev": "10135e324630d25ae8c16f052cf4d97bda592164" + }, + "recipe": { + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140130.1136", + "deps": [] + }, + "wakatime-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wakatime", + "repo": "wakatime-mode", + "sha256": "1bcdvk5bg5yi0qq0wd3w9wl38s0brrafz52bzsracj3wffswjg1n", + "rev": "883f969c1502994b55912c6ade7155220e3c2cea" + }, + "recipe": { + "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.1830", + "deps": [] + }, + "evil-vimish-fold": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alexmurray", + "repo": "evil-vimish-fold", + "sha256": "0m4ipz3x5k3gbyjgsnhl6rr4jvhqn61cyc1gmv0mkc2pbqqs1ijq", + "rev": "d187a685d9610ec8159040c90030cb8ada4f54a5" + }, + "recipe": { + "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151006.2326", + "deps": [ + "emacs", + "evil", + "vimish-fold" + ] + }, + "try": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Try", + "sha256": "05nzchk7jia9g7b3ww4m3rgg0aylrfkpiz13cylv2bk79rwhzifc", + "rev": "464cfb73599c88a4b57c83adfa93173c41d28a35" + }, + "recipe": { + "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110901.330", + "deps": [] + }, + "flymake-elixir": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "flymake-elixir", + "sha256": "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn", + "rev": "3810566cffe35d04cc3f01e27fe397d68d52f802" + }, + "recipe": { + "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130810.917", + "deps": [] + }, + "flatui-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "flatui-theme.el", + "sha256": "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr", + "rev": "80d1967ea73c10aa8aa10620c2b343010e9ce5b9" + }, + "recipe": { + "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150531.343", + "deps": [] + }, + "seti-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "caisah", + "repo": "seti-theme", + "sha256": "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn", + "rev": "f2f472af00f251f8cdced29faadbb3380d3c7ff1" + }, + "recipe": { + "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150314.322", + "deps": [] + }, + "git-link": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "git-link", + "sha256": "1la3zzcjnmzgxkd4ljr9b5335ddbrvid47kfzp2s358xknzmbsdf", + "rev": "00a8ed924d837d43bfdc486ab389ee400b6c2a8f" + }, + "recipe": { + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150927.1225", + "deps": [] + }, + "evil-nerd-commenter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-nerd-commenter", + "sha256": "1c8zh5vykl4v57jrxcpyrbd1ih6nv306sfmb6ihiak6ncvllp8cx", + "rev": "770981cffd7e8d967e6291c738534a04bcd7f753" + }, + "recipe": { + "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.625", + "deps": [] + }, + "aes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sauermann", + "repo": "emacs-aes", + "sha256": "0jlqk3kn2920b0dfmwy511x83hkmclb646qws3im0p75qcnyr4s1", + "rev": "61d0da553ad980e5b9079444aed8214a28b409d9" + }, + "recipe": { + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.1603", + "deps": [] + }, + "vcl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ssm", + "repo": "vcl-mode", + "sha256": "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj", + "rev": "9f315654ec2ab13e5a14b752cac57dc832bef893" + }, + "recipe": { + "sha256": "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.1323", + "deps": [] + }, + "orgit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "orgit", + "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1", + "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" + }, + "recipe": { + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130122.1053", + "deps": [] + }, + "browse-at-remote": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rmuslimov", + "repo": "browse-at-remote", + "sha256": "0q71ah62q6acivhxzsw9j1ky54i9hhlnj97sjn8bxrxx7nw01gf7", + "rev": "d7e155e9ea7acfc9dadd334fe41ac57e93f38674" + }, + "recipe": { + "sha256": "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1628", + "deps": [ + "cl-lib", + "f", + "s" + ] + }, + "pkg-info": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "pkg-info.el", + "sha256": "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2", + "rev": "4dbe328c9eced79e0004e3fdcd7bfb997a928be5" + }, + "recipe": { + "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150517.643", + "deps": [ + "epl" + ] + }, + "dollaro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "dollaro", + "sha256": "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj", + "rev": "500127f0172ac7a1eec627e026b59136580a74ac" + }, + "recipe": { + "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.702", + "deps": [ + "s" + ] + }, + "rustfmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fbergroth", + "repo": "emacs-rustfmt", + "sha256": "0i2r14ifpqjcxcflhl38iayk53920vl616y770lwf77zvhnxrmm9", + "rev": "b54e77b2287bfc558c0b4dbfa8908b4face48320" + }, + "recipe": { + "sha256": "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140626.1925", + "deps": [ + "emacs", + "helm" + ] + }, + "flycheck-protobuf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "flycheck-protobuf", + "sha256": "0dq4ikqskkpcl3z4s5vl6h4f4bx4dsgyn2knlr3x4wjcgzyrv0qn", + "rev": "2f0ab48b1b2e8f6c4b86ce876598f9ac9868d1da" + }, + "recipe": { + "sha256": "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150731.512", + "deps": [ + "protobuf-mode" + ] + }, + "evil-space": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-space", + "sha256": "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy", + "rev": "a9c07284d308425deee134c9d88a2d538dd229e6" + }, + "recipe": { + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.628", + "deps": [ + "evil" + ] + }, + "ipretty": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "ipretty", + "sha256": "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l", + "rev": "6f6da8907abea53d6d246d61e1a0f4ebeb0b9f38" + }, + "recipe": { + "sha256": "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140407.20", + "deps": [] + }, + "wcheck-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "wcheck-mode", + "sha256": "15ghfb6bpd1lcxaf04fcr9n62pjcbl65g4mgdhig8yawnwh0x05v", + "rev": "6f5e9faabb04f9e7c6698b90487ebe5913a13aed" + }, + "recipe": { + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1205", + "deps": [] + }, + "overseer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "overseer.el", + "sha256": "1bfj56ackza8c1jja660v6ss9ii7prcaim5plnfqsv3k149r8qlh", + "rev": "db27cbbb10fb9b072d638a1b345102b42b20a37d" + }, + "recipe": { + "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1839", + "deps": [] + }, + "win-switch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "win-switch", + "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i", + "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" + }, + "recipe": { + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150208.2111", + "deps": [] + }, + "nrepl-sync": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lein-sync", + "sha256": "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1", + "rev": "bab53a2361526d63a24cda176d07a1247bf5b399" + }, + "recipe": { + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140807.1054", + "deps": [ + "cider" + ] + }, + "smtpmail-multi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "smtpmail-multi", + "sha256": "0rhpnijp72jsl4gzhwz0z387f55vv3fp0zwki0fi5jlkzjamnnqg", + "rev": "21885f6f7ec46facb64fafc2caa2be01caa4b6db" + }, + "recipe": { + "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130921.2242", + "deps": [] + }, + "gitty": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "gitty", + "sha256": "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500", + "rev": "c7c3d622d59531d023b9184d2479316c28045ca2" + }, + "recipe": { + "sha256": "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.148", + "deps": [] + }, + "dmenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-dmenu", + "sha256": "0spj80vq6m2kqbdy6y1vh9fzwqyqkij30457d2n39kjn2gzbyar8", + "rev": "b9be62dc33b59fdd34b449699801c1772af84284" + }, + "recipe": { + "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.702", + "deps": [ + "cl-lib" + ] + }, + "stem": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "stem", + "sha256": "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0", + "rev": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac" + }, + "recipe": { + "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131102.609", + "deps": [] + }, + "erefactor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-erefactor", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i", + "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" + }, + "recipe": { + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100703.741", + "deps": [] + }, + "livescript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yhisamatsu", + "repo": "livescript-mode", + "sha256": "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg", + "rev": "90a918d9686e256e6d4d439cc20f24dad8d3b804" + }, + "recipe": { + "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140612.2321", + "deps": [] + }, + "identica-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gabrielsaldana", + "repo": "Emacs-Identica-mode", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk", + "rev": "cf9183ee11ac922e85c7c908f04e2d00b03111b3" + }, + "recipe": { + "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130204.1653", + "deps": [] + }, + "org-ehtml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "org-ehtml", + "sha256": "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq", + "rev": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0" + }, + "recipe": { + "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150506.1858", + "deps": [ + "emacs", + "web-server" + ] + }, + "mentor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skangas", + "repo": "mentor", + "sha256": "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q", + "rev": "f5d653348140cdab1d8ee9143b14a50ea88ed3fb" + }, + "recipe": { + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.657", + "deps": [] + }, + "dtrt-indent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jscheid", + "repo": "dtrt-indent", + "sha256": "0x8c3h3jvyn2462r0sagz63vv9pr5ivfzkshr69603ibyfgqxxkp", + "rev": "7f212888fbacc262080ab2740eda673b376c6b7b" + }, + "recipe": { + "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151013.414", + "deps": [] + }, + "bracketed-paste": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hchbaw", + "repo": "bracketed-paste.el", + "sha256": "00463z740xrkr4yz46g9zxz23zy878jgvba81pnwvg4l6hd3kc8s", + "rev": "6c2aee346e2f5cdb4ed1386c3e3c853cecd72eff" + }, + "recipe": { + "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140222.2001", + "deps": [ + "emacs" + ] + }, + "ac-alchemist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-alchemist", + "sha256": "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f", + "rev": "b1891c3d41aed83f61d78a609ea97be5cc2758d9" + }, + "recipe": { + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1857", + "deps": [] + }, + "which-key": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-which-key", + "sha256": "0d722q5g05q0kbxlbv0iacv7d7r9dvk15g3i4i66v2p6knd7zqpx", + "rev": "f4a1b4283bf09475e5255a889a34784501ad2fc0" + }, + "recipe": { + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.1112", + "deps": [ + "emacs" + ] + }, + "myanmar-input-methods": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yelinkyaw", + "repo": "emacs-myanmar-input-methods", + "sha256": "0177q8hm51bcvb4i46rwnimngvy9y32p3as19zwmfbznp2sc5963", + "rev": "601f5342ee2fd01263f6e04579d90cc22ad623f7" + }, + "recipe": { + "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150806.707", + "deps": [] + }, + "spaces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "chumpy-windows", + "sha256": "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs", + "rev": "164be41b588b615864258c502583100d3ccfe13e" + }, + "recipe": { + "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130610.249", + "deps": [] + }, + "esxml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tali713", + "repo": "esxml", + "sha256": "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3", + "rev": "ca09423c3172820ba97dcc68204911d06f55f851" + }, + "recipe": { + "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141001.1413", + "deps": [] + }, + "dpaste": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gregnewman", + "repo": "dpaste.el", + "sha256": "11s4vxr6waswyx4lz3q70s8xdz0v7354sn0pfwj42mmww4pzkizs", + "rev": "d073030e6b7feae84f0e2118e5fc454833848629" + }, + "recipe": { + "sha256": "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150528.800", + "deps": [] + }, + "python-cell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thisch", + "repo": "python-cell.el", + "sha256": "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav", + "rev": "ccacd91a19be784860d687eb1e8ce88fddaacaf6" + }, + "recipe": { + "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131029.1816", + "deps": [] + }, + "japanese-holidays": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "japanese-holidays", + "sha256": "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv", + "rev": "3c82e33a942e495bbfdf3f40d965dafc87b51336" + }, + "recipe": { + "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150208.1937", + "deps": [ + "cl-lib" + ] + }, + "pyimpsort": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "pyimpsort.el", + "sha256": "003hd5igv152yr4fa47n2l5jhwvdlfhw7bap1dkm1i7i898i6yds", + "rev": "e90d1b09e35356e3eed890fe38875bc7216d0f4e" + }, + "recipe": { + "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150927.1317", + "deps": [ + "emacs" + ] + }, + "fwb-cmds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "fwb-cmds", + "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm", + "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" + }, + "recipe": { + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131209.1800", + "deps": [] + }, + "thread-dump": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nd", + "repo": "thread-dump.el", + "sha256": "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p", + "rev": "1cee07775ac8c13bb52217be6c383562c617542b" + }, + "recipe": { + "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130323.1225", + "deps": [] + }, + "highlight-stages": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "highlight-stages", + "sha256": "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg", + "rev": "c5a01b29cf79cebd09da863d45f9f35f6ad3bd06" + }, + "recipe": { + "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150421.2257", + "deps": [] + }, + "notmuch-labeler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "notmuch-labeler", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18", + "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" + }, + "recipe": { + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150731.845", + "deps": [] + }, + "phi-search": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "phi-search", + "sha256": "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62", + "rev": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69" + }, + "recipe": { + "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090528.136", + "deps": [] + }, + "ahungry-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ahungry", + "repo": "color-theme-ahungry", + "sha256": "0dlk53zij907413fl6wh02i8nwzrbbrm22nn3i9h5sc8x9dhzazg", + "rev": "52b050992ef6fe0e6e57b51bcb5c98e02c616541" + }, + "recipe": { + "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151014.2138", + "deps": [ + "emacs" + ] + }, + "spaceline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "spaceline", + "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b", + "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" + }, + "recipe": { + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130526.1014", + "deps": [] + }, + "gscholar-bibtex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gscholar-bibtex", + "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk", + "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" + }, + "recipe": { + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151022.1225", + "deps": [] + }, + "elscreen-multi-term": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wamei", + "repo": "elscreen-multi-term", + "sha256": "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51", + "rev": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea" + }, + "recipe": { + "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131217.912", + "deps": [ + "sql" + ] + }, + "anyins": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "anyins", + "sha256": "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n", + "rev": "83844c17ac9b5b6c7655ee556b75689e4c8ea663" + }, + "recipe": { + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.154", + "deps": [] + }, + "google-this": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "emacs-google-this", + "sha256": "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq", + "rev": "5274167553071fadaebe9c2d3b061470a684ae22" + }, + "recipe": { + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131228.859", + "deps": [] + }, + "iterator": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "iterator", + "sha256": "08gagq74702x65dy75n2f53fsh806nppnidim9z6ycp8qw1ibyfp", + "rev": "7bd349d559a6e1c3da575e579a7cb35a7bee9190" + }, + "recipe": { + "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150321.2325", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "jss": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "segv", + "repo": "jss", + "sha256": "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83", + "rev": "41749257aecf13c7bd6ed489b5ab3304d06e40bc" + }, + "recipe": { + "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150417.332", + "deps": [] + }, + "package-safe-delete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "package-safe-delete", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd", + "rev": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194" + }, + "recipe": { + "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150116.1007", + "deps": [ + "emacs", + "epl" + ] + }, + "emacsc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "emacsc", + "sha256": "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7", + "rev": "02325c640232ee184314eb58d0051f365f7f085c" + }, + "recipe": { + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150807.457", + "deps": [] + }, + "react-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johnmastro", + "repo": "react-snippets.el", + "sha256": "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7", + "rev": "1b56f99e1f26c6dea4315c14fa58a851caa9d84f" + }, + "recipe": { + "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.1740", + "deps": [ + "yasnippet" + ] + }, + "dirtree-prosjekt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140129.304", + "deps": [ + "dirtree", + "prosjekt" + ] + }, + "indicators": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "indicators.el", + "sha256": "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ", + "rev": "c6d520eb3536cf3a77c635fa36fec031d3f84fe4" + }, + "recipe": { + "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130217.1605", + "deps": [] + }, + "fuzzy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "fuzzy-el", + "sha256": "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv", + "rev": "534d723ad2e06322ff8d9bd0ba4863d243f698e7" + }, + "recipe": { + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150729.2237", + "deps": [] + }, + "evil-snipe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hlissner", + "repo": "evil-snipe", + "sha256": "0iyk8pn7pc3js3ppn46myzfr2i0b47wwrzv72939aydpw64rx76q", + "rev": "71f0f7df2300be390227e3f78619630c32bddbe9" + }, + "recipe": { + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151106.1602", + "deps": [ + "evil" + ] + }, + "jedi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.1125", + "deps": [] + }, + "cask-package-toolset": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "cask-package-toolset.el", + "sha256": "12bpf5vk2na428h1fc3qb6nh7hyhxfvmzpcs45ym9ddjvdzwb0gs", + "rev": "e691d8815586bef059de26bedbd2162f64ca0827" + }, + "recipe": { + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.18", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140829.859", + "deps": [] + }, + "toml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "emacs-toml", + "sha256": "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban", + "rev": "9633a6872928e737a2335aae1065768b23d8c3b3" + }, + "recipe": { + "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130903.755", + "deps": [] + }, + "grin": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/dariusp686/emacs-grin", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2", + "rev": "f541aa22da52" + }, + "recipe": { + "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110806.158", + "deps": [] + }, + "find-things-fast": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eglaysher", + "repo": "find-things-fast", + "sha256": "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx", + "rev": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03" + }, + "recipe": { + "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150519.1726", + "deps": [] + }, + "github-issues": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "inkel", + "repo": "github-issues.el", + "sha256": "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv", + "rev": "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1" + }, + "recipe": { + "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120425.1735", + "deps": [] + }, + "window-numbering": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "window-numbering.el", + "sha256": "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy", + "rev": "575ad203545b01e21d28fefc0d8b809d1016ea3a" + }, + "recipe": { + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150228.1447", + "deps": [] + }, + "company-math": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "company-math", + "sha256": "0pxg9851pl7ck58qiz4swj2c0by914d4bn14c5imfvdn5hxnq19i", + "rev": "f5cedcfa73e5ddd445167969e87ddf8e1bbd2bc1" + }, + "recipe": { + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140123.2102", + "deps": [] + }, + "creole": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "elwikicreole", + "sha256": "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv", + "rev": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53" + }, + "recipe": { + "sha256": "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130813.1145", + "deps": [] + }, + "imgix": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "imgix", + "repo": "imgix-emacs", + "sha256": "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42", + "rev": "4906ff0b4f7c9e84a5beb81630fe6d522ec91eaa" + }, + "recipe": { + "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.427", + "deps": [ + "anything", + "imakado" + ] + }, + "powerline-evil": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "raugturi", + "repo": "powerline-evil", + "sha256": "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r", + "rev": "98b3a102b6dba6632aa0755a7257300c9b164309" + }, + "recipe": { + "sha256": "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151112.910", + "deps": [ + "evil", + "powerline" + ] + }, + "bog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kyleam", + "repo": "bog", + "sha256": "0p9smhj53xy2flfcf988jq20kgf5jj4w3z8h9lb7378vwai0y70i", + "rev": "ea99bc6b8108bd3b2ff767541fa264db4dbf04a5" + }, + "recipe": { + "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.2151", + "deps": [ + "cl-lib" + ] + }, + "pydoc-info": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jonwaltman/pydoc-info", + "sha256": "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh", + "rev": "151d877c8fb8" + }, + "recipe": { + "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110301.234", + "deps": [] + }, + "evil-indent-textobject": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-indent-textobject", + "sha256": "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz", + "rev": "70a1154a531b7cfdbb9a31d6922482791e20a3a7" + }, + "recipe": { + "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130831.1719", + "deps": [ + "evil" + ] + }, + "fixmee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "fixmee", + "sha256": "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic", + "rev": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084" + }, + "recipe": { + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.135", + "deps": [] + }, + "ox-tiddly": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org8-wikiexporters", + "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s", + "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" + }, + "recipe": { + "sha256": "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121125.1337", + "deps": [] + }, + "semi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "semi", + "sha256": "1s1wjk2ba5spqc0vhj8kmfsm8vzmza06pnjkwal084v8dnwz0zz3", + "rev": "35c9ff77db07ace4b7178189c1fe45118ebf9a65" + }, + "recipe": { + "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150525.619", + "deps": [ + "flim" + ] + }, + "boron-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-boron-theme", + "sha256": "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb", + "rev": "ea5873139424d6ca013b915876daf0399432015b" + }, + "recipe": { + "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150117.1152", + "deps": [ + "emacs" + ] + }, + "relax": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "relax.el", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66", + "rev": "6e33892623ab87833082262321dc8e1977209626" + }, + "recipe": { + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131029.1634", + "deps": [ + "json" + ] + }, + "omni-kill": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-kill.el", + "sha256": "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c", + "rev": "4c8dbb6b2c9f1afc0f82077c04eab022e5387e85" + }, + "recipe": { + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150527.149", + "deps": [] + }, + "jenkins-watch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ataylor284", + "repo": "jenkins-watch", + "sha256": "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66", + "rev": "37b84dfbd98240a57ff798e1ff8bc7dba2913577" + }, + "recipe": { + "sha256": "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121004.1826", + "deps": [] + }, + "git": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "git.el", + "sha256": "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d", + "rev": "2b523c1975d4f258effaf826656c4b7120b2a19f" + }, + "recipe": { + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150707.123", + "deps": [] + }, + "easy-escape": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cpitclaudel", + "repo": "easy-escape", + "sha256": "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys", + "rev": "c87d76e5001f36fbbf975e9ce7e776acd2dd7776" + }, + "recipe": { + "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140731.1422", + "deps": [ + "string-utils" + ] + }, + "bats-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "bats-mode", + "sha256": "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf", + "rev": "9469a9a9de4fe7d1aab4600294c43898bf5cf638" + }, + "recipe": { + "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141115.901", + "deps": [] + }, + "requirejs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ricardmo", + "repo": "requirejs-mode", + "sha256": "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv", + "rev": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92" + }, + "recipe": { + "sha256": "1sq1kim17bcmh39106vfgm7gq9nj9943lw8by0bpi5qr8xdjsn5r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130215.1504", + "deps": [] + }, + "emmet-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "smihica", + "repo": "emmet", + "sha256": "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj", + "rev": "3a29a1ae17271a3dfe3cd47db034ee4036b2b144" + }, + "recipe": { + "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.938", + "deps": [] + }, + "trident-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johnmastro", + "repo": "trident-mode.el", + "sha256": "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym", + "rev": "ad3201f47e114de35df189c3d80f0fdea9507ea9" + }, + "recipe": { + "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130726.1407", + "deps": [ + "dash", + "emacs", + "skewer-mode", + "slime" + ] + }, + "gnu-apl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lokedhs", + "repo": "gnu-apl-mode", + "sha256": "1dfkjzx33wzafj9cfm1bpj99bmnq5a8qrvzmhjykr7mfkca79ymz", + "rev": "fb1686403e4842b6f44eebe80e5acf86a5151d88" + }, + "recipe": { + "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1059", + "deps": [ + "emacs" + ] + }, + "edbi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-edbi", + "sha256": "1x5y1d5crc48iddlsf6irkr017p32a9xjcmlm9wf3zggmr95fr3s", + "rev": "3edb409245d8a3bca7a5b25c70c98954c0ab42b2" + }, + "recipe": { + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140920.235", + "deps": [ + "concurrent", + "ctable", + "epc" + ] + }, + "markdown-toc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "markdown-toc", + "sha256": "0jgr327qlh7acwi6sld27xdsvr89parspk6wmfklwszvy1v13633", + "rev": "c2ac578113015ba7d3377c0756a4d00c61ba2e17" + }, + "recipe": { + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.514", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150817.1016", + "deps": [ + "sly" + ] + }, + "ac-html": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ac-html", + "sha256": "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5", + "rev": "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2" + }, + "recipe": { + "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140407.2325", + "deps": [] + }, + "swiper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper", + "sha256": "1262k48ky88m3jgdryyxm9dqzsd2lc17vcra93lp3yrr6iqn55dl", + "rev": "d74fab4a5b98910bd09956d3cb9b3376d6287840" + }, + "recipe": { + "sha256": "13lld7kjz1n1ryxvrfsy0iym5l9m9ybrf7bpcmkzsalpp15j3mvm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.300", + "deps": [ + "emacs" + ] + }, + "simple-call-tree": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vapniks", + "repo": "simple-call-tree", + "sha256": "09blcc1aj1lbqr1jcjm8dlq13s3plrg1qbp9vr3sp4dxyhjpimjj", + "rev": "9f2fd423a3b86878d84e8c97e3ba45647b4d165e" + }, + "recipe": { + "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1625", + "deps": [] + }, + "eldoc-eval": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "eldoc-eval", + "sha256": "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar", + "rev": "e87b89f89a2aed0bb3b31c014fc1b72f00413866" + }, + "recipe": { + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150512.706", + "deps": [] + }, + "elm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jcollard", + "repo": "elm-mode", + "sha256": "055bnhkw0nvry3n20a980nrq3y2rlihp59pmrm1s4rlb0f5drckc", + "rev": "3462740eb2add23fc294aa5b2b549ee08f5f711e" + }, + "recipe": { + "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.556", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.1509", + "deps": [ + "emacs" + ] + }, + "speed-type": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hagleitn", + "repo": "speed-type", + "sha256": "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag", + "rev": "d3a6745dbaaf6b1eacee10ce9b50108482dbe758" + }, + "recipe": { + "sha256": "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150120.2234", + "deps": [ + "cl-lib" + ] + }, + "el-pocket": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pterygota", + "repo": "el-pocket", + "sha256": "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7", + "rev": "e79b5a4c7762be4ea88f43f17203d44a5c8ad310" + }, + "recipe": { + "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.1728", + "deps": [ + "emacs", + "web" + ] + }, + "helm-descbinds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-descbinds", + "sha256": "1f7k0h1g1835fsvx6vc272bk62jf4y1r4qynjy7zbhzk13m6k6z2", + "rev": "f8ef6e195e7b0a9f167d2da4810a97baebbe2228" + }, + "recipe": { + "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.849", + "deps": [ + "helm" + ] + }, + "popup-switcher": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kostafey", + "repo": "popup-switcher", + "sha256": "1gcf0dzw02jy5l7xzb4w5llzlinc1nvs72d6aydwp70cwziks475", + "rev": "a858f680898ef9631c21eebbe5cb527622179305" + }, + "recipe": { + "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151209.1647", + "deps": [ + "emacs", + "flycheck" + ] + }, + "wispjs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "wispjs-mode", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x", + "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" + }, + "recipe": { + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130802.611", + "deps": [] + }, + "neotree": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jaypei", + "repo": "emacs-neotree", + "sha256": "0ig7r2shwp37sfmbxb4k4rl3hyssj4g6va0l31qx8n5z8dpfdxxy", + "rev": "cd02617453a0a780bc8fa13efb2426f1623cfd4d" + }, + "recipe": { + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151101.807", + "deps": [] + }, + "magit-topgit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-topgit", + "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33", + "rev": "732de604c31c74e9da24616428c6e9668b57c881" + }, + "recipe": { + "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151018.1231", + "deps": [ + "emacs", + "magit" + ] + }, + "gildas-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "smaret", + "repo": "gildas-mode", + "sha256": "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw", + "rev": "23e8a2e6066ff74af592de6d5d0d858442e2bf8a" + }, + "recipe": { + "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150919.1701", + "deps": [ + "emacs", + "polymode" + ] + }, + "express": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "express", + "sha256": "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7", + "rev": "93dae7377eace4a5413ba99aecb6f26f90798725" + }, + "recipe": { + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [ + "string-utils" + ] + }, + "easy-lentic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tumashu", + "repo": "easy-lentic", + "sha256": "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0", + "rev": "1b59ebe748e80488512034f885ad6540ad037382" + }, + "recipe": { + "sha256": "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.357", + "deps": [ + "cl-lib", + "lentic" + ] + }, + "ox-twiki": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dfeich", + "repo": "org8-wikiexporters", + "sha256": "1rmlwx2svnsf0cg2xf0a09ncy4kx8jgn3rrnpa89z0brlafxx25s", + "rev": "0cd92e84ad22c103b078f285ec66ff98f7ca98ca" + }, + "recipe": { + "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.440", + "deps": [ + "cl-lib", + "org" + ] + }, + "company-web": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "company-web", + "sha256": "1a9qx041w7i1ahg6rmi82hv161k57z4aljzm8wpa9wrfj8a6df2q", + "rev": "2b426fc09b45b0e6bb95bb27d8ef22789c72a1d8" + }, + "recipe": { + "sha256": "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.517", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150821.614", + "deps": [] + }, + "howdoi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "emacs-howdoi", + "sha256": "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8", + "rev": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f" + }, + "recipe": { + "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150203.1843", + "deps": [] + }, + "helm-recoll": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-recoll", + "sha256": "1nl8acbvkbrgbxc4h2i10gq0bngyk74cfl8hi50cdq6agrsrfa3r", + "rev": "a13c5f372b470e1247a62834021931dcb4e50c96" + }, + "recipe": { + "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.854", + "deps": [ + "helm" + ] + }, + "anything-milkode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "anything-milkode", + "sha256": "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7", + "rev": "d6b2be13a351c41793e9cc13c1320953939d3ac9" + }, + "recipe": { + "sha256": "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150804.1151", + "deps": [] + }, + "emr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "emacs-refactor", + "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4", + "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" + }, + "recipe": { + "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "1hjrnz3z5ac7gcly6jqxsv7v3b84xvyiv1dlbaivgic5rwp2n9mx", + "rev": "de6f6d7be1ba4e2d96cdbd05853f07ebbcd091cc" + }, + "recipe": { + "sha256": "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1623", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141112.1211", + "deps": [ + "makey" + ] + }, + "esqlite-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-esqlite", + "sha256": "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3", + "rev": "fae9826cbc255b0f0686a801288f1441bda5f631" + }, + "recipe": { + "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.250", + "deps": [ + "esqlite", + "helm" + ] + }, + "docean": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "docean.el", + "sha256": "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky", + "rev": "dcc296782b08531b768d3cf851cc7959ec486bf1" + }, + "recipe": { + "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141102.854", + "deps": [] + }, + "typo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "typoel", + "sha256": "0f1rln2dqxgx2jdbs5n9czg930xqkzrknz4wqxv7zvgwlq4qpkvk", + "rev": "a6b9e0400706aeda99fe29012ff017bef300f580" + }, + "recipe": { + "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150910.843", + "deps": [] + }, + "org-jekyll": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juanre", + "repo": "org-jekyll", + "sha256": "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5", + "rev": "66300a1a6676ab168663178e7a7c954541a39992" + }, + "recipe": { + "sha256": "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130508.439", + "deps": [ + "org" + ] + }, + "foreman-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "foreman-mode", + "sha256": "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx", + "rev": "9496018b0c202442248d4983ec5345501ea18a84" + }, + "recipe": { + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151107.804", + "deps": [ + "auctex", + "org", + "s" + ] + }, + "crab": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "puffnfresh", + "repo": "crab-emacs", + "sha256": "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl", + "rev": "6d66844856c1864157cef3dea9332c319b05d7d5" + }, + "recipe": { + "sha256": "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150126.2337", + "deps": [ + "json", + "websocket" + ] + }, + "slideview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-slideview", + "sha256": "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az", + "rev": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c" + }, + "recipe": { + "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140314.817", + "deps": [] + }, + "direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "direx-el", + "sha256": "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr", + "rev": "9497231cf50767987494718db073731b05a4f970" + }, + "recipe": { + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151023.1806", + "deps": [] + }, + "yaxception": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "yaxception", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8", + "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" + }, + "recipe": { + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150105.852", + "deps": [] + }, + "haskell-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-mode", + "sha256": "1z4yagdzcl66ak0wiiqfxpy1l9j0rh5kb5ir597w2lpahgrxz9p7", + "rev": "8ef95feb969df21905d8b8942a32155fce21b1cd" + }, + "recipe": { + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.950", + "deps": [ + "cl-lib" + ] + }, + "icicles": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/icicles.el", + "sha256": "1vr4wp808rv8kiq324ph2jfbqdw1wzii41rca45v5w21gway169s" + }, + "recipe": { + "sha256": "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1201", + "deps": [] + }, + "linum-relative": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "linum-relative", + "sha256": "0a3vljbgmbzcw6a4pb0pwf47h3rmcmjgzpgy8fa28a3j0g0z7jrj", + "rev": "3bed92ac52495938f3f23b626b2097e64a3d9dc0" + }, + "recipe": { + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.1956", + "deps": [] + }, + "fingers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "fingers.el", + "sha256": "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg", + "rev": "8fc8ae143736c4761fef69cb53c6083c5be5d914" + }, + "recipe": { + "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150809.1916", + "deps": [] + }, + "flymake-jslint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-jslint", + "sha256": "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls", + "rev": "68ca28a88cffdd317f50c712b09abd2ccda8d7bc" + }, + "recipe": { + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130613.402", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-nim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ALSchwalm", + "repo": "flycheck-nim", + "sha256": "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg", + "rev": "4cf6a70864e594c24b33c1032e2692ad1b310d6c" + }, + "recipe": { + "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150911.1847", + "deps": [ + "dash", + "flycheck" + ] + }, + "org-bullets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "org-bullets", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w", + "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" + }, + "recipe": { + "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140918.1337", + "deps": [] + }, + "org-beautify-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jonnay", + "repo": "emagicians-starter-kit", + "sha256": "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z", + "rev": "5fadbf1bf84091b6ffe6cd1bff48f30e3da6c479" + }, + "recipe": { + "sha256": "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150106.1156", + "deps": [] + }, + "bitly": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "bitly-el", + "sha256": "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb", + "rev": "fca9d8da070402fa62d9289e56f7f1c5ce40f664" + }, + "recipe": { + "sha256": "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.1048", + "deps": [] + }, + "scala-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "scala", + "repo": "scala-tool-support", + "sha256": "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6", + "rev": "0a217bc446b970116c67c933a747d5f57b853d34" + }, + "recipe": { + "sha256": "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1909", + "deps": [] + }, + "help+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/help+.el", + "sha256": "0vdga10l8vslsicrspl3wyhf6a5jxdwzqb7r8g07fbd4f09d57a4" + }, + "recipe": { + "sha256": "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150702.1143", + "deps": [] + }, + "org-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "org-projectile", + "sha256": "1zskm97502f4yq1jr3k1j2mkdpbh8q7lm56wqnpbpv4gcprpx8gg", + "rev": "df1d4a843724f2e556305aea53567a0b3b403fb1" + }, + "recipe": { + "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1553", + "deps": [] + }, + "magit-rockstar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "magit-rockstar", + "sha256": "0p9fx9ph18ygsjknvmn63qq5h5lq4p833lccbyzy3sbivn46496j", + "rev": "6e09d3d1589e5bde7279f9bd5b8f27352ea26ef4" + }, + "recipe": { + "sha256": "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151128.928", + "deps": [ + "dash", + "magit" + ] + }, + "list-environment": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgtized", + "repo": "list-environment.el", + "sha256": "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4", + "rev": "b7ca30b05905047be2e55199a6475f8d98ce318b" + }, + "recipe": { + "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.2056", + "deps": [] + }, + "flyspell-popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "flyspell-popup", + "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic", + "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" + }, + "recipe": { + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150926.1003", + "deps": [ + "popup" + ] + }, + "nameframe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151017.2319", + "deps": [] + }, + "pyvenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "pyvenv", + "sha256": "11scrmm15zyybl861l6izqsdysh8li7kkkwjm4p8cl5kmibiqrss", + "rev": "a0331f52ba2c9fe994ee423e4d82263b6f68a38a" + }, + "recipe": { + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.1719", + "deps": [] + }, + "persp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Bad-ptr", + "repo": "persp-mode.el", + "sha256": "11xcaxd0c2jxm8gxhspi5v5y64xz4gx8xzy5qsw81y2gj96byjc5", + "rev": "1f80818462211a8f81b8e352ec28d6a6745e8396" + }, + "recipe": { + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.659", + "deps": [] + }, + "replace-from-region": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/replace-from-region.el", + "sha256": "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb" + }, + "recipe": { + "sha256": "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150406.1930", + "deps": [] + }, + "fuel": { + "fetch": { + "tag": "fetchgit", + "url": "git://factorcode.org/git/factor.git", + "sha256": "8f9db8a5dae2ddd9a8a7118c79fe40be3d9c890d112f5858fb98a6ea90a19e56", + "rev": "7e40b6037490f2194f0dcf02e18992e601e28b78" + }, + "recipe": { + "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150901.816", + "deps": [] + }, + "xterm-keybinder": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "xterm-keybinder-el", + "sha256": "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg", + "rev": "08d7c9b4c71db05df092010ba92f87567004b8c7" + }, + "recipe": { + "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140714.219", + "deps": [] + }, + "helm-core": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "0l7dzk4xa4nfyj943x4gqcn1brfznfyrdxfwf1v097fp4ix8654q", + "rev": "e6fbd80f9f21e7cdb5d530f7aba138ad1dc527ab" + }, + "recipe": { + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1331", + "deps": [ + "async", + "cl-lib", + "emacs" + ] + }, + "ssh-agency": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "ssh-agency", + "sha256": "0i9c146wmy47dpiar5gzyxrqbi4156hbbabc9h6zkxiyx0zb3p78", + "rev": "528122b182e9e8ade2361720ea05a5594f926c18" + }, + "recipe": { + "sha256": "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130403.942", + "deps": [] + }, + "sml-modeline": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:~nxhtml/nxhtml/main", + "sha256": "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4", + "rev": "835" + }, + "recipe": { + "sha256": "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120110.1440", + "deps": [] + }, + "wonderland": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-wonderland", + "sha256": "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack", + "rev": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6" + }, + "recipe": { + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150920.38", + "deps": [] + }, + "clipmon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bburns", + "repo": "clipmon", + "sha256": "1xqszj16yim89pln9aw17lji5knxm3pklaihydagd7a1f99hr51w", + "rev": "a531c3e5d3cf760b00d3f00726a4e60e226aae99" + }, + "recipe": { + "sha256": "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1147", + "deps": [] + }, + "datomic-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "datomic-snippets", + "sha256": "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0", + "rev": "7116eac8e15a16fc72973b96fa855fd9784bbbb8" + }, + "recipe": { + "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140421.1122", + "deps": [] + }, + "dionysos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "dionysos", + "sha256": "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f", + "rev": "98907a38e98ff1b02171a1ad8df246a291e04750" + }, + "recipe": { + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.1035", + "deps": [ + "company", + "qml-mode" + ] + }, + "graphene": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "graphene", + "sha256": "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa", + "rev": "dcc0e34c6c4632d5d5445ec023f5b1ca04c7d1b7" + }, + "recipe": { + "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151113.859", + "deps": [ + "json", + "request" + ] + }, + "org-mac-iCal": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "5f5c7580539162bd268e6e2703a47aea2a353984fe86158df72594d6105476d7", + "rev": "955bc57ded513be2cf2248a7d7a858c11a1110b3" + }, + "recipe": { + "sha256": "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140107.719", + "deps": [] + }, + "annotate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "annotate.el", + "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s", + "rev": "a1690384317ce366e5a33aec916949e3328a0117" + }, + "recipe": { + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151006.1133", + "deps": [] + }, + "helm-img": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "l3msh0", + "repo": "helm-img", + "sha256": "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla", + "rev": "aa3f8a5dce8d0413bf07584f07153a39015c2bfc" + }, + "recipe": { + "sha256": "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1721", + "deps": [ + "cl-lib", + "helm" + ] + }, + "elfeed-goodies": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "algernon", + "repo": "elfeed-goodies", + "sha256": "1r2liqjww0yscxjpg13dsfhhv3yjahlbas0dabqlh4f9q0jdrgj4", + "rev": "5983e70a3ed5d62d218e1149cfe777b10c3168e5" + }, + "recipe": { + "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.358", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150923.1102", + "deps": [ + "cl-lib", + "s" + ] + }, + "indy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "indy", + "sha256": "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n", + "rev": "bc1edbaa6db7264dd64fbd04331406d889b44501" + }, + "recipe": { + "sha256": "1brmsgnkhr5nlma1p8f5s78y9gw3rfm8sah55n6vyhr0dpb4z7kl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150114.32", + "deps": [ + "dash", + "flycheck" + ] + }, + "zerodark-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "zerodark-theme", + "sha256": "1wv9wwc39555cr72z9pjnpymll8ifrhc527sph61pdilzlrmrc7q", + "rev": "98135542bad1fc894c718bc37e611f79434b693a" + }, + "recipe": { + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151106.534", + "deps": [] + }, + "py-test": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Bogdanp", + "repo": "py-test.el", + "sha256": "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf", + "rev": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf" + }, + "recipe": { + "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120202.2334", + "deps": [] + }, + "docbook-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-docbook-snippets", + "sha256": "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq", + "rev": "b06297fdec039a541aaa6312cb328a11062cfab4" + }, + "recipe": { + "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150714.1125", + "deps": [ + "yasnippet" + ] + }, + "quick-preview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "quick-preview.el", + "sha256": "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c", + "rev": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35" + }, + "recipe": { + "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150828.2339", + "deps": [] + }, + "scad-preview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scad-preview", + "sha256": "1mx5bg4mbgj828mwjd9nlxli4ibcrgpzn9i6ns2g9zpgm932zlbc", + "rev": "a444532126bdec3dec9cacf55bc183780decf040" + }, + "recipe": { + "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150818.824", + "deps": [ + "scad-mode" + ] + }, + "flx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "10f9135i9z2y4k0x6fbwm0g6vhsj6ag41xq504zpygqzp6y6ikmz", + "rev": "807d69455585d89804ecef233a9462db7d0524d8" + }, + "recipe": { + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1312", + "deps": [ + "cl-lib" + ] + }, + "hardhat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hardhat", + "sha256": "13pgxskddir74lqknkkflzkrv6q455cf5s7wjww1zgvw95j7q50v", + "rev": "9355d174d49a514f3e176995ba93d5da7a25cbba" + }, + "recipe": { + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140827.2056", + "deps": [ + "ignoramus" + ] + }, + "pinyin-search": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "pinyin-search.el", + "sha256": "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491", + "rev": "53e75c2e32c03920dcc10334c7b62922779f2c8b" + }, + "recipe": { + "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150719.1955", + "deps": [] + }, + "mouse+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/mouse+.el", + "sha256": "1l29smg3r2b2b08869wsrwyr5239gznd88xwf40q7qi350cj8fwy" + }, + "recipe": { + "sha256": "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.1052", + "deps": [] + }, + "sexp-move": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "sexp-move", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m", + "rev": "117f7a91ab7c25e438413753e916570122011ce7" + }, + "recipe": { + "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150915.1230", + "deps": [] + }, + "mc-extras": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "mc-extras.el", + "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1", + "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" + }, + "recipe": { + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140119.1543", + "deps": [] + }, + "seoul256-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ChrisDavison", + "repo": "seoul256.el", + "sha256": "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc", + "rev": "32790703847b868e8fdd9c0736b0b8a0167f97cf" + }, + "recipe": { + "sha256": "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150714.1735", + "deps": [] + }, + "test-kitchen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jjasghar", + "repo": "test-kitchen-el", + "sha256": "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr", + "rev": "3f3647bf437563493331821638f5f5829ae7dd26" + }, + "recipe": { + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.627", + "deps": [] + }, + "llvm-mode": { + "fetch": { + "tag": "fetchgit", + "url": "http://llvm.org/git/llvm", + "sha256": "31e826259c8497fcbe810bae9a51780766a0b676448746fd8ceeff285369fafc", + "rev": "d3bcf04e8331314fbfec3f0af41e137b6bd242c7" + }, + "recipe": { + "sha256": "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150910.844", + "deps": [] + }, + "dired-rainbow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141214.743", + "deps": [ + "dash", + "dired-hacks-utils" + ] + }, + "thrift": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "apache", + "repo": "thrift", + "sha256": "1rd947vs6md9rdchqrpwm8qq5gxiz547npvph7njlahbpbm4xgyj", + "rev": "6dde7f19254db71cf27df214a59d7156967237fc" + }, + "recipe": { + "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140312.1548", + "deps": [] + }, + "better-defaults": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "better-defaults", + "sha256": "0j3wpw43q262wnq5214r20r15sy2hihbiak5j7ag23lq9jx2jvva", + "rev": "b7888289ed702aff1616cbff832c97d4e5fc2463" + }, + "recipe": { + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150404.423", + "deps": [] + }, + "wwtime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ndw", + "repo": "wwtime", + "sha256": "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r", + "rev": "d04d8fa814b5d3644efaeb28f25520ada69acbbd" + }, + "recipe": { + "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150619.1934", + "deps": [ + "color-theme" + ] + }, + "cinspect": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "inlinestyle", + "repo": "cinspect-mode", + "sha256": "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw", + "rev": "4e199a90f89b335cccda1518aa0963e0a1d4fbab" + }, + "recipe": { + "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140213.548", + "deps": [] + }, + "poporg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "QBobWatson", + "repo": "poporg", + "sha256": "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx", + "rev": "d4d8b3e6206b0af4044d1dcecfc0bd2193704e07" + }, + "recipe": { + "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150603.2047", + "deps": [] + }, + "cdb": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skk-dev", + "repo": "ddskk", + "sha256": "0yrjrrm0rkrvr34jwxbl5bm8ahr7w5xh76k859qwgi2cbz6vr7q0", + "rev": "47980e6c4f9979ff0b2d656befa5366c57e4527b" + }, + "recipe": { + "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151205.743", + "deps": [] + }, + "kite-mini": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tungd", + "repo": "kite-mini.el", + "sha256": "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d", + "rev": "d9eb14593364f7d58eed3f26b45e8aef5b845b20" + }, + "recipe": { + "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150811.1329", + "deps": [ + "dash", + "websocket" + ] + }, + "ac-html-bootstrap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-bootstrap", + "sha256": "0v33p6lnsq1nwyxfbgs6vg6fidfyqwxd5wls2yza95yxzl30m9r7", + "rev": "ea9f7e351e1f39e0c2da5f518948db5ee751d15b" + }, + "recipe": { + "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1512", + "deps": [ + "web-completion-data" + ] + }, + "zlc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "emacs-zlc", + "sha256": "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x", + "rev": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4" + }, + "recipe": { + "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151010.2057", + "deps": [] + }, + "julia-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "JuliaLang", + "repo": "julia", + "sha256": "0ng603klkc56577qcn4gcayrqc38g2fyargjzj0nk7gc8kkd443r", + "rev": "1380bfe231858b49f0395377ee0af1aa383bbf93" + }, + "recipe": { + "sha256": "0c5bdgh98hw7484s2is84af7hznd8c4z5vlzfd98s8qxi7bldqjm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150912.1000", + "deps": [] + }, + "term+mux": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-mux-el", + "sha256": "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q", + "rev": "81b60e80cf008472bfd7fad9233af2ef722c208a" + }, + "recipe": { + "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150110.2303", + "deps": [] + }, + "flycheck-status-emoji": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "flycheck-status-emoji", + "sha256": "17mhsxnixw37x9jpy59nn3npw93r1rza2zcw6jmqzandmj0jyvm4", + "rev": "a6ae7b108110acc4dba32e616c8b02555455ea67" + }, + "recipe": { + "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140415.2041", + "deps": [] + }, + "common-lisp-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "common-lisp-snippets", + "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad", + "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" + }, + "recipe": { + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150910.547", + "deps": [ + "yasnippet" + ] + }, + "apples-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tequilasunset", + "repo": "apples-mode", + "sha256": "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z", + "rev": "83a9ab0d6ba82496e2f7df386909b1a55701fccb" + }, + "recipe": { + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150802.1157", + "deps": [] + }, + "minitest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arthurnn", + "repo": "minitest-emacs", + "sha256": "0svv44f9fham9icqq3v31n9728wap4fa0dq241sikbbrw0lnq3gx", + "rev": "c2019088087ebb5e3fe32eae9ae8156db08bd82d" + }, + "recipe": { + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.2055", + "deps": [ + "evil", + "god-mode" + ] + }, + "org-mac-link": { + "fetch": { + "tag": "fetchgit", + "url": "git://orgmode.org/org-mode.git", + "sha256": "5f5c7580539162bd268e6e2703a47aea2a353984fe86158df72594d6105476d7", + "rev": "955bc57ded513be2cf2248a7d7a858c11a1110b3" + }, + "recipe": { + "sha256": "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151218.428", + "deps": [] + }, + "occur-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "occur-x", + "sha256": "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6", + "rev": "352f5fab207d8a1d3dd048073ff127a83e97c82b" + }, + "recipe": { + "sha256": "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130610.843", + "deps": [] + }, + "evil-matchit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-matchit", + "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi", + "rev": "8b80b3df9472217d55962981025539f2da603296" + }, + "recipe": { + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.535", + "deps": [] + }, + "sqlup-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "trevoke", + "repo": "sqlup-mode.el", + "sha256": "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4", + "rev": "9cb9662673b7bed891582cfc1080d91a254048f7" + }, + "recipe": { + "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150412.1216", + "deps": [ + "org" + ] + }, + "flycheck-gometalinter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "favadi", + "repo": "flycheck-gometalinter", + "sha256": "1hvjbvrarg39bi761bfvg4i3psz03pcilpp9zb6zb01vnhihwgd0", + "rev": "bc82ffa3ad4a4407a4eddc9bc06ff0b7df9d4ab3" + }, + "recipe": { + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.1128", + "deps": [ + "emacs", + "flycheck" + ] + }, + "hipster-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xzerocode", + "repo": "hipster-theme", + "sha256": "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3", + "rev": "0583bcef489c0bbe2393f813c17f634a9487e04f" + }, + "recipe": { + "sha256": "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130303.155", + "deps": [] + }, + "password-store": { + "fetch": { + "tag": "fetchgit", + "url": "http://git.zx2c4.com/password-store", + "sha256": "9c3ee0155b9d6b96acacaab8e799b23e92550ef136ffa2c07880029af3061733", + "rev": "bffca1ee21a38f1e808fa83e5df2fcf0f808cb9f" + }, + "recipe": { + "sha256": "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1855", + "deps": [] + }, + "memento": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ehartc", + "repo": "memento", + "sha256": "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q", + "rev": "35733b79101f694346792a57df686cbffe64bd79" + }, + "recipe": { + "sha256": "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150823.539", + "deps": [] + }, + "django-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "andrzejsliwa", + "repo": "django-theme.el", + "sha256": "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w", + "rev": "86c8142b3eb1addd94a43aa6f1d98dab06401af0" + }, + "recipe": { + "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131022.402", + "deps": [] + }, + "vimrc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mcandre", + "repo": "vimrc-mode", + "sha256": "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0", + "rev": "d4c7d41091eb282e617c973f5b1fc29c69dc9a28" + }, + "recipe": { + "sha256": "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130612.42", + "deps": [ + "deferred" + ] + }, + "extend-dnd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "extend-dnd", + "sha256": "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz", + "rev": "80c966c93b82c9bb5c6225a432557c39144fc602" + }, + "recipe": { + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.1250", + "deps": [] + }, + "bts-github": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-bts-github", + "sha256": "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9", + "rev": "57c23f2b842f6775f0bbbdff97eeec78474be6bc" + }, + "recipe": { + "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140227.1439", + "deps": [] + }, + "jst": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "jst-mode", + "sha256": "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy", + "rev": "2a3fd16c992f7790dc67134ef06a814c3d20579c" + }, + "recipe": { + "sha256": "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1312", + "deps": [ + "cl-lib", + "flx" + ] + }, + "helm-open-github": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-open-github", + "sha256": "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851", + "rev": "4c5a47003b2efed1c3437e91121a77d082cf64c8" + }, + "recipe": { + "sha256": "121sszwvihbv688nq5lhdclvsjj8759glh42h82r4pcw30lxggxb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.842", + "deps": [ + "cl-lib", + "gh", + "helm-core" + ] + }, + "xresources-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CQQL", + "repo": "xresources-theme", + "sha256": "1n3biybylvq5c1lpf7zsjsgdrg7mzrhkaw251fp8qmsss0s3sv4g", + "rev": "4842144f9f83e9d6f71f5ba2fd3abdcf6887de8f" + }, + "recipe": { + "sha256": "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141219.1117", + "deps": [] + }, + "enclose": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "enclose", + "sha256": "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim", + "rev": "2747653e84af39017f503064bc66ed1812a77259" + }, + "recipe": { + "sha256": "04gs468qqhdc9avx7lgibr0f1i444714i7rifad37dfmim8qk759", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.202", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "nvm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "nvm.el", + "sha256": "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7", + "rev": "d6c7ad048f1d2854ec3c043d80528857aa1090a8" + }, + "recipe": { + "sha256": "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151028.720", + "deps": [] + }, + "ruby-factory": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "ruby-factory-mode", + "sha256": "1xwh71kpjn8ql3qp0s35c4ql3niab31igj21k1gcybdfv316mcyd", + "rev": "134a91c854c06d0d06038005769ce20b2a8177bd" + }, + "recipe": { + "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151011.1023", + "deps": [ + "inflections" + ] + }, + "kv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-kv", + "sha256": "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m", + "rev": "721148475bce38a70e0b678ba8aa923652e8900e" + }, + "recipe": { + "sha256": "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140108.934", + "deps": [] + }, + "org-mobile-sync": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "org-mobile-sync", + "sha256": "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh", + "rev": "3b086ffebfead48feccc629f7a6571df2f94c8e0" + }, + "recipe": { + "sha256": "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131118.1316", + "deps": [ + "emacs", + "org" + ] + }, + "websocket": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ahyatt", + "repo": "emacs-websocket", + "sha256": "1w6qg6acakl868s392m4hrz3z2111ir6hk89d1scy8qm9g81znap", + "rev": "e5cd7c955734f6864fd9f2fa001f076b1a024044" + }, + "recipe": { + "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150719.1248", + "deps": [] + }, + "editorconfig-core": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "04sflhamh5b9gxllfhcqdim02x6cb9xid39al2lisb8z4xywch68", + "rev": "5132b7a9441af76196ba3e62d73a0bb415853e4f" + }, + "recipe": { + "sha256": "18d7byqkxn6lyw3nqsvqs5vyj9alh9wjd2mim44a3zcc9r2j061r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141226.1420", + "deps": [] + }, + "flymake-less": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-less", + "sha256": "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7", + "rev": "32d3c28a9a5c52b82d1741ff9d715013b6498421" + }, + "recipe": { + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.138", + "deps": [ + "flymake-easy", + "less-css-mode" + ] + }, + "go-rename": { + "fetch": { + "tag": "fetchgit", + "url": "https://go.googlesource.com/tools", + "sha256": "e9c11949d98b65c9d5f6e282f8bc4c4d85ee988c91f68fba22562a2e620e43d7", + "rev": "d6e83e534da905609e21e4086a0fbaed33f88d07" + }, + "recipe": { + "sha256": "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.838", + "deps": [ + "go-mode" + ] + }, + "malinka": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "LefterisJP", + "repo": "malinka", + "sha256": "1a22xkhnmpfffllarsjdw10n5cd3nwifcl1iv98kb4j4x96kd4xg", + "rev": "cd451d32dcdfa3e6b34f47c6956ff310de8a9a06" + }, + "recipe": { + "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.2130", + "deps": [ + "helm" + ] + }, + "subemacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kbauer", + "repo": "subemacs", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362", + "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" + }, + "recipe": { + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130917.1348", + "deps": [] + }, + "c0-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "catern", + "repo": "c0-mode", + "sha256": "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx", + "rev": "c214093c36864d6208fcb9e6a72413ed17ed5d60" + }, + "recipe": { + "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151110.1252", + "deps": [] + }, + "dizzee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidmiller", + "repo": "dizzee", + "sha256": "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5", + "rev": "37629f390afb8da03ef0ce81c2b3caff660e12f6" + }, + "recipe": { + "sha256": "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20111009.816", + "deps": [] + }, + "mvn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "mvn-el", + "sha256": "1gvn0a49lgbjnkl0j2sv4p9zdfqzj9s4jw0k2f4ypmsd1fc0q6d6", + "rev": "01ede605d49c5fb6f2da038f5df6f31112de802f" + }, + "recipe": { + "sha256": "1ykiz5fviq2n2474izwp0vvqanpbmxg7lzh1xbpn281kwmp0mwin", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151001.129", + "deps": [] + }, + "figlet": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/figlet", + "sha256": "0xnr709vmwbryyfxngxs80gjfxv009ik6wcs4jd74ph5lm6gqh4f", + "rev": "255e7570a3e2" + }, + "recipe": { + "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141104.1037", + "deps": [] + }, + "caroline-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xjackk", + "repo": "caroline-theme", + "sha256": "14ijcb9qp1gv8ianqm7cdvwjkgpwdaw3lz34j29c3rmg5ir26bjb", + "rev": "742bf4ac4521ff9905294812919051cec768b1a0" + }, + "recipe": { + "sha256": "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1804", + "deps": [ + "emacs" + ] + }, + "ace-isearch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "ace-isearch", + "sha256": "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr", + "rev": "9a32a039623e3907a4fce959aa48c26a79fb249b" + }, + "recipe": { + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150414.2032", + "deps": [ + "emacs", + "flycheck" + ] + }, + "sparkline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "woudshoo", + "repo": "sparkline", + "sha256": "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp", + "rev": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2" + }, + "recipe": { + "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150101.719", + "deps": [ + "cl-lib" + ] + }, + "slime-volleyball": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fitzsim", + "repo": "slime-volleyball", + "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3", + "rev": "159b5c0f40b109e3854e94b89ec5383854c46ae3" + }, + "recipe": { + "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140717.2341", + "deps": [] + }, + "free-keys": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "free-keys", + "sha256": "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0", + "rev": "368820cb361161f10a2ae7a839ab758146fd222c" + }, + "recipe": { + "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150902.2027", + "deps": [] + }, + "cmm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bgamari", + "repo": "cmm-mode", + "sha256": "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx", + "rev": "c3ad514dff3eb30434f6b20d953276d4c00de1ee" + }, + "recipe": { + "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150225.146", + "deps": [] + }, + "enlive": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "enlive", + "sha256": "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh", + "rev": "0f6646adda3974e7fe9a42339a4ec3daa532eda5" + }, + "recipe": { + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150824.749", + "deps": [] + }, + "wiki-summary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jozefg", + "repo": "wiki-summary.el", + "sha256": "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i", + "rev": "ed3755dd09f5f73ef78ec295fe842d08b316c8a0" + }, + "recipe": { + "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150408.1622", + "deps": [ + "emacs" + ] + }, + "nexus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "emacs-nexus", + "sha256": "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27", + "rev": "c46f499951b90839aa8683779fe43d8f01672a60" + }, + "recipe": { + "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140114.705", + "deps": [] + }, + "rake": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "rake", + "sha256": "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2", + "rev": "eba311a8f5ccfb6535efbc26fa58c43e3f1e5515" + }, + "recipe": { + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140611.1150", + "deps": [] + }, + "ox-html5slide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "org-html5slide", + "sha256": "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm", + "rev": "4703dfbd9d79161509def673d2c1e118d722a58f" + }, + "recipe": { + "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131228.6", + "deps": [ + "org" + ] + }, + "waher-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-waher-theme", + "sha256": "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc", + "rev": "60d31519fcfd8e797723d47961b255ae2f2e2c0a" + }, + "recipe": { + "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141115.630", + "deps": [ + "emacs" + ] + }, + "zotxt": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "egh", + "repo": "zotxt-emacs", + "sha256": "015xgsisgsv4w5h6r68f7iw3vwrqvc0az1gcdkd5dfr3nl1h4yzl", + "rev": "3809f0932660c09910639eaecb3d0a8e784420b3" + }, + "recipe": { + "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.1126", + "deps": [ + "dash" + ] + }, + "gvpr-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rodw", + "repo": "gvpr-lib", + "sha256": "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s", + "rev": "3d6cc6f4416faf2a1913821d12ba6eb624362af0" + }, + "recipe": { + "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131208.1118", + "deps": [] + }, + "header2": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/header2.el", + "sha256": "04gp3km2d163cw8gqzb02dj3kq23s96ncip5c03whpja2sj9ji6f" + }, + "recipe": { + "sha256": "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1610", + "deps": [] + }, + "move-dup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wyuenho", + "repo": "move-dup", + "sha256": "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8", + "rev": "964d1bbaacd4559d2dbde9cb44015c400d5a71b5" + }, + "recipe": { + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140925.1008", + "deps": [] + }, + "stash": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "stash.el", + "sha256": "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr", + "rev": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad" + }, + "recipe": { + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.827", + "deps": [] + }, + "autopair": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "autopair", + "sha256": "1z3hd2jkibwz2ijvyh066ki5g30pdqgh2vj2r35prpp12bqabw4a", + "rev": "4f4bd30b341e7fb15a452b59f3e5c34cbd5c97d8" + }, + "recipe": { + "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150907.256", + "deps": [ + "key-chord" + ] + }, + "ox-pandoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "ox-pandoc", + "sha256": "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is", + "rev": "2605a0ed8ed3c86b78829589956bedf5eda447cc" + }, + "recipe": { + "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1753", + "deps": [ + "dash", + "emacs", + "ht", + "org" + ] + }, + "helm-ghc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "helm-ghc", + "sha256": "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is", + "rev": "e5ee7b8d3b745d162553aecfbd41381c4de85f35" + }, + "recipe": { + "sha256": "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141105.859", + "deps": [ + "cl-lib", + "emacs", + "ghc", + "helm" + ] + }, + "projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "projectile", + "sha256": "1b6h07scpg9gvslsdvz996p67vyyhiiy3hnkh7sqm2pyv9zf7wq5", + "rev": "b9e76f90d3846837e53ca75b78917a11b905ab70" + }, + "recipe": { + "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1443", + "deps": [ + "dash", + "pkg-info" + ] + }, + "fabric": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "fabric.el", + "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5", + "rev": "004934318f63d8cf955022f87b2c33eb97ada280" + }, + "recipe": { + "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.522", + "deps": [] + }, + "sage-shell-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "sage-shell-mode", + "sha256": "060xvh5qwqbvvb5ykyflwps2p2by9p1mm5dz7gkxla5zq0a73vmx", + "rev": "ad78c168c1fb702eebc74f30eba830adc3fe0079" + }, + "recipe": { + "sha256": "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151024.313", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "flycheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck", + "sha256": "0n9bbcbv2ria9x1ysfz714xd04z6cdpcfkyhrscl9rywhccjx6zl", + "rev": "1d0c64869a93f830bd8b53ac3426a6682c0ec563" + }, + "recipe": { + "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.2121", + "deps": [] + }, + "ob-cypher": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-cypher", + "sha256": "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n", + "rev": "b3511df05f175c1947996802e9e199432ea9ced8" + }, + "recipe": { + "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140904.1317", + "deps": [ + "ycm" + ] + }, + "dired+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dired+.el", + "sha256": "0pgm5pg3z7cbrvs12fwj6g2kxm7qqq0410lsb1kpsdlgixb2yh5q" + }, + "recipe": { + "sha256": "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.854", + "deps": [] + }, + "bfbuilder": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "bfbuilder", + "sha256": "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17", + "rev": "49560bdef131fa5672dab660e0c62376dbdcd906" + }, + "recipe": { + "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150924.1150", + "deps": [ + "cl-lib" + ] + }, + "debug-print": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kenoss", + "repo": "debug-print", + "sha256": "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp", + "rev": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5" + }, + "recipe": { + "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140125.1819", + "deps": [ + "emacs" + ] + }, + "gorepl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "manute", + "repo": "gorepl-mode", + "sha256": "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b", + "rev": "17e025951f5964a0542a4b353ddddbc734c01eed" + }, + "recipe": { + "sha256": "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.622", + "deps": [ + "emacs" + ] + }, + "mocker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "mocker.el", + "sha256": "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss", + "rev": "b56f0f2839d4a395979816b40089a77050518eb6" + }, + "recipe": { + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150916.2054", + "deps": [ + "eieio", + "el-x" + ] + }, + "ac-html-angular": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osv", + "repo": "ac-html-angular", + "sha256": "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny", + "rev": "6bafe09afe03112ca4183d58461c1a6f6c2b3c67" + }, + "recipe": { + "sha256": "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.119", + "deps": [ + "web-completion-data" + ] + }, + "ido-hacks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "scottjad", + "repo": "ido-hacks", + "sha256": "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx", + "rev": "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc" + }, + "recipe": { + "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150331.1409", + "deps": [] + }, + "subatomic-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cryon", + "repo": "subatomic", + "sha256": "1njfwjyrh9m00jyy65zl31gxa66941mvvrk7nn5yizsbdadrbq0z", + "rev": "2543881f9bbb8520f845b7fe8f370793c36f7df2" + }, + "recipe": { + "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150704.1009", + "deps": [] + }, + "jar-manifest-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "omajid", + "repo": "jar-manifest-mode", + "sha256": "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq", + "rev": "200dcf6ec5116b506ae24a83511837adf0acedef" + }, + "recipe": { + "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150329.1733", + "deps": [] + }, + "psc-ide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "epost", + "repo": "psc-ide-emacs", + "sha256": "0g2z4dkzwxpzpqwjizjcz3v3rgihxpl1pk3wcmyv0mz05795if4r", + "rev": "c4bfcf3d7414c37e745d95f6e3a3672c0ca99620" + }, + "recipe": { + "sha256": "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1634", + "deps": [ + "cl-lib", + "company", + "dash", + "s" + ] + }, + "rand-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gopar", + "repo": "rand-theme", + "sha256": "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl", + "rev": "65a00e5c5150f857aa96803b68f50bc8da0215b7" + }, + "recipe": { + "sha256": "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1735", + "deps": [ + "cl-lib" + ] + }, + "quelpa-use-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "quelpa", + "repo": "quelpa-use-package", + "sha256": "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6", + "rev": "d18b55508ceaeb894f5db3d775f5c1b27e4be81b" + }, + "recipe": { + "sha256": "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140201.514", + "deps": [] + }, + "dna-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jhgorrell", + "repo": "dna-mode-el", + "sha256": "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n", + "rev": "c3fed6b9d98deafbc1525d445a920b969120fe6a" + }, + "recipe": { + "sha256": "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130821.1305", + "deps": [] + }, + "pungi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "pungi", + "sha256": "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21", + "rev": "a2d4d439ea371be0b064a12248288903b8a521a0" + }, + "recipe": { + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150222.646", + "deps": [ + "jedi", + "pyvenv" + ] + }, + "mpages": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "slevin", + "repo": "mpages", + "sha256": "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2", + "rev": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f" + }, + "recipe": { + "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150710.904", + "deps": [] + }, + "colorsarenice-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "colorsarenice-theme", + "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia", + "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" + }, + "recipe": { + "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130728.1721", + "deps": [] + }, + "flycheck-mypy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-flycheck-mypy", + "sha256": "1vdnw6hnhg8aqcsdqcd2rqz4fsfgxn2xr3xixkvwmpplb4x40c8k", + "rev": "263339e6e44c3d0d4c10ff3528e5575db97a353f" + }, + "recipe": { + "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150915.333", + "deps": [ + "flycheck" + ] + }, + "backup-walker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "backup-walker", + "sha256": "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v", + "rev": "934a4128c122972ac32bb9952addf279a60a94da" + }, + "recipe": { + "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130720.1016", + "deps": [] + }, + "workgroups": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tlh", + "repo": "workgroups.el", + "sha256": "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n", + "rev": "9572b3492ee09054dc329f64ed846c962b395e39" + }, + "recipe": { + "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150829.2355", + "deps": [] + }, + "codebug": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shano", + "repo": "emacs-codebug", + "sha256": "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp", + "rev": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52" + }, + "recipe": { + "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140929.1637", + "deps": [] + }, + "bts": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-bts", + "sha256": "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w", + "rev": "df42d58a36447697f93b56e69f5e700b2baef1f9" + }, + "recipe": { + "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130216.714", + "deps": [] + }, + "wedge-ws": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aes", + "repo": "wedge-ws", + "sha256": "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98", + "rev": "4669115f02d9c6fee067cc5369bb38c0f9db88b2" + }, + "recipe": { + "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140714.1649", + "deps": [] + }, + "ctl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "emacs-grads", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31", + "rev": "1a13051db21b999c7682a015b33a03096ff9d891" + }, + "recipe": { + "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.406", + "deps": [] + }, + "ac-octave": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "ac-octave", + "sha256": "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q", + "rev": "28dfce296dd2aa0ea46b51803109f3fdd1e5c379" + }, + "recipe": { + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141222.1835", + "deps": [] + }, + "simple-mpc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorenvo", + "repo": "simple-mpc", + "sha256": "1y6lgkrhyzc79ss3wb3gaf4z8gqd4yjjwmwjligrs38ly66y48h5", + "rev": "fdf0ccb2a157325386e6997c119d87a9aa0865d1" + }, + "recipe": { + "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150802.406", + "deps": [] + }, + "ansi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ansi", + "sha256": "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85", + "rev": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd" + }, + "recipe": { + "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150703.326", + "deps": [ + "dash", + "s" + ] + }, + "evil-magit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "evil-magit", + "sha256": "0g7a7djdzwm15n51384571xfmwzbf7ibldbzki6s64g5yf3yd69d", + "rev": "8f07cf1382c9715cf3c735087794460f92b4b114" + }, + "recipe": { + "sha256": "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.1858", + "deps": [ + "evil", + "magit" + ] + }, + "ido-describe-bindings": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-describe-bindings", + "sha256": "1xd86jx6j5livsdsplq5yawz1wmkflkvnjmccjjlcy8f5ncl80ax", + "rev": "2076b7e8a418008fb503357df2f0f99de3d9aa1d" + }, + "recipe": { + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.934", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130419.1629", + "deps": [] + }, + "term+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarao", + "repo": "term-plus-el", + "sha256": "1ayr34smxf94c09ssdwl4hyhzgahsmbj7j4h25cdm6wcwii2br86", + "rev": "090807985673755720c5533b2fc684f88a3554ad" + }, + "recipe": { + "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130612.852", + "deps": [] + }, + "elixir-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "elixir-lang", + "repo": "emacs-elixir", + "sha256": "00rl76bsyzq6dh9z65n894z1rsj483yclyndw515j4gvfqqlxcd9", + "rev": "25f3995ea34b23b7ffa304159a2508dbf9b3d075" + }, + "recipe": { + "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.954", + "deps": [ + "emacs" + ] + }, + "fakespace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-fakespace", + "sha256": "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs", + "rev": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a" + }, + "recipe": { + "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120817.1906", + "deps": [] + }, + "auto-complete-chunk": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "auto-complete-chunk", + "sha256": "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li", + "rev": "a9aa77ffb84a1037984a7ce4dda25074272f13fe" + }, + "recipe": { + "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140225.346", + "deps": [ + "auto-complete" + ] + }, + "hookify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "hookify", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc", + "rev": "e76127230716f7fab6662410c03c3872d17a172b" + }, + "recipe": { + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141216.1609", + "deps": [ + "dash", + "s" + ] + }, + "gntp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "gntp.el", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a", + "rev": "767571135e2c0985944017dc59b0be79af222ef5" + }, + "recipe": { + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.2150", + "deps": [] + }, + "github-browse-file": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "github-browse-file", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578", + "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" + }, + "recipe": { + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151112.1825", + "deps": [ + "cl-lib" + ] + }, + "diminish": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrjola", + "repo": "diminish.el", + "sha256": "03kpwmm3pfh32jkxs6z10ghj66kn0vkhi92b0mxjrm82cql6k5cf", + "rev": "18d9730f48f1f775b38ec8390cc644bc3f3d8de5" + }, + "recipe": { + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151209.2117", + "deps": [ + "easy-kill" + ] + }, + "projekt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "projekt", + "sha256": "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw", + "rev": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83" + }, + "recipe": { + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150324.348", + "deps": [ + "emacs" + ] + }, + "ob-ipython": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "ob-ipython", + "sha256": "0r5p2gr7ri4w79lmhil4fgh6g8cmxs1qp8glkbvycvlaxwrzszhs", + "rev": "15011a8e1694d09a74094c5361a588bf586458f6" + }, + "recipe": { + "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1832", + "deps": [] + }, + "flex-isearch": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/flex-isearch", + "sha256": "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is", + "rev": "bb9c3502057d" + }, + "recipe": { + "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130508.1703", + "deps": [] + }, + "ranger": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ranger.el", + "sha256": "0yw61vnkljr6kba9bhldjgsbq5m9z1dg9f1jhxh5p1alcwk1vb7i", + "rev": "bec7f51db0aa2fd6c08304b61475352ee54b6692" + }, + "recipe": { + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151201.36", + "deps": [ + "emacs" + ] + }, + "jq-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "jq-mode", + "sha256": "014qfzl0qc23pa9w9f3v4yi80jr7nxpd0pz6d615x5mq3zi6l0gp", + "rev": "305ead8f087b1b817291d5f0365e5226199ec58c" + }, + "recipe": { + "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.651", + "deps": [ + "emacs" + ] + }, + "jedi-direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi-direx", + "sha256": "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap", + "rev": "7a2e677400717ed12b959cb5988e7b3fb1c12117" + }, + "recipe": { + "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140310.436", + "deps": [ + "direx", + "jedi" + ] + }, + "yascroll": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "yascroll-el", + "sha256": "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5", + "rev": "f7743df1cf6d8e55607141d1ea5f50b562582c51" + }, + "recipe": { + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150315.805", + "deps": [ + "cl-lib" + ] + }, + "general-close": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-berlin", + "repo": "general-close", + "sha256": "1l3ps28a1wdrg2fgvvkdxdadfgpplijs4ig1yqq8yi7k13k046p4", + "rev": "e12d26ffc59f62aeee31ad16a823cb4a390d85c8" + }, + "recipe": { + "sha256": "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.343", + "deps": [] + }, + "date-at-point": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "date-at-point.el", + "sha256": "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf", + "rev": "65733210479812a70a6dd5978ba0e2a4a6fcd08b" + }, + "recipe": { + "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150108.618", + "deps": [] + }, + "boogie-friends": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "boogie-org", + "repo": "boogie-friends", + "sha256": "11m0w8i2nq0nqrpg6m7vnn9sd3v1ln5b3rka7m9fnasadf77nmpv", + "rev": "d7b67730e9d4ac2ad5dc886bdc27e9b441497b96" + }, + "recipe": { + "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140605.1346", + "deps": [ + "flycheck" + ] + }, + "killer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "killer", + "sha256": "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x", + "rev": "7bbb223f875402a7b2abee4baa5a54f10bd97212" + }, + "recipe": { + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120808.622", + "deps": [] + }, + "flycheck-tip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "flycheck-tip", + "sha256": "0hn3qjff1lcpd2ghjixkkq2bpmrmqab3860vy38yw201yy4xmn5r", + "rev": "9eefbea4ccc9e348d356faf28c9a1902ba28f29e" + }, + "recipe": { + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150215.1518", + "deps": [ + "cl-lib" + ] + }, + "tablist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "tablist", + "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns", + "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" + }, + "recipe": { + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150619.18", + "deps": [ + "emacs" + ] + }, + "iedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "victorhge", + "repo": "iedit", + "sha256": "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25", + "rev": "2d9017daeaeb408568992f5c9cad5df5ca4f1d12" + }, + "recipe": { + "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150915.2222", + "deps": [] + }, + "term-alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-alert", + "sha256": "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk", + "rev": "46cc46dba6957a7081a360692e58b9bffb2cfa86" + }, + "recipe": { + "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151212.1406", + "deps": [] + }, + "simple+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/simple+.el", + "sha256": "0y1c87288cj7kwdq5ww6rvd4g4afssw22b7d0wa5ihl85nnf21kv" + }, + "recipe": { + "sha256": "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150616.1522", + "deps": [ + "strings" + ] + }, + "mbo70s-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-mbo70s-theme", + "sha256": "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z", + "rev": "d50414697760896dbe6b06d2a00c271c16e0e4a2" + }, + "recipe": { + "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141122.842", + "deps": [ + "emacs" + ] + }, + "weather-metno": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "weather-metno-el", + "sha256": "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z", + "rev": "bfc7137095e0ee71aad70ac46f2af677f3c051b6" + }, + "recipe": { + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150831.2007", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gitconfig": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "gitconfig.el", + "sha256": "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678", + "rev": "7612a37ca14009cac8fb8d6b6f54adad739a5741" + }, + "recipe": { + "sha256": "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130718.435", + "deps": [] + }, + "auth-password-store": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "auth-password-store", + "sha256": "0gi65n1np63zi2ylc4y1licwvk97jl92s1v98fv5y61kppi1d8sq", + "rev": "d7fc1f026c3f43190cacedfa6eff8da916e607f5" + }, + "recipe": { + "sha256": "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150106.1506", + "deps": [] + }, + "eyuml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "eyuml", + "sha256": "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9", + "rev": "2f259c201c6cc63ee608f75cd85c1ae27f9d2532" + }, + "recipe": { + "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141028.1727", + "deps": [ + "request", + "s" + ] + }, + "cpputils-cmake": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cpputils-cmake", + "sha256": "0kjkqylg0fncizrgcr8xx2qgjr8id41904n2pip0gicbry1n8bqg", + "rev": "9a496c9c14d1f287d9819aa0ed017be9fad9d3f4" + }, + "recipe": { + "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.603", + "deps": [] + }, + "anzu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-anzu", + "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra", + "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" + }, + "recipe": { + "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141025.1112", + "deps": [] + }, + "web": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-web", + "sha256": "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5", + "rev": "483188dac4bc6b409b985c9dae45f3324a425efd" + }, + "recipe": { + "sha256": "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150821.2304", + "deps": [] + }, + "helm-google": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "helm-google", + "sha256": "0ml5mv282dz73hmgjalcsypdvc30pwhsfbamyz46744j7wxn6ik2", + "rev": "21443456eefab39a2bfef00f1387c015e7dfac51" + }, + "recipe": { + "sha256": "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150422.833", + "deps": [] + }, + "writegood-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "writegood-mode", + "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b", + "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" + }, + "recipe": { + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150325.1315", + "deps": [] + }, + "simpleclip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "simpleclip", + "sha256": "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s", + "rev": "7079086ec09a148fcc9146ba9bd10e12fb011861" + }, + "recipe": { + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150804.1210", + "deps": [] + }, + "pallet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "pallet", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw", + "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" + }, + "recipe": { + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150817.954", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "rcirc-styles": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aaron-em", + "repo": "rcirc-styles.el", + "sha256": "0x0nf8qk2fb7p9577456slgszhnh2f2vqaazz20fyaxv1rjfadxw", + "rev": "6a65ad9f910d716a218ee42035fd9e9c93998a79" + }, + "recipe": { + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1157", + "deps": [ + "cl-lib" + ] + }, + "jasminejs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stoltene2", + "repo": "jasminejs-mode", + "sha256": "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l", + "rev": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a" + }, + "recipe": { + "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151209.304", + "deps": [] + }, + "twilight-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "developernotes", + "repo": "twilight-theme", + "sha256": "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs", + "rev": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b" + }, + "recipe": { + "sha256": "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120412.803", + "deps": [] + }, + "apel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wanderlust", + "repo": "apel", + "sha256": "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m", + "rev": "8402e59eadb580f59969114557b331b4d9364f95" + }, + "recipe": { + "sha256": "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141024.1842", + "deps": [] + }, + "cn-outline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mori-dev", + "repo": "cn-outline", + "sha256": "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr", + "rev": "47d33a99b7ae26b1cd456441970b4bab2173d981" + }, + "recipe": { + "sha256": "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100321.1114", + "deps": [] + }, + "yatemplate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mineo", + "repo": "yatemplate", + "sha256": "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c", + "rev": "499e7f2ea245686c09915523657fa95905f70561" + }, + "recipe": { + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.107", + "deps": [ + "yasnippet" + ] + }, + "nginx-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ajc", + "repo": "nginx-mode", + "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38", + "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" + }, + "recipe": { + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150824.1611", + "deps": [] + }, + "anything-git-grep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mechairoi", + "repo": "anything-git-grep", + "sha256": "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv", + "rev": "6ee26e68bb8ec23ffacf5c5f9698c451a4bc905c" + }, + "recipe": { + "sha256": "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130608.2140", + "deps": [ + "anything" + ] + }, + "emoji-fontset": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "emoji-fontset.el", + "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr", + "rev": "3b8c2204284b95934383836b5b36efeefb65663b" + }, + "recipe": { + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151107.2247", + "deps": [] + }, + "ergoemacs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ergoemacs", + "repo": "ergoemacs-mode", + "sha256": "0pwky3r2s43iw4gq0cq343fja2795qd8z9qbfi1vdrz18rp57s0j", + "rev": "742b5d39d6cfb0991933c169976cfb7b8e5e7e93" + }, + "recipe": { + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.833", + "deps": [ + "emacs", + "undo-tree" + ] + }, + "cyphejor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "cyphejor", + "sha256": "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw", + "rev": "1025d82a9abaca132f5855e72d56c0c2ccc0eef4" + }, + "recipe": { + "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.627", + "deps": [ + "emacs" + ] + }, + "motion-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "motion-mode", + "sha256": "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1", + "rev": "4c94180e3ecea611a61240a0c0cd48f1032c4a55" + }, + "recipe": { + "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150828.914", + "deps": [] + }, + "ac-racer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-racer", + "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl", + "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" + }, + "recipe": { + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150515.1607", + "deps": [] + }, + "tango-plus-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tmalsburg", + "repo": "tango-plus-theme", + "sha256": "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf", + "rev": "99c3484eeb4e6f7f62a6dacfd665a4d46f4cbdaf" + }, + "recipe": { + "sha256": "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140425.1711", + "deps": [] + }, + "debpaste": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "debpaste.el", + "sha256": "1wzjdyadm8x63r874x8qi4p9ni1wdq28v3m9hca9jizkfqv9xxzz", + "rev": "c296c063e5a75da1ebeea84ee35c6988651de416" + }, + "recipe": { + "sha256": "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140618.58", + "deps": [ + "xml-rpc" + ] + }, + "kerl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "correl", + "repo": "kerl.el", + "sha256": "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9", + "rev": "1732ee26213f021bf040919c45ad276aafcaae14" + }, + "recipe": { + "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150424.1505", + "deps": [] + }, + "haskell-emacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151004.1230", + "deps": [] + }, + "terraform-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-terraform-mode", + "sha256": "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7", + "rev": "6157690efce03ff20b16b85e2be6b0964efec2fb" + }, + "recipe": { + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.657", + "deps": [ + "cl-lib", + "hcl-mode" + ] + }, + "octopress": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aaronbieber", + "repo": "octopress.el", + "sha256": "1fc9iabxfmyqb41j31rgbzxdmnjrzqh1pp9s15q6s7b2d7mc0a0y", + "rev": "2e068887b17b72a69e29349d477333d067867eec" + }, + "recipe": { + "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140913.1458", + "deps": [] + }, + "elpa-audit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elpa-audit", + "sha256": "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy", + "rev": "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc" + }, + "recipe": { + "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141023.831", + "deps": [] + }, + "sublimity": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "sublimity", + "sha256": "0xg8ahjh1mkh555q645c9rhacv85iz6s83n2dpj4rhb45g9if6pc", + "rev": "45fabc1a63625bd0181f2bd4f39f154df5110338" + }, + "recipe": { + "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150918.1417", + "deps": [] + }, + "helm-w3m": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-w3m", + "sha256": "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz", + "rev": "280673470672c9fbc57fd6a91defeb9f6641fc8a" + }, + "recipe": { + "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130409.707", + "deps": [] + }, + "fsharp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rneatherway", + "repo": "emacs-fsharp-mode-bin", + "sha256": "126pd75673q61zi65p2z4x77fz6rd6rh8hlbv1lw8cv4al1bx7rh", + "rev": "6c6111980b2bfa0664bf4032039d6dca3d00b4f4" + }, + "recipe": { + "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131104.1634", + "deps": [] + }, + "macrostep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joddie", + "repo": "macrostep", + "sha256": "0j95lv4b01p8a5fpxnj5qs2ajg1yxnsg97vw3184dfy9r5hy7ryb", + "rev": "a3338d351e18bfbacd970d371735f840e7d5fe38" + }, + "recipe": { + "sha256": "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151213.345", + "deps": [ + "cl-lib" + ] + }, + "keydef": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "keydef", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv", + "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" + }, + "recipe": { + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20090428.1431", + "deps": [] + }, + "flymake-coffee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-coffee", + "sha256": "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7", + "rev": "325ab379592fdf9017d7c19625c7a978f6f3af3b" + }, + "recipe": { + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140809.524", + "deps": [ + "flymake-easy" + ] + }, + "magit-svn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-svn", + "sha256": "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph", + "rev": "9b2f8c14e83ee5851a63bd23b5f19422b00c0ff5" + }, + "recipe": { + "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.747", + "deps": [ + "emacs", + "magit" + ] + }, + "scion": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nominolo", + "repo": "scion", + "sha256": "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4", + "rev": "99b4589175665687181a932cd836850205625f71" + }, + "recipe": { + "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1620", + "deps": [] + }, + "company-arduino": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "company-arduino", + "sha256": "067xb4mwfnmbqjyfv4717417fg7ysvz9flnx1nrk6iv96gnf4vfx", + "rev": "fd31103ab73acd6c77e4361db86e472619903f80" + }, + "recipe": { + "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.731", + "deps": [] + }, + "scf-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "scf-mode", + "sha256": "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8", + "rev": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2" + }, + "recipe": { + "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.2048", + "deps": [] + }, + "go-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "go-projectile", + "sha256": "16n8655i7qidakxijymx1n84pnkn3hxpj7lsr901j03blxdrij5y", + "rev": "0a974097ef74b6045585c6120309c208b002f6e6" + }, + "recipe": { + "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151106.154", + "deps": [ + "clojure-mode" + ] + }, + "framesize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-framesize", + "sha256": "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk", + "rev": "f2dbf5d2513b2bc45f2085370a55c1754b6025da" + }, + "recipe": { + "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150223.450", + "deps": [] + }, + "dylan-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dylan-lang", + "repo": "dylan-mode", + "sha256": "011423kvbfcd7jifg9425j89hlzmnw4j751s4mdz9wyr979k19ny", + "rev": "2a5b8a65a3e3e9543e935dceea1a121e69e78c8e" + }, + "recipe": { + "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140611.37", + "deps": [] + }, + "babel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "babel", + "sha256": "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg", + "rev": "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6" + }, + "recipe": { + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.1240", + "deps": [] + }, + "todotxt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rpdillon", + "repo": "todotxt.el", + "sha256": "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal", + "rev": "fc83f954aea75065aa9788ee07027c94e76a9364" + }, + "recipe": { + "sha256": "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150513.2129", + "deps": [] + }, + "helm-firefox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-firefox", + "sha256": "0pvc163pd1jh8f4ym5yymspd0ppkq0ni05gjh45plr8yaw32n2y4", + "rev": "73d2dc49f4f3efa3f68881cf7cb5da27419d13a9" + }, + "recipe": { + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.2028", + "deps": [] + }, + "engine-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hrs", + "repo": "engine-mode", + "sha256": "1k17z1dy9m9lx2fy78ack8fyf5vqb79fwjn078f93bcjl5mc7d4k", + "rev": "98020c5c8fcc3c675999fc6215af6a6259c5c017" + }, + "recipe": { + "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150902.1235", + "deps": [] + }, + "company-c-headers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "randomphrase", + "repo": "company-c-headers", + "sha256": "16cva7ccc0hrc6yf659kpsznlk1bkgv525lqr4nj8a12q0avjdxf", + "rev": "0b8c63cdc7864c3e3939c4b8cda314d05ae0a352" + }, + "recipe": { + "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150801.1101", + "deps": [ + "company", + "emacs" + ] + }, + "textmate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "textmate.el", + "sha256": "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh", + "rev": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781" + }, + "recipe": { + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110816.1646", + "deps": [] + }, + "flycheck-clojure": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "squiggly-clojure", + "sha256": "0zldhxlbp6m2gnqbb3dgmj32hnx1lh7wvjcpw1s4gz980ncgc8k8", + "rev": "308044d58c4e16567ae818cc1d1e90f29947ada3" + }, + "recipe": { + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150831.831", + "deps": [ + "cider", + "emacs", + "flycheck", + "let-alist" + ] + }, + "sotclojure": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-clojure", + "sha256": "0s6nfszyk0qprdpd55yfcn6xv1fym43yra0j4ys6wf65lai9kr2p", + "rev": "f2f7ed52dba57752804810992c35f991c9f7dfc4" + }, + "recipe": { + "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1913", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150710.2153", + "deps": [] + }, + "el-autoyas": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "el-autoyas.el", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n", + "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" + }, + "recipe": { + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120918.817", + "deps": [] + }, + "px": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aaptel", + "repo": "preview-latex", + "sha256": "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3", + "rev": "c698a650997a1d5b06b92acc8f30d620342e1f37" + }, + "recipe": { + "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141006.748", + "deps": [] + }, + "osx-pseudo-daemon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "osx-pseudo-daemon", + "sha256": "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk", + "rev": "0b9f330a66b4e8d2ff9bcd57e09b8d304dfb5841" + }, + "recipe": { + "sha256": "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140818.957", + "deps": [] + }, + "haskell-emacs-base": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150714.1059", + "deps": [ + "haskell-emacs" + ] + }, + "leerzeichen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "leerzeichen.el", + "sha256": "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn", + "rev": "e67e59a0e15bc4a41006fdd9822c4b3e6d7da626" + }, + "recipe": { + "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151106.28", + "deps": [] + }, + "rcirc-groups": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "rcirc-groups", + "sha256": "0b09qx30iy82c2zs7b7g1a4ij7qa0ic830ip0j37mrb0hpxym634", + "rev": "af15e550339c1b8b2971eb2958e0029c353abfb2" + }, + "recipe": { + "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151207.1113", + "deps": [] + }, + "windata": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/windata.el", + "sha256": "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz" + }, + "recipe": { + "sha256": "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20080412.955", + "deps": [] + }, + "clues-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-clues-theme", + "sha256": "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar", + "rev": "69d873c90fbf24590c765309b7fb55cd14bb6bda" + }, + "recipe": { + "sha256": "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140922.2256", + "deps": [ + "emacs" + ] + }, + "ert-async": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-async.el", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9", + "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" + }, + "recipe": { + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151011.859", + "deps": [] + }, + "http": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "http.el", + "sha256": "0k9ksbpcdx5asjcvnivm8hpkm55qjz348gb8ihx5q5448h89ksrz", + "rev": "3984230ea8b413bc634fb72d097c7f3b8c92b988" + }, + "recipe": { + "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.746", + "deps": [] + }, + "password-vault": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "password-vault", + "sha256": "0984pzlfxsgi2060spjxw7livfh8013ffrk4x8m4sjifhniqgjqk", + "rev": "e47d99bb092e150472f1989ab3ac5a4752863515" + }, + "recipe": { + "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.2141", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "mustache": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "mustache.el", + "sha256": "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q", + "rev": "b0ea352813592424164520a49e86c04600242752" + }, + "recipe": { + "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.1045", + "deps": [ + "emacs" + ] + }, + "sibilant-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jbr", + "repo": "sibilant-mode", + "sha256": "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6", + "rev": "bc1b5d8cd597918bafc9b2880ee49024740e54ab" + }, + "recipe": { + "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151119.1545", + "deps": [] + }, + "elixir-yasnippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hisea", + "repo": "elixir-yasnippets", + "sha256": "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd", + "rev": "980ca7626c14ef0573bec0035ec7942796062783" + }, + "recipe": { + "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150602.1427", + "deps": [] + }, + "drupal-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-mode", + "sha256": "0am3n25qcfjkqfp4wjj1d2zigrmi8hg7p5sy2h91zg3blypqmpsr", + "rev": "b4a66092bddc471884b2746d69fd7e8853b4b79f" + }, + "recipe": { + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150830.1427", + "deps": [ + "php-mode" + ] + }, + "livid-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pandeiro", + "repo": "livid-mode", + "sha256": "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p", + "rev": "dfe5212fa64738bc4138bfebf349fbc8bc237c26" + }, + "recipe": { + "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130729.2050", + "deps": [] + }, + "company-jedi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-company-jedi", + "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1", + "rev": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b" + }, + "recipe": { + "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1050", + "deps": [] + }, + "termbright-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bmastenbrook", + "repo": "termbright-theme-el", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d", + "rev": "bec6ab14336c0611e85f45486276004f16d20607" + }, + "recipe": { + "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.2135", + "deps": [ + "emacs" + ] + }, + "jape-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tanzoniteblack", + "repo": "jape-mode", + "sha256": "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj", + "rev": "85b9182850707b5d107391f6caee5bd401507a7d" + }, + "recipe": { + "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140903.1006", + "deps": [] + }, + "list-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "list-utils", + "sha256": "0b6pnkhm5hnim2lpari93la08ic8qyh4nv0d7mw0cyfyk8phzzvn", + "rev": "36ade42f7cac835d1b8e3dcaf6beeba55ce89832" + }, + "recipe": { + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [] + }, + "helm-ack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ack", + "sha256": "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5", + "rev": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3" + }, + "recipe": { + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141030.726", + "deps": [ + "cl-lib", + "helm" + ] + }, + "fasd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "emacs-fasd", + "sha256": "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5", + "rev": "8726a367048054add81ecea7543de00688056735" + }, + "recipe": { + "sha256": "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.116", + "deps": [ + "grizzl" + ] + }, + "packed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "packed", + "sha256": "0743scd1g5xf3k9fbqv1qd9w421vfxwjlnb0vwix0ypahd83r3db", + "rev": "9d77e39c9df29c6224302cb7973b2de7e05f8bd7" + }, + "recipe": { + "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150723.638", + "deps": [ + "dash", + "emacs" + ] + }, + "guide-key": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kai2nenobu", + "repo": "guide-key", + "sha256": "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0", + "rev": "9236d287a7272e307fb941237390a96037c8c0a2" + }, + "recipe": { + "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150423.1558", + "deps": [ + "dash" + ] + }, + "flx-isearch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "PythonNut", + "repo": "flx-isearch", + "sha256": "0ajc3vvgswqk57z7nmcx7npryi8ph9kzvw588bvqcg37a8l3nzh0", + "rev": "1c44a76bb6f9af925db6cee4102c635ef8d76318" + }, + "recipe": { + "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151016.2259", + "deps": [ + "cl-lib", + "emacs", + "flx" + ] + }, + "runner": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thamer", + "repo": "runner", + "sha256": "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9", + "rev": "f5983931899282cf8b10ad197d61860a61cf070d" + }, + "recipe": { + "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151118.416", + "deps": [] + }, + "cliphist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cliphist", + "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q", + "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" + }, + "recipe": { + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121118.954", + "deps": [] + }, + "dim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "dim.el", + "sha256": "1nixb8xw7rdrq9da1767jl8xximfdcwav2fs0kwmxjc6vahh7ya1", + "rev": "aee695f4c227e11aa22376667712815aafbb3616" + }, + "recipe": { + "sha256": "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.315", + "deps": [ + "emacs" + ] + }, + "zossima": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "zossima", + "sha256": "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39", + "rev": "991676635c374d2a12714dcf48c1ce2d6f97a375" + }, + "recipe": { + "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150713.916", + "deps": [ + "haskell-emacs" + ] + }, + "flycheck-rust": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-rust", + "sha256": "08ar85p5llk0lxlm2rd7rfc8s449vrknsrzzxqg8kvakgpd0nx7q", + "rev": "e03c895ef1ce514f7cefcd86f10e6bde97ff1c73" + }, + "recipe": { + "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.913", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "ido-sort-mtime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pkkm", + "repo": "ido-sort-mtime", + "sha256": "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd", + "rev": "7b7c77f6856125a59aff99ba0ff8d2b369896b5e" + }, + "recipe": { + "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131117.730", + "deps": [] + }, + "synosaurus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rootzlevel", + "repo": "synosaurus", + "sha256": "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s", + "rev": "9be71a2df0c19ddb5e0cb8cba29ded5368a0fcae" + }, + "recipe": { + "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151119.1249", + "deps": [ + "cl-lib" + ] + }, + "php-boris": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "php-boris", + "sha256": "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy", + "rev": "d2caaba8f42375b47389240c647c03c2a305d3fb" + }, + "recipe": { + "sha256": "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.153", + "deps": [ + "s" + ] + }, + "ph": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "ph", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p", + "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" + }, + "recipe": { + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150824.2110", + "deps": [ + "s" + ] + }, + "es-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "es-mode", + "sha256": "1cc2k52vq2m4hzmrpb51xd5pjnxzv3iy8rf2y02c6f3a5xpilj9k", + "rev": "c5dd41e453e83da2e841894d9a51598f03318f7c" + }, + "recipe": { + "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150916.2233", + "deps": [ + "dash" + ] + }, + "flymake-ruby": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-ruby", + "sha256": "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109", + "rev": "8dc4ca44ec2acfaab25f5501fca1bd687fae94f2" + }, + "recipe": { + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121104.1259", + "deps": [ + "flymake-easy" + ] + }, + "projector": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "projector.el", + "sha256": "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3", + "rev": "fd9553a27d665889646b881b64a8f1577b47882b" + }, + "recipe": { + "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141201.1858", + "deps": [ + "emacs" + ] + }, + "commander": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "commander.el", + "sha256": "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1", + "rev": "2a4f1fd6cf9aa1798559dbdd5fbd9dcd327cd859" + }, + "recipe": { + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.2129", + "deps": [] + }, + "gmpl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gmpl-mode", + "sha256": "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4", + "rev": "c4cf8896aef89b4c08c0c8764c9f2330fc987f9e" + }, + "recipe": { + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131123.931", + "deps": [ + "helm" + ] + }, + "back-button": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "back-button", + "sha256": "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l", + "rev": "98d92984a740acd1547bd7ed05cca0affdb21c3e" + }, + "recipe": { + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141006.2055", + "deps": [ + "flymake-easy" + ] + }, + "nclip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "maio", + "repo": "nclip.el", + "sha256": "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis", + "rev": "af88e38b1f04be02bf2e57affc662dbd0f828e67" + }, + "recipe": { + "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120312.1525", + "deps": [] + }, + "ox-twbs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marsmining", + "repo": "ox-twbs", + "sha256": "026g48sgqwnqs5zmrabhiv3l8052l4c1vsbsf6bdxv4a6yp0l654", + "rev": "cfe67353d148e65a7676f1609d8cc22a4c8fbc78" + }, + "recipe": { + "sha256": "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.1320", + "deps": [] + }, + "mediawiki": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "mediawiki-el", + "sha256": "1cdr5p9x9bxnfy9mgz7l70zfzfwcjdhydw0jhdvs6qlqaqmm4qqq", + "rev": "47875f753599e309f1c3da5beb4805487ab75636" + }, + "recipe": { + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150711.1934", + "deps": [] + }, + "jknav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aculich", + "repo": "jknav.el", + "sha256": "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij", + "rev": "861245715c728503dad6573278fdd75c271dbf8b" + }, + "recipe": { + "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121006.1525", + "deps": [] + }, + "oldlace-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "oldlace-theme", + "sha256": "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82", + "rev": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6" + }, + "recipe": { + "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150705.800", + "deps": [ + "emacs" + ] + }, + "0blayout": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "etu", + "repo": "0blayout-mode", + "sha256": "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96", + "rev": "e256da71d4e0f126a0fd8a9b8fb77f54931f4dfc" + }, + "recipe": { + "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.549", + "deps": [] + }, + "afternoon-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "emacs-afternoon-theme", + "sha256": "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb", + "rev": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a" + }, + "recipe": { + "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140104.1259", + "deps": [ + "emacs" + ] + }, + "helm-pydoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-pydoc", + "sha256": "1hlbyw6jvh6pm3ivmhd6qvs9j7km322fki9g4yd4qw7w15a3wkyy", + "rev": "d4f409127bc77e7c79dcc87320b2db10466caed2" + }, + "recipe": { + "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150411.616", + "deps": [ + "visual-regexp" + ] + }, + "org-pdfview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "org-pdfview", + "sha256": "07xcibpqkr0kmwqvz9sfcd3bizscksvc7jw48zg6k79hb90vp1i0", + "rev": "8f66629e883e0d490584bbf4610cc91938694889" + }, + "recipe": { + "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140723.1346", + "deps": [] + }, + "aozora-view": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "aozora-view", + "sha256": "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l", + "rev": "b0390616d19e45f15f9a2f5d5688274831e721fd" + }, + "recipe": { + "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140310.817", + "deps": [] + }, + "tinkerer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "tinkerer.el", + "sha256": "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2", + "rev": "1125780d1fba0330435fcbe943716032ed543a57" + }, + "recipe": { + "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150220.49", + "deps": [ + "s" + ] + }, + "readability": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "emacs-readability", + "sha256": "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g", + "rev": "6c220ab8e0ca63946574ed892add5c8fd14002ce" + }, + "recipe": { + "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140715.1927", + "deps": [ + "emacs", + "oauth", + "ov" + ] + }, + "pushbullet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "revolver", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym", + "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" + }, + "recipe": { + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140809.732", + "deps": [ + "grapnel", + "json" + ] + }, + "git-blame": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tsgates", + "repo": "git-emacs", + "sha256": "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx", + "rev": "5c7e8c546c7e99a2424d484b253c1581bfd7ff7d" + }, + "recipe": { + "sha256": "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110509.1126", + "deps": [] + }, + "io-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "superbobry", + "repo": "io-mode", + "sha256": "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp", + "rev": "79f2de13d8a448892266da26642525747d048aa8" + }, + "recipe": { + "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140814.521", + "deps": [] + }, + "command-log-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "command-log-mode", + "sha256": "0fnyksbynlmmvl39f4is0xjp6b13yshfazigbksv012hxp0whslm", + "rev": "7408c0cb96709b8449f25a58a2203ed90bb5b850" + }, + "recipe": { + "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150615.916", + "deps": [] + }, + "vline": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/vline.el", + "sha256": "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj" + }, + "recipe": { + "sha256": "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120108.645", + "deps": [] + }, + "helm-wordnet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "helm-wordnet", + "sha256": "0jaj513nnmbmlj8if84k5k0k7a6b24hzpzi0kbzj5vbr010cwnjd", + "rev": "71fe718cccdb172614b5e2e55192301a44f6d7d4" + }, + "recipe": { + "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141212.1532", + "deps": [] + }, + "firefox-controller": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "emacs-firefox-controller", + "sha256": "0pyk9qg7rb69bcbkbc6vf47ziyyxz9gapvkisi5h9kfx3frbix04", + "rev": "aeed30509fefc78463531b9e006a795d868d4e74" + }, + "recipe": { + "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140324.648", + "deps": [] + }, + "elpy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "elpy", + "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8", + "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" + }, + "recipe": { + "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151103.901", + "deps": [] + }, + "smart-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dryman", + "repo": "smart-window.el", + "sha256": "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9", + "rev": "a87e0d2007de40033deee39496f791f4b047f138" + }, + "recipe": { + "sha256": "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130214.1342", + "deps": [] + }, + "avy-zap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "avy-zap", + "sha256": "0s7lhls6gs055kw0893nkb9myv7m2q2p251lq9wh2r3bmia9d6pg", + "rev": "ee3a2ad9911384e21537bc641a2f794dd192bbe8" + }, + "recipe": { + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.1348", + "deps": [ + "avy" + ] + }, + "inf-ruby": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "inf-ruby", + "sha256": "0rg7md4b8chqfh565l9dhsjyiiqrbhm2xcaf88h2zian2rp0p1wh", + "rev": "24c08fca2a18b76a3a200c79bdb5e41b50e04296" + }, + "recipe": { + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151104.1437", + "deps": [] + }, + "confluence": { + "fetch": { + "tag": "fetchsvn", + "url": "http://confluence-el.googlecode.com/svn/trunk/", + "sha256": "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55", + "rev": "170" + }, + "recipe": { + "sha256": "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130808.2150", + "deps": [ + "xml-rpc" + ] + }, + "tea-time": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krick", + "repo": "tea-time", + "sha256": "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40", + "rev": "1f6cf0bdd27c5eb3508989c5095427781f858eca" + }, + "recipe": { + "sha256": "18fsbh78c5408zg5bk44gxdynp6kn8253xdg7ap2pr3mjknq9kld", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120331.320", + "deps": [] + }, + "dictionary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm", + "rev": "a23b8f4a422d0de69a006ed010eff5795319db98" + }, + "recipe": { + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140717.2229", + "deps": [ + "connection", + "link" + ] + }, + "cargo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "attichacker", + "repo": "cargo.el", + "sha256": "1khdwj443rw6l47r8j49a7wfg5qfdn9n8viz1fbk56v33kgj2lav", + "rev": "1b28b29d641a52d23861f241c54c098d6f070e76" + }, + "recipe": { + "sha256": "0kr8mj3i4fd2x6ymaikzmj1m4q0s4lfvnafcpi7jch0za0qixjcq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151017.1620", + "deps": [ + "emacs" + ] + }, + "helm-flymake": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "helm-flymake", + "sha256": "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h", + "rev": "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a" + }, + "recipe": { + "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130717.44", + "deps": [ + "helm" + ] + }, + "scratch-ext": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kyanagi", + "repo": "scratch-ext-el", + "sha256": "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp", + "rev": "388c53cddd0466b451264894667ed64a6947ad67" + }, + "recipe": { + "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130704.932", + "deps": [] + }, + "cl-lib-highlight": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "cl-lib-highlight", + "sha256": "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0", + "rev": "fd1b308e6e989791d1df14438efa6b77d20f7c7e" + }, + "recipe": { + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151124.1441", + "deps": [] + }, + "ob-http": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "ob-http", + "sha256": "1yv1i646ll9wnmarcwcmx3nvscq3sv22rmnphvqcr0whrd9vb7rb", + "rev": "d9af67c6726c50447d8cf21b9c1c25a3a07dc0ce" + }, + "recipe": { + "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150923.213", + "deps": [] + }, + "stekene-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "stekene-theme", + "sha256": "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3", + "rev": "45b643a5af7dac70997d6a60e69c2f2473337d98" + }, + "recipe": { + "sha256": "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141108.1411", + "deps": [ + "emacs" + ] + }, + "git-annex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "git-annex-el", + "sha256": "0yxmrcrvl9pbwhd7w4vnrv2jqyskzvqp17sr3vzjlvv694jd4dms", + "rev": "a37648ae83783bb48221ef6299aa4ef5ceccf51b" + }, + "recipe": { + "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131119.1645", + "deps": [] + }, + "checkbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "checkbox.el", + "sha256": "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45", + "rev": "335afa4404adf72973195a580458927004664d98" + }, + "recipe": { + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20111208.1222", + "deps": [] + }, + "opam": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "opam.el", + "sha256": "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45", + "rev": "4d589de5765728f56af7078fae328b6792de8600" + }, + "recipe": { + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150601.1609", + "deps": [] + }, + "number": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "number", + "sha256": "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n", + "rev": "f483365c330392b3e9362481b145acf3db040baf" + }, + "recipe": { + "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141127.1204", + "deps": [] + }, + "org-drill-table": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "org-drill-table", + "sha256": "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy", + "rev": "d7b5b3743ac04f8cb1087c5c049c0520058fa89c" + }, + "recipe": { + "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140311.431", + "deps": [] + }, + "peep-dired": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "peep-dired", + "sha256": "1qi9qzcvclyw9wiamsw0z8q09hs0mfhaj2giny42nd6sqacvfr7m", + "rev": "6c18727fc58e2a19638f133810e35bd5d918a559" + }, + "recipe": { + "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150518.900", + "deps": [] + }, + "docker-tramp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "docker-tramp.el", + "sha256": "1mh28210a85yy1b4lic3ijv7xhjk3z9nxjq55b7mqflgjna1ih3c", + "rev": "8e9ae1b170fc320e38806c3957c6f01dbb46c26e" + }, + "recipe": { + "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150908.2155", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ycmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "1lydq43xn51m4dwvv3qzrcsqw7dwbhxz4rinqx4m9y81caqakssx", + "rev": "3005b49176ff3315ba4cc7893fff42ce034d6e80" + }, + "recipe": { + "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.906", + "deps": [ + "dash", + "deferred", + "emacs", + "f", + "popup" + ] + }, + "springboard": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "springboard", + "sha256": "14py5amh66jzhqyqjz5pxq0g19vzlmqnrr5wij1ix64xwfr3xdy8", + "rev": "d12119d9dd2b0b64f0af0ba82c273326c8c12268" + }, + "recipe": { + "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150505.1211", + "deps": [ + "helm" + ] + }, + "zone-nyan": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "zone-nyan", + "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy", + "rev": "e36875d83ad3dce14f23864688959fa0d98ba410" + }, + "recipe": { + "sha256": "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1539", + "deps": [] + }, + "haste": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rlister", + "repo": "emacs-haste-client", + "sha256": "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88", + "rev": "22d05aacc3296ab50a7361222ab139fb4d447c25" + }, + "recipe": { + "sha256": "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141030.1534", + "deps": [ + "json" + ] + }, + "gitattributes-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150330.1248", + "deps": [] + }, + "emojify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "emacs-emojify", + "sha256": "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp", + "rev": "fec788f09ab1c131b89f296ebd3e73df97e96cfe" + }, + "recipe": { + "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.2152", + "deps": [ + "emacs", + "ht", + "seq" + ] + }, + "sx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "sx.el", + "sha256": "0kfjaqydpm1c9l3k58zfjdy7wpqvsm7rirsnizwidg8lhca28b2b", + "rev": "75db6c18ceee1e75f8be0c312c6241d359b7a28b" + }, + "recipe": { + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150808.1705", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "esup", + "sha256": "0xfip7awlrd935ijyw4pz0mjg0wyqifp74w4psxm8cy7hymly450", + "rev": "bba1baf15c12e8fdaa36afa20943e311c7fdc12d" + }, + "recipe": { + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.1946", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "evil-rsi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-rsi", + "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq", + "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" + }, + "recipe": { + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.1719", + "deps": [ + "evil" + ] + }, + "letcheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "letcheck", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn", + "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" + }, + "recipe": { + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150418.1902", + "deps": [] + }, + "clojure-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mpenet", + "repo": "clojure-snippets", + "sha256": "1w8izhrj23b8kqcsqalgrzxqnq18nvdxl48305p8cnwll646xjl2", + "rev": "24ebfd34665e1a3b74aaa823f8b2e3e4a5e0b827" + }, + "recipe": { + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150504.344", + "deps": [ + "yasnippet" + ] + }, + "zonokai-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ZehCnaS34", + "repo": "zonokai-emacs", + "sha256": "0ls9x2r12z9ki2fy3cbf05mp28x4ws2gk3knacvw7gvvg4sjdq5w", + "rev": "b6f9eb7eb7e3f9954d786144e74dc6e392df3a69" + }, + "recipe": { + "sha256": "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150408.2202", + "deps": [] + }, + "helm-lobsters": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "julienXX", + "repo": "helm-lobste.rs", + "sha256": "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy", + "rev": "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb" + }, + "recipe": { + "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151124.1709", + "deps": [] + }, + "sproto-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2q1n9", + "repo": "sproto-mode", + "sha256": "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x", + "rev": "0583a88273204dccd884b7edaa3590cefd31e7f7" + }, + "recipe": { + "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151115.1205", + "deps": [] + }, + "helm-commandlinefu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-commandlinefu", + "sha256": "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j", + "rev": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d" + }, + "recipe": { + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151207.1140", + "deps": [ + "emacs" + ] + }, + "badger-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ccann", + "repo": "badger-theme", + "sha256": "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1", + "rev": "80fb9f8ace37b2e8807da639f7da499a53ffefd4" + }, + "recipe": { + "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140716.2132", + "deps": [] + }, + "ox-asciidoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-asciidoc", + "sha256": "1q7jlz0f09mwymq8m6x9fiariww7rwiy4wkqkbbc296wm7impr75", + "rev": "e34b1df9fa061d395e600660620ab6c3b7e59ac1" + }, + "recipe": { + "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150919.1459", + "deps": [ + "org" + ] + }, + "ember-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "madnificent", + "repo": "ember-mode", + "sha256": "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz", + "rev": "e82d88eee1882ac104857ec42a4fed731a99c13e" + }, + "recipe": { + "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140611.1100", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "therapy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "therapy", + "sha256": "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1", + "rev": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a" + }, + "recipe": { + "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151113.1353", + "deps": [ + "emacs" + ] + }, + "isend-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "isend-mode.el", + "sha256": "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0", + "rev": "274163f5c42834ce0391fcc8800e169104ad518f" + }, + "recipe": { + "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130419.458", + "deps": [] + }, + "cd-compile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jamienicol", + "repo": "emacs-cd-compile", + "sha256": "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c", + "rev": "10284ccae86afda4a37b09ba90acd1e2efedec9f" + }, + "recipe": { + "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141108.1357", + "deps": [] + }, + "flycheck-irony": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "flycheck-irony", + "sha256": "1ax55yhf9q8i8z1f97zp3r08dqv8npd2llllbwa67d1bj49bsf2h", + "rev": "b92e881fdf9c9cea192bfb8fa228784af5e27ea4" + }, + "recipe": { + "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141215.2347", + "deps": [ + "emacs" + ] + }, + "auctex-lua": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "auctex-lua", + "sha256": "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz", + "rev": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5" + }, + "recipe": { + "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.1010", + "deps": [ + "auctex", + "lua-mode" + ] + }, + "elmacro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "elmacro", + "sha256": "181hcyg5v62nxrgmb7pl9672rm9fy8crc4lqhdwvdvd7ngki1fiz", + "rev": "ff5d8a0d7f5154707f1d0a2b22894c6c0b0b9f94" + }, + "recipe": { + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1604", + "deps": [] + }, + "helm-make": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-make", + "sha256": "05z1s01wgdj2s7qln42cg7nnjq0hmq2ji4xjldzj6w770a5nvb7g", + "rev": "0f29d09002653a2b3cb21ffdecaf33e7911747d8" + }, + "recipe": { + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151117.1120", + "deps": [ + "helm", + "projectile" + ] + }, + "go-autocomplete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "0p3abkqllgy1b5l08wgxjywvvbcjiyjdf00azh1r1nyc81m4krni", + "rev": "2b99fc4d372b017483b7596c4577bf5f15479772" + }, + "recipe": { + "sha256": "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150903.2140", + "deps": [ + "auto-complete" + ] + }, + "beeminder": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "beeminder.el", + "sha256": "1ckbl8z59p81jsq8xsgcwqqrpzv1apzjr594w3dyp9bzqb7h2acm", + "rev": "92fa1a8d1df3e2fd0698192008f604b1794ee5f8" + }, + "recipe": { + "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1634", + "deps": [ + "org" + ] + }, + "idris-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "idris-hackers", + "repo": "idris-mode", + "sha256": "16gk7ry4yiaxk9dp6s2m4g79klw344yvr86d7hr0qdjkkf229m56", + "rev": "f2f0a19f1a23fac618442d7d2187cc3ac5d9e445" + }, + "recipe": { + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.101", + "deps": [ + "emacs" + ] + }, + "drill-instructor-AZIK-force": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "drill-instructor-AZIK-force.el", + "sha256": "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127", + "rev": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5" + }, + "recipe": { + "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151125.1333", + "deps": [] + }, + "highlight-symbol": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-symbol.el", + "sha256": "0d7scpgn9wnq9r72vjv68nnk6qgk0x1bxlm070hj2iz51pdqda7x", + "rev": "c2e15fee52aebf5c8e618460b8f924331d0df2a3" + }, + "recipe": { + "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.651", + "deps": [] + }, + "ppd-sr-speedbar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "ppd-sr-speedbar", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq", + "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" + }, + "recipe": { + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151108.624", + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ] + }, + "clean-buffers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "clean-buffers", + "sha256": "18z3511iyvcw04lhpxfa36gybbw4ply6bbd5l2nfqn7q2lpi95ya", + "rev": "a6902eecef04a39f28a1e44631cfb571ddc5e020" + }, + "recipe": { + "sha256": "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.922", + "deps": [ + "cl-lib" + ] + }, + "reveal-next": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/reveal-next.el", + "sha256": "0bpcx6jlv0m5bg1zrkak471fa2yj4m517zn72ajvp5r9y408i82y" + }, + "recipe": { + "sha256": "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1843", + "deps": [] + }, + "vbasense": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-vbasense", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn", + "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" + }, + "recipe": { + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120728.913", + "deps": [] + }, + "org-redmine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "org-redmine", + "sha256": "1q99b9l6y97iic46xqj7rqnkrzk8f0qq4qy81jv9wz54hq51w07v", + "rev": "4289eb06c506f19ef8c467acb2a05bcf04f187c9" + }, + "recipe": { + "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.931", + "deps": [ + "anything" + ] + }, + "creds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-creds", + "sha256": "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa", + "rev": "b059397a7d59481f05fbb1bb9c8d3c2c69226482" + }, + "recipe": { + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151210.943", + "deps": [ + "helm", + "project-persist" + ] + }, + "phabricator": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ajtulloch", + "repo": "phabricator.el", + "sha256": "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4", + "rev": "b1450350cc3c45c732252bb13860156d824ead10" + }, + "recipe": { + "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131230.1551", + "deps": [ + "highlight" + ] + }, + "mustang-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "mustang-theme", + "sha256": "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4", + "rev": "79c3381dd50601775402fe2fddd16fffa9218837" + }, + "recipe": { + "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141017.1823", + "deps": [] + }, + "httprepl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "httprepl.el", + "sha256": "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld", + "rev": "cfa3693267a8ed1c96a86a126823f37dbfe077d8" + }, + "recipe": { + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1514", + "deps": [] + }, + "n3-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "doriantaylor", + "repo": "n3-mode-for-emacs", + "sha256": "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h", + "rev": "0145e7938c30183edb03a55a4f16390dabd191ec" + }, + "recipe": { + "sha256": "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141027.1257", + "deps": [] + }, + "quasi-monochrome-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lbolla", + "repo": "emacs-quasi-monochrome", + "sha256": "09vw8nf9yj3v2ks25n39fbn2qk1fld0hmaq1dpzaqsavsbd4dwc1", + "rev": "b2456aaa71b51d4f9b06c5dfb529e60732574fc7" + }, + "recipe": { + "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150801.1525", + "deps": [] + }, + "rfringe": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/rfringe.el", + "sha256": "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh" + }, + "recipe": { + "sha256": "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110405.1020", + "deps": [] + }, + "projectile-codesearch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "codesearch.el", + "sha256": "105g2a9d0rb1qaph276qyj2gq9k9zkvrz5wzic9r06mjiywk1s9a", + "rev": "9a887f8d440ba98a72a7619dd744c0a9e3892919" + }, + "recipe": { + "sha256": "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150419.45", + "deps": [ + "codesearch", + "projectile" + ] + }, + "editorconfig": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "04sflhamh5b9gxllfhcqdim02x6cb9xid39al2lisb8z4xywch68", + "rev": "5132b7a9441af76196ba3e62d73a0bb415853e4f" + }, + "recipe": { + "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.1035", + "deps": [ + "editorconfig-core" + ] + }, + "bbyac": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "baohaojun", + "repo": "bbyac", + "sha256": "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl", + "rev": "8dc5a7c0ada7ac729a87343149970ced139bb659" + }, + "recipe": { + "sha256": "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150124.1809", + "deps": [ + "anzu", + "evil" + ] + }, + "cloc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "cloc-emacs", + "sha256": "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v", + "rev": "15e63b83dd6261f543d25aac4c72e764e3274d53" + }, + "recipe": { + "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151007.401", + "deps": [ + "cl-lib" + ] + }, + "hl-anything": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "hl-anything", + "sha256": "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr", + "rev": "018da4cdf891529b4769d59c0400b6cf3456b9c4" + }, + "recipe": { + "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150219.731", + "deps": [ + "emacs" + ] + }, + "restart-emacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "restart-emacs", + "sha256": "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n", + "rev": "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8" + }, + "recipe": { + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.1035", + "deps": [] + }, + "lispxmp": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/lispxmp.el", + "sha256": "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf" + }, + "recipe": { + "sha256": "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.707", + "deps": [] + }, + "dummyparens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "snosov1", + "repo": "dummyparens", + "sha256": "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh", + "rev": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89" + }, + "recipe": { + "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141009.524", + "deps": [] + }, + "clean-aindent-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pmarinov", + "repo": "clean-aindent-mode", + "sha256": "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0", + "rev": "9ae15997cd75c5625a4f759a3aff39bf202fc36f" + }, + "recipe": { + "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150816.2229", + "deps": [] + }, + "passthword": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "passthword", + "sha256": "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq", + "rev": "30bace842eaaa6b48cb2251fb84868ebca0467d6" + }, + "recipe": { + "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.2030", + "deps": [ + "dash", + "emacs" + ] + }, + "smyx-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tacit7", + "repo": "smyx", + "sha256": "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x", + "rev": "6263f6b401bbabaed388c8efcfc0be2e58c51401" + }, + "recipe": { + "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141127.228", + "deps": [] + }, + "evil-cleverparens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "luxbock", + "repo": "evil-cleverparens", + "sha256": "1pzybq12m1p28x8p173s4hdagv7654k0z5vj3a1wj1nww31978m6", + "rev": "28fc9a9b465b908cb01bf99b538d50069bda8107" + }, + "recipe": { + "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150924.606", + "deps": [] + }, + "sweetgreen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "sweetgreen.el", + "sha256": "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn", + "rev": "a456dd7948a25da8ff007a142cf1325b4855d908" + }, + "recipe": { + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150405.216", + "deps": [] + }, + "javadoc-lookup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "javadoc-lookup", + "sha256": "0ljpqgp2w3lr61n2vr748n3wyshlqnnbin0643jffa319l99z35r", + "rev": "0d5316407c9ec183040ca5c6ab71091b9444276f" + }, + "recipe": { + "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1310", + "deps": [ + "cl-lib" + ] + }, + "immutant-server": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "immutant-server.el", + "sha256": "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h", + "rev": "2a21e65588acb6a976f2998e30b21fdabdba4dbb" + }, + "recipe": { + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140311.1708", + "deps": [] + }, + "git-ps1-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "git-ps1-mode-el", + "sha256": "13k11acls6r65gms1hkmnhnbw7hkc1f7ijdb0lwipqdn4h361pjg", + "rev": "c4910224204c94aabd59ab2cf05f309302bcbedd" + }, + "recipe": { + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1031", + "deps": [] + }, + "evil-textobj-anyblock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "evil-textobj-anyblock", + "sha256": "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw", + "rev": "a9e1fdd546312fa787cd0a0acc7ca5e0253de945" + }, + "recipe": { + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20101130.648", + "deps": [] + }, + "cyberpunk-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "n3mo", + "repo": "cyberpunk-theme.el", + "sha256": "1zx93qb83ji2jf3dya9m7prii58aj4y94h10ynldls45cqk3chz4", + "rev": "5fee81bccb07d40ff1d41aa2342ca29639b057b0" + }, + "recipe": { + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.1153", + "deps": [] + }, + "ido-migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ido-migemo.el", + "sha256": "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38", + "rev": "e71114a92dd69cb46abf3fb71a09ce27506fcf77" + }, + "recipe": { + "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150921.1744", + "deps": [ + "migemo" + ] + }, + "elwm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "elwm", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2", + "rev": "c33b183f006ad476c3a44dab316f580f8b369930" + }, + "recipe": { + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150817.507", + "deps": [ + "dash" + ] + }, + "airline-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AnthonyDiGirolamo", + "repo": "airline-themes", + "sha256": "00j9gx0lmh34pmm19909g1pj1hfz0g4jxw4f0wvcsqzsj6zdz8nx", + "rev": "8355460678b95a2ef38d6ef6c046b451e4a0255e" + }, + "recipe": { + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.2135", + "deps": [ + "powerline" + ] + }, + "shackle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "shackle", + "sha256": "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y", + "rev": "4069e0cbff0d172de2cd7d588de971d8b02915c6" + }, + "recipe": { + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.1432", + "deps": [ + "cl-lib" + ] + }, + "scpaste": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "scpaste", + "sha256": "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii", + "rev": "677f9b7c5a1b533bef44747d6331b671ffcb8a9c" + }, + "recipe": { + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.1935", + "deps": [ + "htmlize" + ] + }, + "helm-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-themes", + "sha256": "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w", + "rev": "a6449a40c5a219b43a92c975917a07337f864b4f" + }, + "recipe": { + "sha256": "1j64w6dnxmq0rfycci9wfy2z5lbddsggf486pknxfgwwqgvns90l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151009.121", + "deps": [ + "helm-core" + ] + }, + "gnuplot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bruceravel", + "repo": "gnuplot-mode", + "sha256": "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c", + "rev": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9" + }, + "recipe": { + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141231.1537", + "deps": [] + }, + "brainfuck-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "brainfuck-mode", + "sha256": "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd", + "rev": "36e69552bb3b97a4f888d362c59845651bd0d492" + }, + "recipe": { + "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131007.2153", + "deps": [] + }, + "ac-etags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-etags", + "sha256": "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4", + "rev": "e53cb3a8dd44e41fba3d2b737f90a8cfc529e2a6" + }, + "recipe": { + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151031.2121", + "deps": [ + "auto-complete" + ] + }, + "rect+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-rectplus", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj", + "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" + }, + "recipe": { + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150620.1944", + "deps": [] + }, + "flymake-hlint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-hlint", + "sha256": "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp", + "rev": "fae0c16f938129fb933e4c4625287816e8e160f0" + }, + "recipe": { + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130309.345", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-ycmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "1lydq43xn51m4dwvv3qzrcsqw7dwbhxz4rinqx4m9y81caqakssx", + "rev": "3005b49176ff3315ba4cc7893fff42ce034d6e80" + }, + "recipe": { + "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151003.2033", + "deps": [] + }, + "hemisu-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "andrzejsliwa", + "repo": "hemisu-theme", + "sha256": "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697", + "rev": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f" + }, + "recipe": { + "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130508.1344", + "deps": [] + }, + "naquadah-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "naquadah-theme", + "sha256": "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2", + "rev": "f6308bb7d110f1e6d6a91db901f8fb3f99da12ac" + }, + "recipe": { + "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150923.341", + "deps": [] + }, + "stan-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "1k0jidh177s9lk4k9vphivq8dapd2qzajim2s835pn72j6k675vg", + "rev": "e981ca7fee98431162b21ec6b79c82100ce4b276" + }, + "recipe": { + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.2258", + "deps": [ + "stan-mode", + "yasnippet" + ] + }, + "emacsql-mysql": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ld5qpl7b3iksgxcfysznf88wj019l5271kdz4nalqi4kchf5xad", + "rev": "74bd11bc0998d7019a05eecc0486fee09c84a93b" + }, + "recipe": { + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151004.915", + "deps": [ + "cl-lib", + "emacs", + "emacsql" + ] + }, + "cdlatex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cdominik", + "repo": "cdlatex", + "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d", + "rev": "b7183c2200392b6d85fca69390f4a65fac7a7b19" + }, + "recipe": { + "sha256": "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140707.626", + "deps": [] + }, + "yalinum": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tm8st", + "repo": "emacs-yalinum", + "sha256": "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0", + "rev": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973" + }, + "recipe": { + "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130217.443", + "deps": [] + }, + "org-download": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "org-download", + "sha256": "12k3iqzmj92cvi0d99mn3ylxj00p2f2f8049dd2nxnp1gxs2k4dq", + "rev": "501920e273b32f96dfbafcf769d330296a612847" + }, + "recipe": { + "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.916", + "deps": [ + "async" + ] + }, + "oberon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "oberon", + "sha256": "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6", + "rev": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3" + }, + "recipe": { + "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120715.409", + "deps": [] + }, + "inkpot-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "siovan", + "repo": "emacs24-inkpot", + "sha256": "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv", + "rev": "374a72794ebcb92bd7b50b5578d4c2ffa6049966" + }, + "recipe": { + "sha256": "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120505.908", + "deps": [] + }, + "pixie-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johnwalker", + "repo": "pixie-mode", + "sha256": "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp", + "rev": "f32d5d812c7b5b72d7ff7bad52b41035f9ef6e96" + }, + "recipe": { + "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130809.447", + "deps": [] + }, + "guru-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "guru-mode", + "sha256": "16h1g88y4q737sxcjkm1kxirv5m2x3l9wgmz0s4hlxjzli8fc7jr", + "rev": "062a41794431d5e263f9f0e6ae1ec4a8d79980dd" + }, + "recipe": { + "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151028.28", + "deps": [] + }, + "msvc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "msvc", + "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3", + "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" + }, + "recipe": { + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151031.1955", + "deps": [ + "yabin" + ] + }, + "smex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "smex", + "sha256": "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26", + "rev": "55aaebe3d793c2c990b39a302eb26c184281c42c" + }, + "recipe": { + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151212.1609", + "deps": [ + "emacs" + ] + }, + "fancy-battery": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "fancy-battery.el", + "sha256": "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0", + "rev": "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68" + }, + "recipe": { + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130328.715", + "deps": [] + }, + "wgrep-ack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141012.511", + "deps": [ + "wgrep" + ] + }, + "nameframe-perspective": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "john2x", + "repo": "nameframe", + "sha256": "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5", + "rev": "96acff56b30f9d1145aeaf7a4c53c9a2c823ee8e" + }, + "recipe": { + "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.754", + "deps": [ + "dash" + ] + }, + "know-your-http-well": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "for-GET", + "repo": "know-your-http-well", + "sha256": "08q43k4450kgygyvqv18gwcmmb7y9x445401048lbixc4cp6p3cg", + "rev": "e208d856ce1b036d2dc1454813c6fc81f0269def" + }, + "recipe": { + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.813", + "deps": [] + }, + "homebrew-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "homebrew-mode", + "sha256": "1sj8pz48cilk8l6zn47fv1wkv833wrkvrf2mrmbdkvj3lqjrz0b3", + "rev": "767b4934c02c7b4117b6bd6cae8224848bc49db2" + }, + "recipe": { + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150911.658", + "deps": [] + }, + "indent-guide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "indent-guide", + "sha256": "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97", + "rev": "0ef4813c538d5afba210681a8e81848b0927d421" + }, + "recipe": { + "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151119.917", + "deps": [] + }, + "deft": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/deft.git", + "sha256": "15c3ec6fcfae63201652394205fee951f3c1db8d3c6fc5f48c306b9b775c8e63", + "rev": "2dd64ddc798a009e62289d65abfa621735461b7a" + }, + "recipe": { + "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.725", + "deps": [] + }, + "autodisass-java-bytecode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-java-bytecode", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s", + "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" + }, + "recipe": { + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151005.1112", + "deps": [] + }, + "projmake-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ericbmerritt", + "repo": "projmake-mode", + "sha256": "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn", + "rev": "25e2f28ca2c528e42c6422735829fc77bab8b451" + }, + "recipe": { + "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150619.1620", + "deps": [ + "dash", + "indicators" + ] + }, + "nm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tjim", + "repo": "nevermore", + "sha256": "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak", + "rev": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e" + }, + "recipe": { + "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151110.1310", + "deps": [ + "company", + "emacs", + "notmuch", + "peg" + ] + }, + "helm-bundle-show": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-bundle-show", + "sha256": "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30", + "rev": "b34523aa8a7f82ed9a1bf3643c35b65866a7877a" + }, + "recipe": { + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.630", + "deps": [ + "helm" + ] + }, + "irony": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "irony-mode", + "sha256": "0lsi3vzpfh62bh9lknswwsxczvns0j78psk1w5yqdjrnnd1fb6sw", + "rev": "64d16007f3e5066ed3b49adcb291044c01cb42d6" + }, + "recipe": { + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.1258", + "deps": [ + "cl-lib", + "json" + ] + }, + "elein": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "elein", + "sha256": "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw", + "rev": "d4c0c0491dbb7c90e953d7a16172107c37103605" + }, + "recipe": { + "sha256": "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120120.516", + "deps": [] + }, + "ruby-interpolation": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "ruby-interpolation.el", + "sha256": "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5", + "rev": "1978e337601222cedf00e117bf4b5cac15d1f203" + }, + "recipe": { + "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131112.1052", + "deps": [] + }, + "swiper-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "swiper-helm", + "sha256": "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b", + "rev": "57012ab626486fcb3dfba0ee6720b0625e489b8c" + }, + "recipe": { + "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.530", + "deps": [ + "emacs", + "helm", + "swiper" + ] + }, + "cal-china-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xwl", + "repo": "cal-china-x", + "sha256": "0l9izmif064jcz8hrmxjvi09i4kayxnw5az2x6w2w9d11j0zbgma", + "rev": "b8b3f94571ce6f7f53fda45516aa70632c9647ac" + }, + "recipe": { + "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.804", + "deps": [ + "cl-lib" + ] + }, + "chinese-wbim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zilongshanren", + "repo": "chinese-wbim", + "sha256": "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg", + "rev": "57ff61ff3895d77335709d24b40cefc4d10b0095" + }, + "recipe": { + "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150623.2250", + "deps": [] + }, + "n4js": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tmtxt", + "repo": "n4js.el", + "sha256": "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp", + "rev": "3991ed8975151d5e8d568e952362df810f7ffab7" + }, + "recipe": { + "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140117.413", + "deps": [] + }, + "e2wm-sww": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-sww", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g", + "rev": "1063f9854bd34db5ac771cd1036cecc89834729d" + }, + "recipe": { + "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140524.358", + "deps": [ + "e2wm" + ] + }, + "pomodoro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "baudtack", + "repo": "pomodoro.el", + "sha256": "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z", + "rev": "4a299b8f5e6623010224dcb3e524ff288c6a082c" + }, + "recipe": { + "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150716.1246", + "deps": [] + }, + "wisp-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/wisp", + "sha256": "0ppj8mrlc20i2syyiwvj5rp53swrm929h0ksxxlqvn3nvl9gsajd", + "rev": "34fc6f12d740" + }, + "recipe": { + "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150623.1234", + "deps": [] + }, + "syntactic-sugar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "syntactic-sugar", + "sha256": "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d", + "rev": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968" + }, + "recipe": { + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140508.1541", + "deps": [] + }, + "savekill": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/savekill.el", + "sha256": "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah" + }, + "recipe": { + "sha256": "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140417.2134", + "deps": [] + }, + "ido-at-point": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "katspaugh", + "repo": "ido-at-point", + "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp", + "rev": "e5907bbe8a3d148d07698b76bd994dc3076e16ee" + }, + "recipe": { + "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.257", + "deps": [ + "emacs" + ] + }, + "smartrep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "smartrep.el", + "sha256": "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6", + "rev": "f0ff5a6d7b8603603598ae3045c98b011e58d86e" + }, + "recipe": { + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150508.2130", + "deps": [] + }, + "prodigy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "prodigy.el", + "sha256": "18j0jwp8z4ff7xfiijyh09cvb14mbjfaygin2qjp6bxgx3c1mpin", + "rev": "1f3b5a3309122bae01150738c3d8da910ffbee71" + }, + "recipe": { + "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140710.426", + "deps": [] + }, + "scss-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "antonj", + "repo": "scss-mode", + "sha256": "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0", + "rev": "b010d134f499c4b4ad33fe8a669a81e9a531b0b2" + }, + "recipe": { + "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150107.1600", + "deps": [] + }, + "unipoint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "apgwoz", + "repo": "unipoint", + "sha256": "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0", + "rev": "5da04aebac35a5c9e1d8704f2231808d42f4b36a" + }, + "recipe": { + "sha256": "1nym2wlr50wk62cbagq1qyjczzf56nb6i9dfzcwikdck8p4p2dr7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140113.1624", + "deps": [] + }, + "buttercup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "emacs-buttercup", + "sha256": "02r6n7563yc8gads38pq2yqsfv6p8wi6gi1f36mmz4h2gc872m1b", + "rev": "238bfa84538e95bfeb3430feb5bd9be4f4f4b906" + }, + "recipe": { + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.806", + "deps": [] + }, + "jdee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jdee-emacs", + "repo": "jdee", + "sha256": "1vfh2wmn3lbq6lly0g7r1npmghn5idfvy9rx8im2gk04cdmiqkxx", + "rev": "7a4fa853e7d6af835bad236bc7eb0b28408e01f2" + }, + "recipe": { + "sha256": "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140212.502", + "deps": [] + }, + "display-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kawabata", + "repo": "emacs-display-theme", + "sha256": "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa", + "rev": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15" + }, + "recipe": { + "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "scratch-pop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "scratch-pop", + "sha256": "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1", + "rev": "2c9648a669ce8e3a9e35e8e1e3c808531d20c549" + }, + "recipe": { + "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150820.339", + "deps": [ + "popwin" + ] + }, + "erc-image": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-image.el", + "sha256": "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f", + "rev": "270a60706e3e0669350bb7aaea465570ef5074cf" + }, + "recipe": { + "sha256": "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.514", + "deps": [] + }, + "thingatpt+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/thingatpt+.el", + "sha256": "1fyx4z7ci5yisfng0ps2q1nwvziidamam1m2n53rkfmm2gprxqhb" + }, + "recipe": { + "sha256": "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150823.1911", + "deps": [] + }, + "mysql2sqlite": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-mysql2sqlite", + "sha256": "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i", + "rev": "07415c5fcd895ebccf1b774d0eab175f2700652f" + }, + "recipe": { + "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150801.1120", + "deps": [] + }, + "emms-player-mpv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "emms-player-mpv", + "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m", + "rev": "a1be1d266530ede3780dd69a7243d898f1016127" + }, + "recipe": { + "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151208.102", + "deps": [ + "emms" + ] + }, + "decl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "preetpalS", + "repo": "decl.el", + "sha256": "1njmsdgzknz844g0ydssg034pvrpvrhb0lx6rqyjkps2m74llzq1", + "rev": "75cca6bb1203f4d00cf10f7c4e87400f7c456e75" + }, + "recipe": { + "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.30", + "deps": [ + "emacs" + ] + }, + "kibit-helper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brunchboy", + "repo": "kibit-helper", + "sha256": "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr", + "rev": "16bdfff785ee05d8e74a5780f6808506d990cef7" + }, + "recipe": { + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151126.846", + "deps": [ + "cl-lib", + "dash" + ] + }, + "slime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "slime", + "repo": "slime", + "sha256": "18iz4cn209xri420hrsl7dmaf0mqr87rc870kwn63pddrqffzqa8", + "rev": "137a6bf990c5a9db72716ee15aa2bd86b77ba0cb" + }, + "recipe": { + "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140204.1354", + "deps": [] + }, + "define-word": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "define-word", + "sha256": "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd", + "rev": "64d98b7748686c51261fe6e8d42078c6284feb13" + }, + "recipe": { + "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150709.1423", + "deps": [ + "emacs" + ] + }, + "zeitgeist": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:zeitgeist-datasources", + "sha256": "0f80fxh0y9lfa08fnic7ln0jn8vngfbiygy6sizdmrcxz67559vc", + "rev": "181" + }, + "recipe": { + "sha256": "0gzmiwxmzcrl5mf0s7vs09p2wl7slq8xbl6ynl76iwzwjxjizahk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131228.1209", + "deps": [] + }, + "ecukes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "ecukes", + "sha256": "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2", + "rev": "7dad2da09da33d8540f25bf7bb7dd62900669b80" + }, + "recipe": { + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151011.815", + "deps": [] + }, + "dash": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1g7vrfhafmkqwdpfllfiwirl4pi437pyaws38jsd8laxmsa4m4wb", + "rev": "8a46d3c7c126d3e979f7f9b36867a413694cd8df" + }, + "recipe": { + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.1515", + "deps": [] + }, + "haml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "haml-mode", + "sha256": "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w", + "rev": "7717db6fa4a90d618b4a5e3fef2ac1d24ce39be3" + }, + "recipe": { + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150625.1723", + "deps": [ + "emacs", + "helm" + ] + }, + "elmine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "elmine", + "sha256": "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k", + "rev": "60639f46a5f45653f490cdd30732beb2dca47ada" + }, + "recipe": { + "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20080905.54", + "deps": [] + }, + "toxi-theme": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/postspectacular/toxi-theme", + "sha256": "0hfzbrw9ik3yxdwmgsm80k0n045z6az6pgvxc1nqcjmiwh80h9mk", + "rev": "fc4274055149" + }, + "recipe": { + "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130418.1439", + "deps": [ + "emacs" + ] + }, + "pyfmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aheaume", + "repo": "pyfmt.el", + "sha256": "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i", + "rev": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32" + }, + "recipe": { + "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150521.1556", + "deps": [] + }, + "ruby-dev": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Mon-Ouie", + "repo": "ruby-dev.el", + "sha256": "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1", + "rev": "3a6f6e489697916dd554852492bd325879be2e44" + }, + "recipe": { + "sha256": "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130811.351", + "deps": [] + }, + "flappymacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "taksatou", + "repo": "flappymacs", + "sha256": "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5", + "rev": "bbc69405f62e1bc488533709d4ab0b5eba919dbd" + }, + "recipe": { + "sha256": "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140715.1101", + "deps": [] + }, + "helm-company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "manuel-uberti", + "repo": "helm-company", + "sha256": "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg", + "rev": "13f87befb1a427295eeeeb49f0c2e4847bc81e10" + }, + "recipe": { + "sha256": "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151216.209", + "deps": [ + "company", + "helm" + ] + }, + "smeargle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-smeargle", + "sha256": "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460", + "rev": "67466d5214a681430db8cb59a2a1bca771ff0024" + }, + "recipe": { + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151014.42", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "table": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "table.el", + "sha256": "06asy1mwp9yyvzck1n5xrl1c4zzf1vf3k2xmlcb262nllfsh4gmc", + "rev": "d3718985d1103490c140690ead37d65b0e427c63" + }, + "recipe": { + "sha256": "0jayhjvs5pkacw8r7z7fy0i732a1zpkcmirkzjpx3wqk0bs5fga6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140722.15", + "deps": [] + }, + "epc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-epc", + "sha256": "1ayhknqv1wmar2j2r4n7nqcp69i7k222qx524x4wv61ys324d004", + "rev": "dbae585622fa7b556945cc7475f354976d26b065" + }, + "recipe": { + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140610.34", + "deps": [ + "concurrent", + "ctable" + ] + }, + "suomalainen-kalenteri": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "suomalainen-kalenteri", + "sha256": "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann", + "rev": "b7991cb35624ebc04a89bbe759d40f186c9c097e" + }, + "recipe": { + "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151129.504", + "deps": [] + }, + "init-loader": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "init-loader", + "sha256": "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s", + "rev": "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c" + }, + "recipe": { + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150104.1605", + "deps": [] + }, + "session": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "session", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v", + "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" + }, + "recipe": { + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120510.1900", + "deps": [] + }, + "bundler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "bundler.el", + "sha256": "0cldbyc7qsyxszzfbdcw8n8a15hvj343acsjir29n6d9nnpmvjgp", + "rev": "9be0c4601a4d1a35de22f818637ce029830272d3" + }, + "recipe": { + "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150315.742", + "deps": [ + "cl-lib" + ] + }, + "jsfmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brettlangdon", + "repo": "jsfmt.el", + "sha256": "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc", + "rev": "68109120f553fbc651fafb6fc35ed83c3e79f8a6" + }, + "recipe": { + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150727.1725", + "deps": [] + }, + "rdp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "rdp", + "sha256": "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd", + "rev": "b620192afada04aec33b38cc130fef0765f41ca9" + }, + "recipe": { + "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120928.2054", + "deps": [] + }, + "go-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-mode.el", + "sha256": "0wsh3rgay1k6ncayhqnnsnl5v2xwl60k6qyanmps0jgyshdv67zj", + "rev": "dccb56c1b1b85c3d7b3184a6606024077d4e1775" + }, + "recipe": { + "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1424", + "deps": [] + }, + "xtest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "xtest", + "sha256": "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy", + "rev": "2c2bdf32667506dd9ddf6eb311832add616bdf1c" + }, + "recipe": { + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141214.1106", + "deps": [ + "cl-lib" + ] + }, + "noccur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "noccur.el", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7", + "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" + }, + "recipe": { + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150514.1620", + "deps": [] + }, + "speck": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/speck.el", + "sha256": "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10" + }, + "recipe": { + "sha256": "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140901.1335", + "deps": [] + }, + "lispyscript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "lispyscript-mode", + "sha256": "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf", + "rev": "d0e67ee734919d7ff14c72712e909149cb9604bd" + }, + "recipe": { + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130828.919", + "deps": [] + }, + "pacmacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "codingteam", + "repo": "pacmacs.el", + "sha256": "07w3w3ms18kas637z6n86nnd9xqi73c6cbrmni99jbwqq7jhgi29", + "rev": "98816141d5d47db8d5c9c04aaf1c9a30a045a88f" + }, + "recipe": { + "sha256": "13pgxwwigb0h709xrs2h1l957n4vcjz59qkrs8aa12czcg291599", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.803", + "deps": [ + "cl-lib", + "dash", + "dash-functional", + "emacs", + "f" + ] + }, + "latex-math-preview": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "latex-math-preview", + "repo": "latex-math-preview", + "sha256": "1rpf0vkrzchhws1gzz2cpfcvswwfn5557m225qlwf869kqz37m2d", + "rev": "6dd4d18b1b1ce8acc72ae5ef63e6498b859ac029" + }, + "recipe": { + "sha256": "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.20", + "deps": [] + }, + "bbdb": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.savannah.nongnu.org/bbdb.git", + "sha256": "e20dfe8085782948c1411685d45bad0cb7ff088bc2d1d2c1654c276356382b26", + "rev": "8fce6df3ab09250d545a2ed373ae64e68d12ff4c" + }, + "recipe": { + "sha256": "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151114.1741", + "deps": [] + }, + "ac-anaconda": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "ac-anaconda", + "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44", + "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" + }, + "recipe": { + "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131113.2018", + "deps": [] + }, + "cljsbuild-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kototama", + "repo": "cljsbuild-mode", + "sha256": "1cdim8fancrsrm9avzv4m2v384i7n4632nibyfnxkhq03bj00j1z", + "rev": "7edfc199b5daf972f6b2110d13a96e0bd974cd65" + }, + "recipe": { + "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140619.326", + "deps": [] + }, + "magit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" + }, + "recipe": { + "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.639", + "deps": [ + "async", + "dash", + "emacs", + "git-commit", + "magit-popup", + "with-editor" + ] + }, + "sly": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly", + "sha256": "11qdkhpz0h2idm0arrql5r7wh1nf40b34vnvwrwgdaqwq49xfrr4", + "rev": "762b53a1b1eecb0b7a9c8030d529e23e73b18791" + }, + "recipe": { + "sha256": "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.931", + "deps": [ + "emacs" + ] + }, + "delim-kill": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thomas11", + "repo": "delim-kill", + "sha256": "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf", + "rev": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1" + }, + "recipe": { + "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100517.120", + "deps": [] + }, + "magit-stgit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-stgit", + "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb", + "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" + }, + "recipe": { + "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151120.1744", + "deps": [ + "emacs", + "magit" + ] + }, + "shelltest-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rtrn", + "repo": "shelltest-mode", + "sha256": "1ns2w7zhbi96a3gilmzs69187jngqhcvik17ylsjdfrk42hw5s6r", + "rev": "e2513832ce6b994631335be299736cabe291d0f7" + }, + "recipe": { + "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141227.448", + "deps": [] + }, + "maker-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fommil", + "repo": "maker-mode", + "sha256": "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw", + "rev": "335c43b08eff589040129dae1ea13c88793b069e" + }, + "recipe": { + "sha256": "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150116.554", + "deps": [ + "dash", + "s" + ] + }, + "tagedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "tagedit", + "sha256": "00hjc6ax4659ww6vygpzzsb3zzr2ddz2z33mkp5j6hmj2s4g2viy", + "rev": "458ff5bb23aa4816a2d5ff5d66c4e95996b4a4e1" + }, + "recipe": { + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140911.1608", + "deps": [] + }, + "db": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nicferrier", + "repo": "emacs-db", + "sha256": "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k", + "rev": "b3a423fb8e72f9013009cbe033d654df2ce31438" + }, + "recipe": { + "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140421.1611", + "deps": [ + "kv" + ] + }, + "tinysegmenter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "tinysegmenter.el", + "sha256": "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j", + "rev": "872134704bd25c13a4c59552433da4c6881b5230" + }, + "recipe": { + "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141124.413", + "deps": [ + "cl-lib" + ] + }, + "org-ref": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jkitchin", + "repo": "org-ref", + "sha256": "0ggr0ln67gffyl3czcjw1hck7m7wibmbgb7q2kn8ps9cc90ngc1a", + "rev": "fa0e03e8c194c5d2e95fe51a59802a68b7039a86" + }, + "recipe": { + "sha256": "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151226.1700", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140319.1700", + "deps": [ + "flymake-easy" + ] + }, + "navi-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "navi", + "sha256": "1yywbfa0syhb8zmn2qjjw2hxy7vz9ky3xd7kv3nz3gd2x989nb9a", + "rev": "78c0c227d06254d1aec9d8a1301b9a5a785b8b31" + }, + "recipe": { + "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.957", + "deps": [ + "outorg", + "outshine" + ] + }, + "smarty-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "smarty-mode", + "sha256": "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx", + "rev": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568" + }, + "recipe": { + "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20100703.658", + "deps": [] + }, + "flymake-sass": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-sass", + "sha256": "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1", + "rev": "748f13caa399c27c41ba797da9e214b814f5a30f" + }, + "recipe": { + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140308.525", + "deps": [ + "flymake-easy" + ] + }, + "shimbun": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "w3m", + "sha256": "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs", + "rev": "5986b51c7c77500fee3349fb0b3f4764d3fc727b" + }, + "recipe": { + "sha256": "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120718.2238", + "deps": [] + }, + "sackspace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "sackspace.el", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl", + "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" + }, + "recipe": { + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130719.456", + "deps": [] + }, + "bind-chord": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "use-package-chords", + "sha256": "100py4x10nd8w0l87lc7wpa8nmg7yg6pwxln0wcyal7vpwycmhjz", + "rev": "e5f7a43fd0a63a4a0bf7dabc2c223f615ea71eca" + }, + "recipe": { + "sha256": "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.1007", + "deps": [ + "bind-key", + "key-chord" + ] + }, + "org2blog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "org2blog", + "sha256": "1cy4bglfxq87iwz4iflyc5mswa2381b5z3gv9ps3sww1kbkm3njx", + "rev": "c97bb3d0f3e3816581b04394c6d9c55a2c2cfc5c" + }, + "recipe": { + "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151023.500", + "deps": [] + }, + "mhc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yoshinari-nomura", + "repo": "mhc", + "sha256": "0z34x254z79acslxzn35mg9nsxh0cpmb540k90vlp7am7g4d4sra", + "rev": "0204160474bdb01e62c89364b5f720b2c42afb0d" + }, + "recipe": { + "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151210.238", + "deps": [ + "calfw" + ] + }, + "company-ghc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-ghc", + "sha256": "06ljm0ysz8czdr32gfq1y3nm3jcywihdszgnc2alx1hcgqiq0ds6", + "rev": "d78fcee6c8fa4f786a1e15a3bb78d2dd2c56b6af" + }, + "recipe": { + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151122.347", + "deps": [ + "emacs", + "flycheck" + ] + }, + "ruby-end": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-end", + "sha256": "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55", + "rev": "ea453f5ac6259f09667fa26b865b6afacd06aa97" + }, + "recipe": { + "sha256": "0cx121hji8ws6s3p2xfdgidm363y05g2n880fqrmzyz27cqkljis", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130819.427", + "deps": [] + }, + "addressbook-bookmark": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "addressbook-bookmark", + "sha256": "0bzg8qi188rybk0a4lsdal0788iia0ymr5gdbz41c42f59a6y49d", + "rev": "784df4fa06f90214ddba127391ef4fcb6b699468" + }, + "recipe": { + "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141205.2308", + "deps": [ + "emacs" + ] + }, + "magnatune": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eikek", + "repo": "magnatune.el", + "sha256": "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y", + "rev": "605b01505ba30589c77ebb4c96834b5072ccbdd4" + }, + "recipe": { + "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1435", + "deps": [ + "dash", + "s" + ] + }, + "f": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "f.el", + "sha256": "0lzqfr5xgc3qvpbs6vf63yiw7pc2mybfvsrhczf9ghlmlawqa6k1", + "rev": "e0259ee060ff9a3f12204adcc8630869080acd68" + }, + "recipe": { + "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151113.323", + "deps": [ + "dash", + "s" + ] + }, + "fortpy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rosenbrockc", + "repo": "fortpy-el", + "sha256": "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y", + "rev": "c614517e9396ef7a78be3b8786fbf303879cf43b" + }, + "recipe": { + "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20110206.1430", + "deps": [] + }, + "heroku": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "heroku.el", + "sha256": "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj", + "rev": "92af1c073b593c4def99c8777c869992aa4d0b3a" + }, + "recipe": { + "sha256": "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120629.1313", + "deps": [] + }, + "otter-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "scvalex", + "repo": "script-fu", + "sha256": "0a6i3jqdmpsfllwifqwpd1ncwp8m09m2yhx9b2fzsyycd8yslnns", + "rev": "da9438b58b6b95bb75fcd5f55a48b8a53eed368b" + }, + "recipe": { + "sha256": "197r0sfbmwygvzsiv0bjjfsngwp79qi365z762y8gbf8f3hjp45i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121202.1103", + "deps": [] + }, + "zombie": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "zombie", + "sha256": "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg", + "rev": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345" + }, + "recipe": { + "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141222.1016", + "deps": [] + }, + "irfc": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/irfc.el", + "sha256": "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca" + }, + "recipe": { + "sha256": "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.707", + "deps": [] + }, + "basic-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "basic-theme.el", + "sha256": "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78", + "rev": "e3c32e1285749b4135d4d593f06566c631c26456" + }, + "recipe": { + "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130607.514", + "deps": [ + "swbuff" + ] + }, + "ibuffer-tramp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "svend", + "repo": "ibuffer-tramp", + "sha256": "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq", + "rev": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4" + }, + "recipe": { + "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151118.1139", + "deps": [] + }, + "sound-wav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sound-wav", + "sha256": "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq", + "rev": "254d3a7180a65cb33a808c43b70d4e6daa121ac9" + }, + "recipe": { + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140303.657", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "psession": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "psession", + "sha256": "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b", + "rev": "e46ddd05c8d3a6e4cbcc11b62aa275e5de66f475" + }, + "recipe": { + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151114.1306", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "elfeed-web": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" + }, + "recipe": { + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151222.1322", + "deps": [ + "elfeed", + "emacs", + "simple-httpd" + ] + }, + "osx-lib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "raghavgautam", + "repo": "osx-lib", + "sha256": "1rha3qcv8k1y91w9p70fw0jfwyssiwxn85xz4jq1gd3nha126zw1", + "rev": "18ad53b6a3f9895f25dc2413bf448ded0fb6fdff" + }, + "recipe": { + "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151221.2148", + "deps": [ + "emacs" + ] + }, + "wgrep-pt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-wgrep", + "sha256": "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4", + "rev": "7ef26c51feaef8a5ec0929737130ab8ba326983c" + }, + "recipe": { + "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140510.1731", + "deps": [ + "wgrep" + ] + }, + "cljr-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "cljr-helm", + "sha256": "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln", + "rev": "99c6dcc5228ecd2fe9e6e28a9512cbc3df0770ef" + }, + "recipe": { + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130804.610", + "deps": [] + }, + "ansible": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ansible", + "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2", + "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" + }, + "recipe": { + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151123.1953", + "deps": [ + "f", + "s" + ] + }, + "japanlaw": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "japanlaw.el", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h", + "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" + }, + "recipe": { + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150621.2341", + "deps": [] + }, + "smart-cursor-color": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "7696122", + "repo": "smart-cursor-color", + "sha256": "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn", + "rev": "1d190f49ca77734b55ac58f1b6276e42ada967b0" + }, + "recipe": { + "sha256": "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141124.1119", + "deps": [] + }, + "link-hint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "link-hint.el", + "sha256": "0flskfrbq66wbygbp7x9da3fm88gf1nc92500jg6skks48w00xqn", + "rev": "cec4e90ffc9794fc9e25cbfcde9b5e1dd8328d09" + }, + "recipe": { + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151031.1845", + "deps": [ + "avy", + "emacs" + ] + }, + "ox-gfm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "ox-gfm", + "sha256": "0gfkb12rn40m71xv292dn3nj3h1bnn81698pinirp0nd8p4bvnin", + "rev": "dc324f0f4239e151744d59e784da748d4db4f6b8" + }, + "recipe": { + "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150604.226", + "deps": [] + }, + "ibuffer-git": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jrockway", + "repo": "ibuffer-git", + "sha256": "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd", + "rev": "d326319c05ddb8280885b31f9094040c1b365876" + }, + "recipe": { + "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.430", + "deps": [] + }, + "ewmctrl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flexibeast", + "repo": "ewmctrl", + "sha256": "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv", + "rev": "4e1ad0d54bccf2eddb7844eefb8253440aa80f28" + }, + "recipe": { + "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150630.338", + "deps": [] + }, + "git-commit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" + }, + "recipe": { + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.2200", + "deps": [ + "json-reformat", + "json-snatcher" + ] + }, + "tbx2org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "tbx2org", + "sha256": "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4", + "rev": "08e9816ba6066f56936050b58d07ceb2187ae6f7" + }, + "recipe": { + "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150421.703", + "deps": [ + "edbi" + ] + }, + "fountain-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rnkn", + "repo": "fountain-mode", + "sha256": "07rmg994vhxws6r0sj27kipf6qvmz2qn5zr7z1mwfj4gkjh0c1cr", + "rev": "934243afbfa042643a973af1b6f26d7353517526" + }, + "recipe": { + "sha256": "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150920.758", + "deps": [] + }, + "ace-jump-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "winterTTr", + "repo": "ace-jump-mode", + "sha256": "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6", + "rev": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac" + }, + "recipe": { + "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140616.315", + "deps": [] + }, + "tommyh-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wglass", + "repo": "tommyh-theme", + "sha256": "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay", + "rev": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5" + }, + "recipe": { + "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131004.1830", + "deps": [] + }, + "ob-translate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-translate", + "sha256": "1yaqs6zcx8228pwzsm19h6272bw9lhib6xz5xzzq8x8n54l81225", + "rev": "c068f8710ec3019a345b7dc5a5433bee23c87afb" + }, + "recipe": { + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141107.1006", + "deps": [ + "emacs" + ] + }, + "meacupla-theme": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "jtecca", + "repo": "meacupla-theme", + "sha256": "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv", + "rev": "f57542222a3a43af9aae665e05a84a61637ab22a" + }, + "recipe": { + "sha256": "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151027.1717", + "deps": [] + }, + "jumblr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkmcc", + "repo": "jumblr", + "sha256": "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j", + "rev": "705c7286e09a307b2b7f60072a12ed45325657c0" + }, + "recipe": { + "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140908.1552", + "deps": [ + "dash", + "s" + ] + }, + "ox-trac": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "JalapenoGremlin", + "repo": "ox-trac", + "sha256": "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db", + "rev": "2f2f70eefb9679025ae5812e221f0c118da36012" + }, + "recipe": { + "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151102.1155", + "deps": [ + "org" + ] + }, + "plim-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dongweiming", + "repo": "plim-mode", + "sha256": "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2", + "rev": "92e39190286f172567ceb02c80e1df3b81abfa2d" + }, + "recipe": { + "sha256": "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140812.1913", + "deps": [] + }, + "default-text-scale": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "default-text-scale", + "sha256": "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8", + "rev": "c680861a459e5a1b4cea0da1b99d2a22f08fdcd2" + }, + "recipe": { + "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150227.1156", + "deps": [] + }, + "shm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "structured-haskell-mode", + "sha256": "1cr83az4xm20i2v8bd5dbqll3d8vhjb3m2ypzwbxlizjcxpa638c", + "rev": "a305ca94059d31c60d549494756d5b4eabec20b0" + }, + "recipe": { + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.133", + "deps": [] + }, + "strings": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/strings.el", + "sha256": "0svvgrssd4r027d25g167lf9cpks3la5zhvyd50gjrhryyxkf225" + }, + "recipe": { + "sha256": "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150805.1752", + "deps": [] + }, + "ssh-tunnels": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "death", + "repo": "ssh-tunnels", + "sha256": "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh", + "rev": "b08ba7a560ba5b16aa95c3cc17ed6fea59529cc4" + }, + "recipe": { + "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151028.2236", + "deps": [] + }, + "handlebars-sgml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jacott", + "repo": "handlebars-sgml-mode", + "sha256": "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k", + "rev": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4" + }, + "recipe": { + "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151016.1045", + "deps": [] + }, + "emms": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.sv.gnu.org/emms.git", + "sha256": "6e653c3b44442e21ec6e4410d8b9c0e51b2f03ed1ae62c1bb1a2ffa6c8c144da", + "rev": "489df29303fc89d4f80bffae91ad53f937ccd59a" + }, + "recipe": { + "sha256": "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151211.1353", + "deps": [] + }, + "diffscuss-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hut8labs", + "repo": "diffscuss", + "sha256": "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr", + "rev": "e0aacd8b3d9f886f27222c1397f0655e849e0af7" + }, + "recipe": { + "sha256": "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141014.1857", + "deps": [] + }, + "flyspell-lazy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "flyspell-lazy", + "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm", + "rev": "31786fe04a4732d2f845e1c7e96fcb030182ef10" + }, + "recipe": { + "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141222.852", + "deps": [] + }, + "insert-shebang": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "psachin", + "repo": "insert-shebang", + "sha256": "1np3ih2bz9831p97rx5bssq78grjxj7f9241z372l6ggimrqhkbx", + "rev": "a6e520280b1cb64d70adba2ba38dd9b728960b36" + }, + "recipe": { + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141119.627", + "deps": [] + }, + "anything-exuberant-ctags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "anything-exuberant-ctags", + "sha256": "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy", + "rev": "8ed688fd526751e044435bb77135f5315c8167e5" + }, + "recipe": { + "sha256": "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140316.1837", + "deps": [ + "anything" + ] + }, + "py-autopep8": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-autopep8.el", + "sha256": "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd", + "rev": "685414b19106b99a4384fa0c9ce4817c659e0e81" + }, + "recipe": { + "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150420.621", + "deps": [] + }, + "syntax-subword": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jpkotta/syntax-subword", + "sha256": "1p9bp09nibw7rra3r6nj496zdx09db6k82dxnxs1lfgdiswfdq2h", + "rev": "a1e0accb754d" + }, + "recipe": { + "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150415.1426", + "deps": [] + }, + "nyan-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "TeMPOraL", + "repo": "nyan-mode", + "sha256": "1v8ndr8hdbqhd7nca8882g05y36pigv6lj7hpxl50lr1lvp1kmmf", + "rev": "eb940664cbca6165644d97989f402c8c5bd0e384" + }, + "recipe": { + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151018.35", + "deps": [] + }, + "repeatable-motion": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-repeatable-motion", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck", + "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" + }, + "recipe": { + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150629.1312", + "deps": [ + "emacs" + ] + }, + "libmpdee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "andyetitmoves", + "repo": "libmpdee", + "sha256": "0hazcizn8cjk9casax6xav19yi850ip7xwcasj597lmlmk0p01an", + "rev": "3f057bf21f5d2e4b70ee551a970aa49d67042db8" + }, + "recipe": { + "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150131.1557", + "deps": [] + }, + "abc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "abc-mode", + "sha256": "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs", + "rev": "1dd6e1217136a6f986917a3e5f41c1007bac908d" + }, + "recipe": { + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140225.1144", + "deps": [] + }, + "enotify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "enotify", + "sha256": "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd", + "rev": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80" + }, + "recipe": { + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130407.848", + "deps": [] + }, + "unidecode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sindikat", + "repo": "unidecode", + "sha256": "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw", + "rev": "9e279e88a689584027d5a1b088fe5def25d0f75c" + }, + "recipe": { + "sha256": "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150914.747", + "deps": [] + }, + "highlight2clipboard": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Lindydancer", + "repo": "highlight2clipboard", + "sha256": "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6", + "rev": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15" + }, + "recipe": { + "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151020.1340", + "deps": [ + "htmlize" + ] + }, + "orgtbl-ascii-plot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tbanel", + "repo": "orgtblasciiplot", + "sha256": "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z", + "rev": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e" + }, + "recipe": { + "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140422.1055", + "deps": [] + }, + "soothe-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jasonm23", + "repo": "emacs-soothe-theme", + "sha256": "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw", + "rev": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b" + }, + "recipe": { + "sha256": "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141027.941", + "deps": [ + "emacs" + ] + }, + "cider-spy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jonpither", + "repo": "cider-spy", + "sha256": "1hvvfp58x269yapnayxwyclgqy52azf76rb703mlfqivj1gzd7p3", + "rev": "6913a52c4ee781c5325074af05fcdfab864d6c41" + }, + "recipe": { + "sha256": "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151214.745", + "deps": [] + }, + "visual-ascii-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Dewdrops", + "repo": "visual-ascii-mode", + "sha256": "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n", + "rev": "99285a099a17472ddd9f1b4f74e9d092dd8c5947" + }, + "recipe": { + "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150129.446", + "deps": [] + }, + "helm-go-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-go-package", + "sha256": "1r01nl1k9jjb70214rkmbqaa4qrkyd3apiyq00w02wsymy12wwic", + "rev": "1909156510a4e73697a86b8c040d38e4d352851a" + }, + "recipe": { + "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151121.744", + "deps": [] + }, + "vagrant-tramp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dougm", + "repo": "vagrant-tramp", + "sha256": "075q3ib1skk0437hb4wmmhf6sz1g72bj12qcf5waj2xk09swqfgy", + "rev": "dc9202c1420d5d6eaf0efde4a9b548248ce42d33" + }, + "recipe": { + "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151018.1723", + "deps": [ + "dash" + ] + }, + "typing-game": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "el-typing-game", + "sha256": "0i5pipciwsl6cj3inxiz6ybkv5jglacjwhcyqdfzi4mrbic7g848", + "rev": "b58c19a4a14895cc24ce01a73cf624b5c54a12b8" + }, + "recipe": { + "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151111.940", + "deps": [] + }, + "symon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zk-phi", + "repo": "symon", + "sha256": "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq", + "rev": "48dfbd86981e709ebcf055832bb48a7f212ac842" + }, + "recipe": { + "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151118.300", + "deps": [] + }, + "edbi-django": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "edbi-django", + "sha256": "0jlr1da26jkrgadaznxjynjqbg4cpnq7gda3qab2qqrjzzi8cfia", + "rev": "9cdf6d7a45402d41551c1e17edd7a29a8520f102" + }, + "recipe": { + "sha256": "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140331.1829", + "deps": [] + }, + "amd-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "amd-mode.el", + "sha256": "12vjjdyxmm6ky8d7xbsg0pmfam12vzghzzr3j6klji01i8lxmh74", + "rev": "17eefc009e26769fa0e81936bcbea9d9ea42954f" + }, + "recipe": { + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.730", + "deps": [] + }, + "ace-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-window", + "sha256": "053074jyinr3a2zkr1jfgmizdbhk5s37vrvf490x2hwf19dzis4a", + "rev": "f6653fb5d8bfe8d7bcad94fc72ca9561e28180f0" + }, + "recipe": { + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150803.1037", + "deps": [ + "avy" + ] + }, + "origami": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "origami.el", + "sha256": "0p53l0s8rxr8v77kj83qjrbln7nck16q0zgdp4sqmqb1121ily48", + "rev": "56140b4d3f9f2694ab1e8869972a19bd7f3e12e1" + }, + "recipe": { + "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151206.2305", + "deps": [] + }, + "shell-current-directory": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "metaperl", + "repo": "shell-current-directory", + "sha256": "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic", + "rev": "bf843771bf9a4aa05e054ade799eb8862f3be89a" + }, + "recipe": { + "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141124.1332", + "deps": [ + "emacs" + ] + }, + "elhome": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "demyanrogozhin", + "repo": "elhome", + "sha256": "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h", + "rev": "af112592fbc41a625d1d17828db78357df23c127" + }, + "recipe": { + "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131202.1308", + "deps": [ + "initsplit" + ] + }, + "company-emoji": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "company-emoji", + "sha256": "1lm26av6z18p70gxz23h87l25airawljr5lm7hw6krg706cp3aq6", + "rev": "c3665bf150c43a1c9830e817cf6de950be8c0fde" + }, + "recipe": { + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150429.1314", + "deps": [ + "emacs" + ] + }, + "pylint": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/logilab/pylint", + "sha256": "0rgik6478hbvnjdvhyfvp0kz4g80jig1cbvxaqp3amc4nhxqbcpb", + "rev": "467e659fd2eb" + }, + "recipe": { + "sha256": "1y8xz04spn7a4fjnfv82hamk1mrc3a1iilf5nrl40nlg2xgp1h63", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150123.1800", + "deps": [] + }, + "org-password-manager": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leafac", + "repo": "org-password-manager", + "sha256": "0v2b7byr56v4pffva93d80cppp3xk8nj3987vpwmczqiq5by1pc8", + "rev": "b13f63aa4efca47e92cfe52865e99f230851fa03" + }, + "recipe": { + "sha256": "1l3h0qhv0ad9l933d47as8y3h9x94zw315ax4qsgiw3046nzkdwv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151108.400", + "deps": [] + }, + "e2wm-term": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-term", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw", + "rev": "65b5ac88043d5c4048920a048f3599904ca55981" + }, + "recipe": { + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.858", + "deps": [] + }, + "tracwiki-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "merickson", + "repo": "tracwiki-mode", + "sha256": "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f", + "rev": "6a620444d59b438f42383b48cd4c19c03105dba6" + }, + "recipe": { + "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150119.1021", + "deps": [ + "xml-rpc" + ] + }, + "x86-lookup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "x86-lookup", + "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq", + "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" + }, + "recipe": { + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151215.1125", + "deps": [ + "emacs" + ] + }, + "cursor-test": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ainame", + "repo": "cursor-test.el", + "sha256": "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l", + "rev": "e09956e048b88fd2ee8dd90b5678baed8b04d31b" + }, + "recipe": { + "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131207.1132", + "deps": [ + "emacs" + ] + }, + "sunshine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aaronbieber", + "repo": "sunshine.el", + "sha256": "1x3ivhwyapxw7v3ygam3bn2i9djrsp9mcd5zdn8q84c583ppanll", + "rev": "8783923f0aa4b835b90359443b941b10758c28d7" + }, + "recipe": { + "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151013.814", + "deps": [ + "cl-lib" + ] + }, + "smart-mark": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "smart-mark", + "sha256": "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg", + "rev": "04b522a23e3aae8381c6a976fc978532fcb2e7d0" + }, + "recipe": { + "sha256": "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150911.2110", + "deps": [] + }, + "region-bindings-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "region-bindings-mode", + "sha256": "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy", + "rev": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc" + }, + "recipe": { + "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140407.1714", + "deps": [] + }, + "rspec-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pezra", + "repo": "rspec-mode", + "sha256": "1rgy4jp1ydvwxb83qmbn1wwscgdqn9pfjw8788n4rg1l2ypb8w0s", + "rev": "fc3bb819136966b1d1bd31335724d702132fff0b" + }, + "recipe": { + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150226.811", + "deps": [] + }, + "idomenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "birkenfeld", + "repo": "idomenu", + "sha256": "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw", + "rev": "4b0152d606360c70204fb4c27f68de79ca885386" + }, + "recipe": { + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151023.2031", + "deps": [] + }, + "ein-mumamo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "ein-mumamo", + "sha256": "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570", + "rev": "028fefec499598add1a87b92ed991891f38f0c7b" + }, + "recipe": { + "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150301.1828", + "deps": [ + "ein" + ] + }, + "omni-quotes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-quotes.el", + "sha256": "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6", + "rev": "537f7191bede7156dae94622e92cec04c6cd4bdf" + }, + "recipe": { + "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140409.252", + "deps": [ + "auto-complete" + ] + }, + "ob-prolog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ljos", + "repo": "ob-prolog", + "sha256": "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n", + "rev": "548986d0e6f678789216a882f0a19daf1b89ab93" + }, + "recipe": { + "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150530.1137", + "deps": [] + }, + "goto-gem": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "goto-gem", + "sha256": "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99", + "rev": "e3206f11f48bb7e798514a4ca2c2f60649613e5e" + }, + "recipe": { + "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140729.1345", + "deps": [ + "s" + ] + }, + "minibuffer-cua": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-cua.el", + "sha256": "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz", + "rev": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7" + }, + "recipe": { + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130906.634", + "deps": [] + }, + "clang-format": { + "fetch": { + "tag": "fetchsvn", + "url": "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format", + "sha256": "1rzax55darnj4h8i3qyrm2rqdwcvqggsz7kv6gi2i174fbdkbzfr", + "rev": "256472" + }, + "recipe": { + "sha256": "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151116.638", + "deps": [ + "cl-lib" + ] + }, + "autotest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "elisp", + "sha256": "109il2s5ynfam510yli4xmi5zgw7xhr5gv096li24idqdp0gpf9n", + "rev": "ec4ef9dc2d018053bed7fb44837b4c66f1a14c36" + }, + "recipe": { + "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150130.425", + "deps": [] + }, + "yagist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "yagist.el", + "sha256": "0sqwz37y6mpc378pp8p6bq9fmhgwfr6rlbngiwgvsp30iq6vjsn4", + "rev": "ab19ce3607873a6c523f87fffd653a1e7fbb66c2" + }, + "recipe": { + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150425.751", + "deps": [ + "cl-lib" + ] + }, + "magma-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ThibautVerron", + "repo": "magma-mode", + "sha256": "0alcdr84g2gvvshpa3cws87n47n5shcryzbj947nsbicmp7f9k8j", + "rev": "b6ccdeb774348ef3e87cc877de9fc90405872760" + }, + "recipe": { + "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140916.954", + "deps": [] + }, + "company-irony": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "company-irony", + "sha256": "0y1a9wxk9w2jk4177hkqzgqzknswikxc1dc60hzj4samyp2jhvfl", + "rev": "09f16eade551201548455285a2d977a0889761da" + }, + "recipe": { + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140906.1225", + "deps": [] + }, + "easy-kill": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "easy-kill", + "sha256": "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7", + "rev": "e2b667f651a3531164d24ea4cbcd8c34fba0e17f" + }, + "recipe": { + "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140109.1010", + "deps": [] + }, + "soft-morning-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mswift42", + "repo": "soft-morning-theme", + "sha256": "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf", + "rev": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c" + }, + "recipe": { + "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150918.1541", + "deps": [] + }, + "escreen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "escreen", + "sha256": "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc", + "rev": "e3fd46225fec70943024d950c6b6c2eb88e00b96" + }, + "recipe": { + "sha256": "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091203.1213", + "deps": [] + }, + "nix-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NixOS", + "repo": "nix", + "sha256": "067dpzww3w3q065bqpzywgfxq09zn0fk56v917aanb6va2rddq0r", + "rev": "52120123a5505199c342afb42f1a48b9cb2628ed" + }, + "recipe": { + "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151026.515", + "deps": [] + }, + "angular-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "angular-snippets.el", + "sha256": "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn", + "rev": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b" + }, + "recipe": { + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130711.2011", + "deps": [ + "helm" + ] + }, + "emacsagist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacsagist", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2", + "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" + }, + "recipe": { + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140331.1330", + "deps": [ + "cl-lib" + ] + }, + "yafolding": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "yafolding.el", + "sha256": "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7", + "rev": "0dc48073f429112b51a888e8e9285739435d3c7f" + }, + "recipe": { + "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141202.2256", + "deps": [] + }, + "term-cmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-cmd", + "sha256": "11xk11i99d17x5bl7glrwj2dhvl3f54slipj034dbf07dd5b2jih", + "rev": "fc2ae638409af99c4788563ef54847636f2e23e0" + }, + "recipe": { + "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141114.1514", + "deps": [] + }, + "shell-split-string": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "shell-split-string-el", + "sha256": "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l", + "rev": "19f6f999c33cc66a4c91bacdcc3697c25d97bf5a" + }, + "recipe": { + "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.408", + "deps": [] + }, + "evil-visual-mark-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "evil-visual-mark-mode", + "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz", + "rev": "094ee37599492885ff3144918fcdd9b74dadaaa0" + }, + "recipe": { + "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150202.1200", + "deps": [ + "dash", + "evil" + ] + }, + "package+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "package", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97", + "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" + }, + "recipe": { + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150319.1655", + "deps": [] + }, + "helm-itunes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "daschwa", + "repo": "helm-itunes", + "sha256": "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w", + "rev": "966de755a5aadbe02311a6cef77bd4790e84c263" + }, + "recipe": { + "sha256": "15z5lgh5x1ykz5p31i994fig8v05s7ckkgw6p9jifn11sn1a39nb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151013.148", + "deps": [ + "helm" + ] + }, + "import-js": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "trotzig", + "repo": "import-js", + "sha256": "07q610m35v59nxzzzqmjlgmbwziq8nzriy18h3y6ajmk4pwiwkqp", + "rev": "905f81b31e049fc49337b76aca4dd92ed7033dcb" + }, + "recipe": { + "sha256": "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151225.609", + "deps": [ + "emacs" + ] + }, + "xterm-frobs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "xterm-frobs", + "sha256": "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3", + "rev": "58fb0de21e4d1963d1398a38e1b803446fb41320" + }, + "recipe": { + "sha256": "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20091211.1755", + "deps": [] + }, + "faces+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/faces+.el", + "sha256": "0mgj7mdadc62wpav7z138jsjvbvkxg05h5z9kmjw8jl5x4m334lq" + }, + "recipe": { + "sha256": "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141014.2129", + "deps": [ + "emacs" + ] + }, + "dired-subtree": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150402.942", + "deps": [] + }, + "isgd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "isgd.el", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach", + "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" + }, + "recipe": { + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150414.436", + "deps": [] + }, + "redis": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-pe", + "repo": "redis.el", + "sha256": "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57", + "rev": "2c33f3397bc14e7a8192867b55920492d4eead8c" + }, + "recipe": { + "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151018.120", + "deps": [ + "emacs" + ] + }, + "logview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "doublep", + "repo": "logview", + "sha256": "1wglgjf45rl4rl5zp1p1z318p2d1hy1w77m65wwg35v6pkl1mikr", + "rev": "03b2f0fc325a557ccee0dbcb9226a1d733f21c84" + }, + "recipe": { + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151030.1649", + "deps": [ + "emacs" + ] + }, + "facemenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/facemenu+.el", + "sha256": "0b8all1l4v98iz1y4zbc0l9zxrdbgkljzahs2yrbl9md2qj3j91d" + }, + "recipe": { + "sha256": "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150816.2153", + "deps": [] + }, + "sicp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "webframp", + "repo": "sicp-info", + "sha256": "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq", + "rev": "7d060136bf4582fa74e4aa7cb924d856eea270f4" + }, + "recipe": { + "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151130.957", + "deps": [] + }, + "dired-toggle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fasheng", + "repo": "dired-toggle", + "sha256": "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma", + "rev": "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5" + }, + "recipe": { + "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140907.1549", + "deps": [] + }, + "narrow-reindent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emallson", + "repo": "narrow-reindent.el", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh", + "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" + }, + "recipe": { + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150722.1406", + "deps": [ + "emacs" + ] + }, + "xah-elisp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-elisp-mode", + "sha256": "05a29y4mds2vhgkvlnyjby240pmnq4yq9cx92iqbvhdi984dcm28", + "rev": "c05ab4d78d1eb37ec7635e79f8c49a14c61b69b0" + }, + "recipe": { + "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151219.1522", + "deps": [] + }, + "epl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "epl", + "sha256": "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4", + "rev": "a5ad061d0a5eb42f66c384e55d102da7d52c96b0" + }, + "recipe": { + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150517.633", + "deps": [ + "cl-lib" + ] + }, + "control-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stephendavidmarsh", + "repo": "control-mode", + "sha256": "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh", + "rev": "52c43d198f423eb00e5de6e44f2f3dd70893a6bc" + }, + "recipe": { + "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140218.807", + "deps": [] + }, + "paradox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "paradox", + "sha256": "1kvyfsf4dy7gss5jg2hb5hn51llq0jza9nkdxgsf7mh07v6kj9ap", + "rev": "6fd7161475ab3580f2113e569ef4df7431d0b1b5" + }, + "recipe": { + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151109.406", + "deps": [] + }, + "req-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "req-package", + "sha256": "05a88r2jp169x99abz9wrr1i8ch0bg3dlmaalxwqfmlzci0lksx2", + "rev": "e52f0b0a8cfc28ae1d13c83fdcf3998a9973e7e5" + }, + "recipe": { + "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151220.254", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121025.601", + "deps": [] + }, + "cmake-project": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alamaison", + "repo": "emacs-cmake-project", + "sha256": "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6", + "rev": "5212063b6276f8b9af8b48b4052e5ec97721c08b" + }, + "recipe": { + "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141227.1244", + "deps": [] + }, + "org-time-budgets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "org-time-budgets", + "sha256": "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb", + "rev": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18" + }, + "recipe": { + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151021.533", + "deps": [] + }, + "rhtml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rhtml", + "sha256": "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x", + "rev": "a6d71b38a3db867ccf82999c99805db1a3a33c33" + }, + "recipe": { + "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130422.811", + "deps": [] + }, + "insfactor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "duelinmarkers", + "repo": "insfactor.el", + "sha256": "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy", + "rev": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829" + }, + "recipe": { + "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141116.1802", + "deps": [] + }, + "dirtree": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/dirtree.el", + "sha256": "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx" + }, + "recipe": { + "sha256": "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150205.1511", + "deps": [] + }, + "test-case-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "test-case-mode", + "sha256": "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr", + "rev": "6074df10ebc97ddfcc228c71c73db179e672dac3" + }, + "recipe": { + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130525.934", + "deps": [ + "fringe-helper" + ] + }, + "take-off": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tburette", + "repo": "take-off", + "sha256": "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf", + "rev": "aa9ea45566fc74febbb6ee9c409ecc4b59246215" + }, + "recipe": { + "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140531.417", + "deps": [ + "emacs", + "web-server" + ] + }, + "fiplr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "fiplr", + "sha256": "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk", + "rev": "bb6b90ba3c558988c195048c4c40140b2ee17530" + }, + "recipe": { + "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150508.1745", + "deps": [] + }, + "password-generator": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zargener", + "repo": "emacs-password-genarator", + "sha256": "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx", + "rev": "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282" + }, + "recipe": { + "sha256": "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151127.1135", + "deps": [ + "emacs" + ] + }, + "anything-prosjekt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "prosjekt", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3", + "rev": "a864a8be5842223043702395f311e3350c28e9db" + }, + "recipe": { + "sha256": "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140129.204", + "deps": [ + "anything", + "prosjekt" + ] + }, + "company-sourcekit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1xzwalchl9lnq9848dlvhhbzyh1wkwbciz20d1iw0fsigj5g156c", + "rev": "5e1adf8d201fd94a942b40983415db1b28b6eef1" + }, + "recipe": { + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20120622.937", + "deps": [] + }, + "modtime-skip-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jordonbiondo", + "repo": "modtime-skip-mode", + "sha256": "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l", + "rev": "c0e49523aa26b2263a8693691ac775988015f592" + }, + "recipe": { + "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150515.947", + "deps": [] + }, + "powershell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "powershell.el", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn", + "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" + }, + "recipe": { + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150428.1621", + "deps": [] + }, + "underwater-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "underwater-theme.el", + "sha256": "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva", + "rev": "4eb9ef014f580adc135d91d1cd68d37a310640b6" + }, + "recipe": { + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20121128.243", + "deps": [] + }, + "magit-popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "1wgy1rkaanqf382m7ijy90gpaiz2049mrmwlvwkr3hw3vgkffar8", + "rev": "c650d164a94adcd123ed28da7d413aee76cc9fe7" + }, + "recipe": { + "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.1541", + "deps": [ + "async", + "dash", + "emacs" + ] + }, + "rotate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "daic-h", + "repo": "emacs-rotate", + "sha256": "0spgpq2cmckpl7j2193axy5yqws5dwrhik69d0bv0ylwzxp3npvg", + "rev": "04b64c6e20c465102ecafe0e099986b0808582bf" + }, + "recipe": { + "sha256": "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140123.316", + "deps": [] + }, + "bbdb-vcard": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tohojo", + "repo": "bbdb-vcard", + "sha256": "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj", + "rev": "c3aafd4160854a38fd92afcdade32b9a13abe82c" + }, + "recipe": { + "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150713.1550", + "deps": [ + "bbdb" + ] + }, + "package-build": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "melpa", + "sha256": "1linipac2qg8905qmgyr8lgjgv30mlwyib52r0k3kjpha6wcmniq", + "rev": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "recipe": { + "sha256": "1m245q81c2jifgqxwd2fi35jrcbf6v9a1a5zy815861avq3fg9g0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1137", + "deps": [ + "cl-lib" + ] + }, + "lusty-explorer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sjbach", + "repo": "lusty-emacs", + "sha256": "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa", + "rev": "a6e78cafc193050a493d16d07eae107a2436c293" + }, + "recipe": { + "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150508.1757", + "deps": [] + }, + "helm-hayoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-hayoo", + "sha256": "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9", + "rev": "dd4c0c8c87521026edf1b808c4de01fa19b7c693" + }, + "recipe": { + "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150827.2151", + "deps": [ + "evil" + ] + }, + "igrep": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/igrep.el", + "sha256": "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29" + }, + "recipe": { + "sha256": "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.707", + "deps": [] + }, + "bdo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "bdo", + "sha256": "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm", + "rev": "c96cb6aa9e97fa3491185c50dee0f77a13241010" + }, + "recipe": { + "sha256": "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140126.301", + "deps": [] + }, + "gnome-calendar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "gnome-calendar.el", + "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc", + "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" + }, + "recipe": { + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140112.559", + "deps": [] + }, + "linum-off": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "linum-off", + "sha256": "0x0k4m7nan2klvrhyzqvgpqnw99fq805hvipnrp2j755x7sv92g5", + "rev": "e16826e9a4cfe104d55884dc3cc4b4b1ced364ca" + }, + "recipe": { + "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130419.2254", + "deps": [] + }, + "multi-project": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ellisvelo/multi-project", + "sha256": "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c", + "rev": "f7fd0ae6819e" + }, + "recipe": { + "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150314.944", + "deps": [] + }, + "diredful": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thamer", + "repo": "diredful", + "sha256": "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p", + "rev": "e814fa3ffc7ec7b2455112c3d98e905674a6006b" + }, + "recipe": { + "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151118.1500", + "deps": [] + }, + "evil-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "edwtjo", + "repo": "evil-org-mode", + "sha256": "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53", + "rev": "61319f85979e8768c930983595caa2483c0fb319" + }, + "recipe": { + "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151203.147", + "deps": [ + "evil", + "evil-leader", + "org" + ] + }, + "modalka": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "modalka", + "sha256": "04c7js9jfhzcak9rgzqh1lq56i2b1g4phwjncsxkirvx97rnz4ac", + "rev": "67e08b9d315cfa6a2ca3b3dc3954214c68a90cf5" + }, + "recipe": { + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150924.1111", + "deps": [ + "emacs" + ] + }, + "ac-sly": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "qoocku", + "repo": "ac-sly", + "sha256": "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a", + "rev": "b37a1ecfaab10a6d81c6d894417176d3bb4c5285" + }, + "recipe": { + "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130122.1522", + "deps": [] + }, + "highlight-thing": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgeller", + "repo": "highlight-thing.el", + "sha256": "01cx05dkrshcpddciiqvbfcc0zg0awbvg3r2n1v44kiixyfdpdwr", + "rev": "eaf817d61d13fc97142996211222f8d54b48d3aa" + }, + "recipe": { + "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151001.221", + "deps": [] + }, + "helm-bibtex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tmalsburg", + "repo": "helm-bibtex", + "sha256": "1z38lssfjxan65p6y4lw1yyrnv41da2rmhmr43rnqv9rl1k68x8d", + "rev": "0475ffd145e2de5ee78691a364d2a0361c6483e2" + }, + "recipe": { + "sha256": "1rsplnh18w1fqr6da79vj8x9q2lyss9sssy8pfz3hfw7p6qi6zkg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151223.52", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141219.1046", + "deps": [] + }, + "imenu+": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/imenu+.el", + "sha256": "16f2a6jgwgczsaps55pnnyi38mw5z3fn4abybyr7hn0kf5xqip6q" + }, + "recipe": { + "sha256": "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150405.214", + "deps": [ + "phi-search" + ] + }, + "rcirc-color": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kensanata", + "repo": "rcirc-color", + "sha256": "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497", + "rev": "a94c7811e6ab578a138eb582f7ce31d3568b5c4d" + }, + "recipe": { + "sha256": "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151130.958", + "deps": [] + }, + "bury-successful-compilation": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "bury-successful-compilation", + "sha256": "1bzilpjibyyj97z5j7zz89jx0kfqr842lrjlnq1qki8r5kj18p4j", + "rev": "0c05c006ab5d0a7262701d003aed5cf5fc9dd621" + }, + "recipe": { + "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150328.1928", + "deps": [] + }, + "html-to-markdown": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "html-to-markdown", + "sha256": "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi", + "rev": "60c5498c801be186478cf7c05be05b4430c4a144" + }, + "recipe": { + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151105.240", + "deps": [ + "cl-lib" + ] + }, + "emacsshot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "emacsshot", + "sha256": "0jn4xj206idh5kgbklgcrngx6wvz9gwfm61wygar6pbfzqyx1y9b", + "rev": "8615aa841a37c20f8cc0f0efdc89c8d79acbb84b" + }, + "recipe": { + "sha256": "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150516.1633", + "deps": [] + }, + "folding": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jaalto", + "repo": "project-emacs--folding-mode", + "sha256": "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny", + "rev": "f738e28cd90d794aff698bcd44bf4f5027c92839" + }, + "recipe": { + "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140401.203", + "deps": [] + }, + "srefactor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-refactor", + "sha256": "1n5p51iy79z60fnhxklc03pp0jbs5rgyb02z3wndbyzy73bhfh7b", + "rev": "e0482b08425894431fa67109615d4f0c971471c8" + }, + "recipe": { + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151202.2204", + "deps": [ + "emacs" + ] + }, + "dired-avfs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "dired-hacks", + "sha256": "15jri9cj5jgr3ff423izd8idd7djay238c9pa3ccy05djl9z2hdx", + "rev": "6647825dbca4269afa76302e345d6bd15b222e42" + }, + "recipe": { + "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20141204.1156", + "deps": [] + }, + "kanban": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/ArneBab/kanban.el", + "sha256": "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w", + "rev": "54d855426372" + }, + "recipe": { + "sha256": "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150930.1117", + "deps": [] + }, + "wacspace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "wacspace.el", + "sha256": "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4", + "rev": "4a11168d58c9c129cfcd04a1c9581962565eca4a" + }, + "recipe": { + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151101.56", + "deps": [ + "helm" + ] + }, + "hl-todo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "hl-todo", + "sha256": "0lwcvwnkbfpjw92k4qfj57nlhv8xbl614p5dfi8qy76y8bs71cvd", + "rev": "4a5958b90d35c0ba368778274c2a3ab9df941d1c" + }, + "recipe": { + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025.1420", + "deps": [] + }, + "cython-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cython", + "repo": "cython", + "sha256": "1s26yr506b4v9bfrmqp2wyjdhxkc63nhis5azi9yhd0hg56nlyaq", + "rev": "20f028eb00b6b52083975aaa6738852b8840b497" + }, + "recipe": { + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140705.1429", + "deps": [] + }, + "google": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "google-el", + "sha256": "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i", + "rev": "1ec11138bdd237e668ced1470c54f740e6c629a4" + }, + "recipe": { + "sha256": "15z8l3adw8il0simk8phjgksh0v88cffb6gg3hv8a7nf5bla43my", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140330.1056", + "deps": [] + }, + "midje-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dnaumov", + "repo": "midje-mode", + "sha256": "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg", + "rev": "07fc6cee4f5d6aa4187636266b9681a3e455ab6b" + }, + "recipe": { + "sha256": "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140723.37", + "deps": [] + }, + "cider": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider", + "sha256": "16f17jl94g5zvjayigkbr70mslg1mrk666aqjwiwqc8mg71h05h7", + "rev": "d191f8b364558cafec147d96d3e0415e18ad28bd" + }, + "recipe": { + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.936", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130130.1551", + "deps": [] + }, + "levenshtein": { + "fetch": { + "tag": "fetchurl", + "url": "http://www.emacswiki.org/emacs/download/levenshtein.el", + "sha256": "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6" + }, + "recipe": { + "sha256": "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20051013.1256", + "deps": [] + }, + "ox-pukiwiki": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yashi", + "repo": "org-pukiwiki", + "sha256": "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g", + "rev": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a" + }, + "recipe": { + "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150124.1116", + "deps": [ + "org" + ] + }, + "ac-slime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-slime", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88", + "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" + }, + "recipe": { + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.700", + "deps": [] + }, + "myterminal-controls": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myTerminal", + "repo": "myterminal-controls", + "sha256": "0mnkhp286nrifxbrzp7lbmr4bccm7byh1f2zid4l1hac4x5wcx86", + "rev": "6b40d5f606dd402b80b7c93775bece1063cbf826" + }, + "recipe": { + "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150427.547", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "xah-find": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xahlee", + "repo": "xah-find", + "sha256": "05dvmvh81n30l56gvlgzj0bwqd2fv1d6xvhvj5ywax6kqr9piwqv", + "rev": "e25eb9343fca71523ea6bf76741e6c5aab8004a4" + }, + "recipe": { + "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151214.1257", + "deps": [] + }, + "wandbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kosh04", + "repo": "emacs-wandbox", + "sha256": "00qzgabanmy4nkpnbc1m45j86k29plyyn408n1l0j8505fy9l7ca", + "rev": "cea03dec67e90a4c87eb9b6d69d1b3c68af541d0" + }, + "recipe": { + "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150905.1024", + "deps": [ + "emacs", + "json", + "tabulated-list" + ] + }, + "verify-url": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lujun9972", + "repo": "verify-url", + "sha256": "199pab06cwym59110z3kcgikmp8m3y81bd3slr0n3ky40mh5rbh3", + "rev": "67a8c27ab331859ca5c1b4d757440a8d7a070696" + }, + "recipe": { + "sha256": "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151227.652", + "deps": [ + "cl-lib", + "url" + ] + }, + "paredit-menu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "phil-emacs-packages", + "sha256": "0ygckaj87swrnmsv5dhs55dngw1f22xm6238s9xb2axi3rr4w965", + "rev": "6e0142bae9cc3bfbea2fa134b6385af1c99ee782" + }, + "recipe": { + "sha256": "17l05m1lg0vmahh53b2lvw316y4z7jz3nmy0zyiyiygax313y42l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130923.1454", + "deps": [] + }, + "el-init-viewer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init-viewer", + "sha256": "13cc7nnslij28fa1469s9pfmnz8j0m6bayhrqxckd0xplvwwipnx", + "rev": "6e1aaab3e49d87253763e5b437d4f43f445b7774" + }, + "recipe": { + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150906.1154", + "deps": [ + "emacs", + "gh" + ] + }, + "clojure-mode-extra-font-locking": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "130s55mwzmi1almjajfl5bv3jra9ccafsiv240ls4agqkq2702vv", + "rev": "22b6709a651cc9c38a0c2a4c42df500ec3e46f1b" + }, + "recipe": { + "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150110.705", + "deps": [ + "clojure-mode" + ] + }, + "ggo-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "ggo-mode", + "sha256": "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp", + "rev": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b" + }, + "recipe": { + "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130524.643", + "deps": [] + }, + "auctex-latexmk": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tom-tan", + "repo": "auctex-latexmk", + "sha256": "1h0044zfzklc9sy0a02vcdr75ly6wlhjx3n5bvq7yiicqd012316", + "rev": "b7d36658c8a9102055a720e9102e1d3514089659" + }, + "recipe": { + "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151217.757", + "deps": [ + "auctex" + ] + }, + "clojure-cheatsheet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-cheatsheet", + "sha256": "1ljb0g4yvrqgjqgmz8qz0c0swbx1m6gldmcdqnmxd72bs3w9p0k8", + "rev": "7f1ee3facf131609ac1b987439b9b14daa4d7402" + }, + "recipe": { + "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151112.717", + "deps": [ + "cider", + "helm" + ] + }, + "ioccur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "ioccur", + "sha256": "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra", + "rev": "4c0ef992a6fcd2aed62e3866d56650463108ab5a" + }, + "recipe": { + "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130822.48", + "deps": [] + }, + "shell-here": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "shell-here", + "sha256": "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl", + "rev": "251309141e18978d2b8014345acc6f5afcd4d509" + }, + "recipe": { + "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150728.1204", + "deps": [] + }, + "org-gnome": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "org-gnome.el", + "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1", + "rev": "1012d47886cfd30eed25b73d9f18e475e0155f88" + }, + "recipe": { + "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140928.713", + "deps": [] + }, + "osx-dictionary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "osx-dictionary.el", + "sha256": "0frv92i7rj9fbjzgwf80zngq77394wjgijggda6d8ai75n5f47g1", + "rev": "ffbc358a4c686ea77e8bb88319ad192b4ff1aa55" + }, + "recipe": { + "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150406.2202", + "deps": [] + }, + "zzz-to-char": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "zzz-to-char", + "sha256": "1ai0a9r1xdz1jcr071ivm49wl906a0jqnhfaznw37jw9j2db58zn", + "rev": "5d3465122342265b6ff8495c60d9a7cb457be42a" + }, + "recipe": { + "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20131112.214", + "deps": [] + }, + "pass": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "pass", + "sha256": "14zpkxnwvwdi7wnjw4827lzzn6kw8wmwr2whavpi4rlkq8ix6dv2", + "rev": "f43f6ada151a81f0bca4397b78382e4f6160d0ad" + }, + "recipe": { + "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130413.419", + "deps": [] + }, + "monochrome-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fxn", + "repo": "monochrome-theme.el", + "sha256": "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf", + "rev": "58fb4cf28c407f059b78bfd72c4dbced07638dd6" + }, + "recipe": { + "sha256": "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140810.717", + "deps": [ + "dash" + ] + }, + "request": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-request", + "sha256": "0dja4g43zfjbxqvz2cgivgq5sfm6fz1563qgrp4yxknl7bdggb92", + "rev": "adf7de452f9914406bfb693541f1d280093c4efd" + }, + "recipe": { + "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140316.617", + "deps": [] + }, + "markdown-mode": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/markdown-mode.git", + "sha256": "715de106b5be4b78b091ab76d70961e9232ee35f88673f55f5bfd01da6102e17", + "rev": "5a83366cc8e33f4a50f6283fb2cd0c3519d8577a" + }, + "recipe": { + "sha256": "02lmhihv495drv9cb40h6l0xsbx7yglbvsdzc4r0vf78j87rs33f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151224.1008", + "deps": [] + }, + "sphinx-doc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "naiquevin", + "repo": "sphinx-doc.el", + "sha256": "0smxpv1i9nsaam4qc683491c4jwv3vqb7wpiyvjy2p9giqr3csjh", + "rev": "c6f3053b83eab029c13e680b8200c704880727b1" + }, + "recipe": { + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150410.2025", + "deps": [] + }, + "sourcemap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sourcemap", + "sha256": "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5", + "rev": "d50fd8d169f2d347b24276a0d28bb197400fc657" + }, + "recipe": { + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130824.658", + "deps": [] + }, + "gore-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sergey-pashaev", + "repo": "gore-mode", + "sha256": "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz", + "rev": "94d7f3e99104e06167967c98fdc201049c433c2d" + }, + "recipe": { + "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140405.1827", + "deps": [ + "org" + ] + }, + "cryptol-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thoughtpolice", + "repo": "cryptol-mode", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w", + "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" + }, + "recipe": { + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140426.1204", + "deps": [] + }, + "company-ycmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "1lydq43xn51m4dwvv3qzrcsqw7dwbhxz4rinqx4m9y81caqakssx", + "rev": "3005b49176ff3315ba4cc7893fff42ce034d6e80" + }, + "recipe": { + "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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 0000000000000000000000000000000000000000..16f147695914ee8de71fd0cbf7b81bf39a686eca --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -0,0 +1,75 @@ +/* + +# 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-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; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/${recipe.recipe.commit}/recipes/${name}"; + inherit (recipe.recipe) sha256; + }; + in melpaBuild { + pname = name; + inherit (recipe) version; + inherit recipeFile 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 0000000000000000000000000000000000000000..ca70c6e6b37a7ed901b338256a82410d3cccdbb4 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.json @@ -0,0 +1,20813 @@ +{ + "qiita": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "qiita-el", + "sha256": "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f", + "rev": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff" + }, + "recipe": { + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [] + }, + "outorg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outorg", + "sha256": "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp", + "rev": "e946cda497bae53fca6fa1579910237e216170bf" + }, + "recipe": { + "sha256": "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "helm-ls-hg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-hg", + "sha256": "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda", + "rev": "fa709b6354d84e1c88ccef096d29410fa16f7f5f" + }, + "recipe": { + "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.16", + "deps": [] + }, + "focus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "larstvei", + "repo": "Focus", + "sha256": "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc", + "rev": "0a6e9624ea5607dadd0f2cd4d3eaa2b10b788eb9" + }, + "recipe": { + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.2", + "deps": [] + }, + "youdao-dictionary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "youdao-dictionary.el", + "sha256": "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr", + "rev": "5b4f716ca41fa0cdb18a4949ac5cdcd470182c57" + }, + "recipe": { + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.0", + "deps": [ + "cl-lib", + "emacs", + "finalize" + ] + }, + "cmake-ide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atilaneves", + "repo": "cmake-ide", + "sha256": "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q", + "rev": "b6953102d022adb60678eb5c4186008de987cdce" + }, + "recipe": { + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "emacs" + ] + }, + "jammer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "jammer", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh", + "rev": "1ba232b71507b468c60dc53c2bc8888bef36c858" + }, + "recipe": { + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "go-eldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-eldoc", + "sha256": "0ha07nhd2g43l84r1r5dz6c8m3fmmn4bx5mhvi6as33achhip7bn", + "rev": "af6bfdcbcf12c240da46412efb381a5ee6c3aec5" + }, + "recipe": { + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.26", + "deps": [ + "cl-lib", + "go-mode" + ] + }, + "cerbere": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "cerbere", + "sha256": "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl", + "rev": "11de1e7ec5126083ae697f5a9993facdb9895f9d" + }, + "recipe": { + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "mmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "mmt", + "sha256": "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc", + "rev": "e77b809e39b9ab437b662ee759e990163bc89377" + }, + "recipe": { + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "slime-company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "anwyn", + "repo": "slime-company", + "sha256": "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4", + "rev": "b4a770b1c1e9638f13e339e7debbdb3b25217e39" + }, + "recipe": { + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [ + "flymake-easy" + ] + }, + "jade-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "org-page": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kelvinh", + "repo": "org-page", + "sha256": "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3", + "rev": "09febf89d8dcb226aeedf8164169b31937b64439" + }, + "recipe": { + "sha256": "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "s" + ] + }, + "shell-pop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kyagi", + "repo": "shell-pop-el", + "sha256": "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5", + "rev": "4531d234ca471ed80458252cba0ed005a0720b27" + }, + "recipe": { + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.63", + "deps": [ + "emacs" + ] + }, + "j-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zellio", + "repo": "j-mode", + "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9", + "rev": "caa55dfaae01d1875380929826952c2b3ef8a653" + }, + "recipe": { + "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.1", + "deps": [] + }, + "persistent-scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "persistent-scratch", + "sha256": "0vzifam1a3gy27phvhgi081v99pim669xymfwd9f96pnh0pwsqbh", + "rev": "52be8e41fe1e23a1f2b912fc119af06cc051bd28" + }, + "recipe": { + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.2", + "deps": [ + "emacs" + ] + }, + "map-regexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "map-regexp", + "sha256": "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c", + "rev": "b8e06284ec1c593d7d2bda5f35597a63de46333f" + }, + "recipe": { + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "cl-lib" + ] + }, + "sauron": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "djcb", + "repo": "sauron", + "sha256": "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml", + "rev": "a9877f0efa9418c41d25002b58d1c2f8c69ec975" + }, + "recipe": { + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10", + "deps": [] + }, + "company-ansible": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krzysztof-magosa", + "repo": "company-ansible", + "sha256": "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym", + "rev": "b9b4b22bc8c109de3ae3a5bb4c6b2be89bd644db" + }, + "recipe": { + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [ + "dash-functional", + "deferred", + "emacs", + "s" + ] + }, + "charmap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lateau", + "repo": "charmap", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6", + "rev": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2" + }, + "recipe": { + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [] + }, + "parsebib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "parsebib", + "sha256": "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml", + "rev": "9a1f60bed2814dfb5cec2b92efb5951a4b465cce" + }, + "recipe": { + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.5", + "deps": [ + "emacs" + ] + }, + "hindent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "hindent", + "sha256": "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb", + "rev": "726c692d234581c853495165472c78f4c7fb9297" + }, + "recipe": { + "sha256": "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "simplenote2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "simplenote2.el", + "sha256": "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93", + "rev": "9984ad77e63ae8d40e863cf1b0d8339ede986792" + }, + "recipe": { + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2.2", + "deps": [ + "request-deferred" + ] + }, + "cake": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake", + "sha256": "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg", + "rev": "a7c9f3bee71eb3865060123d4d98e5397c2f967e" + }, + "recipe": { + "sha256": "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.24", + "deps": [] + }, + "quickrun": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-quickrun", + "sha256": "09sdv5lf5k347415r9fzljm374rb29gq6kldx2awd164fkdnm8ds", + "rev": "31c61de338c7b689bbb78e0aa691bd68f7c20941" + }, + "recipe": { + "sha256": "1szgirakfnkn9ksls16p233sr7x9ck5m1f1kbk6ancj36yja2nki", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2.6", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "rsense": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "rsense", + "sha256": "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh", + "rev": "e4297052ef32d06237e8bd1534a0caf70a34ad28" + }, + "recipe": { + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "ocodo-svg-modelines": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ocodo", + "repo": "ocodo-svg-modelines", + "sha256": "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w", + "rev": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018" + }, + "recipe": { + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.4", + "deps": [] + }, + "pkgbuild-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "pkgbuild-mode", + "sha256": "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr", + "rev": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965" + }, + "recipe": { + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.14", + "deps": [] + }, + "erc-youtube": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kidd", + "repo": "erc-youtube.el", + "sha256": "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd", + "rev": "3629583031f3a59797a01e29abe9cc061e337294" + }, + "recipe": { + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0alpha", + "deps": [ + "erc" + ] + }, + "roguel-ike": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stevenremot", + "repo": "roguel-ike", + "sha256": "108j3106n9anas07mj26xlrvscsl5irshd39czkippla84gwmgyc", + "rev": "6d9322ad9d43d0c7465f125c8e08b222866e6923" + }, + "recipe": { + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "popup" + ] + }, + "name-this-color": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knl", + "repo": "name-this-color.el", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n", + "rev": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa" + }, + "recipe": { + "sha256": "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.5", + "deps": [ + "emacs", + "s" + ] + }, + "discover-my-major": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "steckerhalter", + "repo": "discover-my-major", + "sha256": "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4", + "rev": "57d76fd21ec54706289cf9396fc871250569951e" + }, + "recipe": { + "sha256": "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "makey" + ] + }, + "helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "0awr4nvzgp1kckxqli1xw4pk16gc22i8hchin63fqvk0gllcy454", + "rev": "fe96a398aa09ed0d25f6782efa5833085aa63791" + }, + "recipe": { + "sha256": "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.9.1", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "omni-scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-scratch.el", + "sha256": "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx", + "rev": "517b340427d5906002234832a01d0bc1ad27bac5" + }, + "recipe": { + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "flycheck-hdevtools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-hdevtools", + "sha256": "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3", + "rev": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61" + }, + "recipe": { + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "flycheck" + ] + }, + "sly-company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "sly-company", + "sha256": "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr", + "rev": "930e14fee9cdc837ae26299c7f5e379c53cee1af" + }, + "recipe": { + "sha256": "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "company", + "emacs", + "sly" + ] + }, + "ht": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Wilfred", + "repo": "ht.el", + "sha256": "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg", + "rev": "285c8752b7d3ab4b3d0c53bab6ba05d328577960" + }, + "recipe": { + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "elisp-slime-nav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elisp-slime-nav", + "sha256": "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1", + "rev": "551a6045969756d4aaee9e82b44cfbcdd0670cea" + }, + "recipe": { + "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "cl-lib" + ] + }, + "vlf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "vlfi", + "sha256": "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng", + "rev": "4eaf763cadac62d7a74f7b2d2436d7793c8f7b43" + }, + "recipe": { + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.7", + "deps": [] + }, + "recover-buffers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tripleee", + "repo": "recover-buffers", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q", + "rev": "a1db7f084977697081da3497628e3514e032b966" + }, + "recipe": { + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "evil-args": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wcsmith", + "repo": "evil-args", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq", + "rev": "2a88b4d19953a11227cc1e91973b92149116f44c" + }, + "recipe": { + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "evil" + ] + }, + "real-auto-save": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chillaranand", + "repo": "real-auto-save", + "sha256": "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm", + "rev": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e" + }, + "recipe": { + "sha256": "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "ebib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "ebib", + "sha256": "159w19hx3gmhv8n2amkm6i999vdrz5132bjwk28qpiq37v1v7dd5", + "rev": "e9f92df575d747992e9ada768b18dee475cfee55" + }, + "recipe": { + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.0", + "deps": [] + }, + "tss": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-tss", + "sha256": "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb", + "rev": "1f302deea3d74462c71a9c62031f48b753e8915f" + }, + "recipe": { + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.0", + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ] + }, + "espuds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "espuds", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg", + "rev": "1405972873339e056517217136de4ad3202d744a" + }, + "recipe": { + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "osx-location": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "osx-location", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x", + "rev": "110aee945b53ea550e4debe69bf3c077d940ec8c" + }, + "recipe": { + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "unify-opening": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "unify-opening", + "sha256": "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p", + "rev": "2812e43029cab7183197ce5e3c9577856bfd22c5" + }, + "recipe": { + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [ + "emacs" + ] + }, + "ghc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kazu-yamamoto", + "repo": "ghc-mod", + "sha256": "1wiwkp4qcgdwnr4h1bn27hh1kyl2wjlrz2bbfv638y9gzc06rgch", + "rev": "edfce196107dbd43958d72c174ad66e4a7d30643" + }, + "recipe": { + "sha256": "0xqriwggd1ahla5aff7k0j4admx6q18rmqsx3ipn4nfk86wrhb8g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6.0", + "deps": [ + "emacs" + ] + }, + "el-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "el-x", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5", + "rev": "e96541c1f32e0a3aca4ad0a0eb382bd898250163" + }, + "recipe": { + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [] + }, + "migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "migemo", + "sha256": "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl", + "rev": "97e07796573c4c47f286bfe8eeb6428cb474526e" + }, + "recipe": { + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.9.1", + "deps": [] + }, + "easy-repeat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "easy-repeat.el", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq", + "rev": "060f0e6801c82c40c06961dc0528a00e18947a8c" + }, + "recipe": { + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "weblogger": { + "fetch": { + "tag": "fetchbzr", + "url": "lp:weblogger-el", + "sha256": "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv", + "rev": "38" + }, + "recipe": { + "sha256": "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.5", + "deps": [ + "xml-rpc" + ] + }, + "pophint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-pophint", + "sha256": "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19", + "rev": "28dc6a76e726f371bcca3160c27ae2017324399c" + }, + "recipe": { + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.3", + "deps": [ + "log4e", + "popup", + "yaxception" + ] + }, + "find-file-in-project": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "find-file-in-project", + "sha256": "0bf32nhpmjvvgnr6g9xqh8pqnhr3dl24y3g40lsv4pc8ffs70ydm", + "rev": "908cc56c0fd715001da4d97b30cba5eb7af3a609" + }, + "recipe": { + "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "4.5", + "deps": [ + "emacs", + "swiper" + ] + }, + "paren-face": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "paren-face", + "sha256": "033gdya7f6p4kkapnmnbxlm88g4rbsmym4cc4jkcmp91idh63syq", + "rev": "835d817295d81e2a6def9beb37f05aaf97870e86" + }, + "recipe": { + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "writeroom-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "writeroom-mode", + "sha256": "0f554h834p12255mhwjnxbh1ls65476k60cwddqyl844ph75w8jv", + "rev": "48b179879c6614afcae3fc4386fd88b52b2bcc17" + }, + "recipe": { + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.5", + "deps": [ + "emacs" + ] + }, + "historyf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-historyf", + "sha256": "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z", + "rev": "64ab6c9d2cd6dec6982622bf675326e011373cd2" + }, + "recipe": { + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.79", + "deps": [] + }, + "narrowed-page-navigation": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "narrowed-page-navigation", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax", + "rev": "b215adbac4873f56fbab65772062f0f5be8058a1" + }, + "recipe": { + "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6.2", + "deps": [] + }, + "pycarddavel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "pycarddavel", + "sha256": "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11", + "rev": "6ead921066fa0156f20155b7126e5875ce11c328" + }, + "recipe": { + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [ + "emacs", + "helm" + ] + }, + "emoji-cheat-sheet-plus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "emacs-emoji-cheat-sheet-plus", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk", + "rev": "96a003127d646a2683d81ca906a17eace0a6413e" + }, + "recipe": { + "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "py-isort": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "paetzke", + "repo": "py-isort.el", + "sha256": "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr", + "rev": "cfbb576784fe4501909c15299607ce2a2d0bf164" + }, + "recipe": { + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [] + }, + "paredit": { + "fetch": { + "tag": "fetchgit", + "url": "http://mumble.net/~campbell/git/paredit.git", + "sha256": "7587cd2cf6e5b245678bbca8cbad07db8576ff976a504cd8d6e52fa85cf99f8f", + "rev": "82bb75ceb2ddc272d6618d94874b7fc13181a409" + }, + "recipe": { + "sha256": "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "24", + "deps": [] + }, + "gh": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "gh.el", + "sha256": "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms", + "rev": "33b88251e8989069cc08f3f5d6886635f276f42e" + }, + "recipe": { + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "ace-flyspell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "ace-flyspell", + "sha256": "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv", + "rev": "a850fa913b3d1bab4c00bacee41da934929cef52" + }, + "recipe": { + "sha256": "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9", + "deps": [ + "cl-lib", + "popwin" + ] + }, + "company-tern": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-tern", + "sha256": "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i", + "rev": "9a2cb8427a1a93c9c5021c01df1b47c69d79e176" + }, + "recipe": { + "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "miniedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "miniedit", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq", + "rev": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3" + }, + "recipe": { + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "magit-gh-pulls": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "magit-gh-pulls", + "sha256": "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z", + "rev": "e4a73781e3c1c7e4a09232b25e3474463cdf77b6" + }, + "recipe": { + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.2", + "deps": [ + "emacs", + "gh", + "magit", + "pcache", + "s" + ] + }, + "firestarter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "firestarter", + "sha256": "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55", + "rev": "4b7428477980e12578ebbbb121115696b352d6b2" + }, + "recipe": { + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.4", + "deps": [] + }, + "adoc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "adoc-mode", + "sha256": "1mb7dlyd5w161xagwn6w5h4q660dppkd50m71vz0w3zmxsc9a0vq", + "rev": "b6d54d9007b97f2553c238e0c36586079b666f4f" + }, + "recipe": { + "sha256": "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "geiser": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jaor", + "repo": "geiser", + "sha256": "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk", + "rev": "c6f17b25200e36f80d812684a2127b451fc11817" + }, + "recipe": { + "sha256": "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.1", + "deps": [] + }, + "tup-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "tup-mode", + "sha256": "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y", + "rev": "945af9c8e6c402e10cd3bf8e28a9591174023d6d" + }, + "recipe": { + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [] + }, + "voca-builder": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yitang", + "repo": "voca-builder", + "sha256": "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1", + "rev": "224402532da28e45edd398fda61ecbddb97d22d3" + }, + "recipe": { + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "zotelo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "zotelo", + "sha256": "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr", + "rev": "56eaaa76f80bd15710e68af4a1e585394af987d3" + }, + "recipe": { + "sha256": "0ai516lqj9yw7ymvfm4n5inv53sp6mg90wy56lr1laflizwxzg8z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "helm-dash": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "areina", + "repo": "helm-dash", + "sha256": "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai", + "rev": "a0f5d6539da873cd0c51d8ef714930c970a66aa0" + }, + "recipe": { + "sha256": "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [ + "cl-lib", + "helm" + ] + }, + "vcomp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "vcomp", + "sha256": "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x", + "rev": "a12363c3a66576b68955abcadf7280de32eaa051" + }, + "recipe": { + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [] + }, + "jsx-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jsx", + "repo": "jsx-mode.el", + "sha256": "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx", + "rev": "1ca260b76f6e6251c528ed89501597a5b456c179" + }, + "recipe": { + "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.10", + "deps": [] + }, + "gradle-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jacobono", + "repo": "emacs-gradle-mode", + "sha256": "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782", + "rev": "579de06674551919cddac9cfe42129f4fb0155c9" + }, + "recipe": { + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.5", + "deps": [ + "s" + ] + }, + "ess-R-data-view": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "ess-R-data-view.el", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x", + "rev": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9" + }, + "recipe": { + "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "ctable", + "ess", + "popup" + ] + }, + "keyfreq": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dacap", + "repo": "keyfreq", + "sha256": "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d", + "rev": "0c0a36a895a34d802614d34d7a3cc986e502ea35" + }, + "recipe": { + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.7", + "deps": [] + }, + "sourcetalk": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "malroc", + "repo": "sourcetalk_emacs", + "sha256": "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv", + "rev": "aced89fa8776e6d5e42dad4a863e159959f08de6" + }, + "recipe": { + "sha256": "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [ + "request" + ] + }, + "kaesar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.0", + "deps": [] + }, + "telephone-line": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dbordak", + "repo": "telephone-line", + "sha256": "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19", + "rev": "70c113bea37719c83961023afd893044398e681d" + }, + "recipe": { + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "0rlk9016rxj292kpxrnqgrm4xsjs4m4gk2fwh8z3fcihi013lxaw", + "rev": "2997646b2fb5421ab435b772dd2dbaeb92d70166" + }, + "recipe": { + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5.1", + "deps": [ + "helm" + ] + }, + "haskell-tab-indent": { + "fetch": { + "tag": "fetchgit", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "sha256": "02786f437bbbbb221c9c810a8d110bb4af172b986733ac35c932b18b38af7201", + "rev": "38d50e9bb8f64ba13ffbd9bcff32db820403a0fc" + }, + "recipe": { + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "helm-gtags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-gtags", + "sha256": "0gd158ymj0rpm3qmz17ky4lfhvw15cnq0xvhg6q1imjjay2md62q", + "rev": "9131a1439860198d51a9dfa6955c586da4bb60bd" + }, + "recipe": { + "sha256": "0snx0b8b4yc507q3i4fzvrd68xgzqxly8kn5cwp26ik6cv840y29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.3", + "deps": [] + }, + "highlight-blocks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-blocks", + "sha256": "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5", + "rev": "9c4240a5d16008db430d1a81c76dad474d3deb0c" + }, + "recipe": { + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "7.2.2", + "deps": [] + }, + "sos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "emacs-sos", + "sha256": "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1", + "rev": "c3906ca6872f460c0bdd276410519308626313f1" + }, + "recipe": { + "sha256": "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "org" + ] + }, + "nasm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "nasm-mode", + "sha256": "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn", + "rev": "6e208d54eabe3339f22cd775f7e6237757f5eb36" + }, + "recipe": { + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [ + "emacs" + ] + }, + "markup-faces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sensorflo", + "repo": "markup-faces", + "sha256": "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk", + "rev": "c43612633c6c161857a3bab5752ae192bb03f5f3" + }, + "recipe": { + "sha256": "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "calfw": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-calfw", + "sha256": "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n", + "rev": "50e0e0261568f84f31fe7f87c9f863e21d30132f" + }, + "recipe": { + "sha256": "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6", + "deps": [] + }, + "orgbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuhito", + "repo": "orgbox", + "sha256": "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy", + "rev": "ecaf5a064431cf92922338c974df8fce1a8f1734" + }, + "recipe": { + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "6.7", + "deps": [] + }, + "helm-circe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lesharris", + "repo": "helm-circe", + "sha256": "1iqjc15pz5qr8zjxaxz1b2vys2689ri76jacmipxvgjk0y7vc5f0", + "rev": "0b7ecf5380971ee7b6291fca6a2805c320638238" + }, + "recipe": { + "sha256": "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "nodejs-repl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abicky", + "repo": "nodejs-repl.el", + "sha256": "1qvs73nimqzhcjgw77vaipqbmnvailc1q6w8rb5vc9c425xsi7an", + "rev": "53a0d00d5854ac67d50dcf495e66f49a68e152e7" + }, + "recipe": { + "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [] + }, + "ido-completing-read+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" + }, + "recipe": { + "sha256": "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.10", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "sekka": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiyoka", + "repo": "sekka", + "sha256": "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs", + "rev": "2b0facc87e743e21534672aadac6db3164e38daf" + }, + "recipe": { + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "helm-nixos-options": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "json", + "request" + ] + }, + "helm-hatena-bookmark": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-hatena-bookmark", + "sha256": "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f", + "rev": "1ba352b858869a32323d4e6f9ca4b3eae055809e" + }, + "recipe": { + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.0", + "deps": [ + "helm" + ] + }, + "emacsql-psql": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.12", + "deps": [] + }, + "ncl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "ncl-mode", + "sha256": "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q", + "rev": "4a1a3f133c8c74a01b5c527496b56052bacac2ab" + }, + "recipe": { + "sha256": "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.99.1", + "deps": [ + "emacs" + ] + }, + "go-direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-go-direx", + "sha256": "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln", + "rev": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f" + }, + "recipe": { + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "cl-lib", + "direx" + ] + }, + "shampoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dmatveev", + "repo": "shampoo-emacs", + "sha256": "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2", + "rev": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142" + }, + "recipe": { + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [] + }, + "window-purpose": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bmag", + "repo": "emacs-purpose", + "sha256": "08j0akwjp4arkw3zm0lazb13f6dq0m8y9k9nmypd7xk0m77byymd", + "rev": "7e492cbdd4259a177625a3f47001d7281f295349" + }, + "recipe": { + "sha256": "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.22", + "deps": [] + }, + "ein": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "millejoh", + "repo": "emacs-ipython-notebook", + "sha256": "055hyvdcnbbzxs66v06d5flylhsz1qnmff758736f84cyxm76ayy", + "rev": "3aa290ed91832ba28a99c5f4b53ef40459eea539" + }, + "recipe": { + "sha256": "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "paper-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "paper-theme", + "sha256": "1fhj2g82lf2rz8c8l88acyrspnbmbj87m5n76cvc0ls40k1mgww3", + "rev": "551859066afe926380b6fcdc95851db45599944e" + }, + "recipe": { + "sha256": "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "finalize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elisp-finalize", + "sha256": "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx", + "rev": "72c8eaab3deb150ee2cf7f1473114cecffb5204a" + }, + "recipe": { + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [ + "cl-lib", + "deferred", + "helm" + ] + }, + "ttrss": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pedros", + "repo": "ttrss.el", + "sha256": "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g", + "rev": "3b1e34518294a1fa6fa29355fd4e141f3fcaf3b6" + }, + "recipe": { + "sha256": "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.4", + "deps": [] + }, + "smooth-scrolling": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aspiers", + "repo": "smooth-scrolling", + "sha256": "05kf3hb3nb32jzw50a2z9vlf3f0pj40klzxvqj4fxlci777imsvk", + "rev": "0d9b228f952c53ad456f98e2c761dda70ed72174" + }, + "recipe": { + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-cask": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-cask", + "sha256": "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4", + "rev": "bad0b7bc25fdfc200ec383db852120aa0fcdba4b" + }, + "recipe": { + "sha256": "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "5.1", + "deps": [] + }, + "markdown-mode+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "markdown-mode-plus", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r", + "rev": "f35e63284c5caed19b29501730e134018a78e441" + }, + "recipe": { + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "markdown-mode" + ] + }, + "feature-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "michaelklishin", + "repo": "cucumber.el", + "sha256": "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7", + "rev": "4bd8f19da816115094beb4b0e085822eb298ac37" + }, + "recipe": { + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "unkillable-scratch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "EricCrosson", + "repo": "unkillable-scratch", + "sha256": "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m", + "rev": "4451f82eb98f9b159745ca1a79ac60b9d224fd5b" + }, + "recipe": { + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "crm-custom": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "crm-custom", + "sha256": "1fhjz2x9jpz53g9j83kznhy2nhfap3jaf6i69k62243kcw31qyz0", + "rev": "fbcf8bf3c87f56cb872d840dd79b6727b886e90d" + }, + "recipe": { + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "ace-link": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-link", + "sha256": "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz", + "rev": "f88b70fda761c235afe8d3f7735ef14bc82226f5" + }, + "recipe": { + "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "ace-jump-mode" + ] + }, + "anaphora": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "anaphora", + "sha256": "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w", + "rev": "20bf7dcfa502538d23525f0905b4f845d97993d3" + }, + "recipe": { + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "grass-mode": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/tws/grass-mode.el", + "sha256": "0djv2ps2ahw9b1b5i45hgy7l7cch7cgh7rzq601c0r6vi7gm2ac5", + "rev": "aa8cc5eff764" + }, + "recipe": { + "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "ercn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "ercn", + "sha256": "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480", + "rev": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6" + }, + "recipe": { + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.1", + "deps": [] + }, + "jump": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j", + "rev": "fb7355615276f00397b15182076bf472336448a9" + }, + "recipe": { + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.13", + "deps": [] + }, + "evil-escape": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-escape", + "sha256": "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz", + "rev": "befb07d03c0c06ff5c40eb9cdd436c97fc49f394" + }, + "recipe": { + "sha256": "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "german-holidays": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "german-holidays", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701", + "rev": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc" + }, + "recipe": { + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "save-sexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "save-sexp", + "sha256": "1gh97rc528cpam3jsncc03cyf4pps71b8blmdikml71lks07lgwb", + "rev": "dce78d8630af6b2e29e3ec83b819a3d688d37dfc" + }, + "recipe": { + "sha256": "12jx47picdpw668q75qsp9gncrnxnlk1slhzvxsk5pvkdwh26h66", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "fringe-helper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "fringe-helper.el", + "sha256": "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj", + "rev": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b" + }, + "recipe": { + "sha256": "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [] + }, + "bufshow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pjones", + "repo": "bufshow", + "sha256": "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy", + "rev": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b" + }, + "recipe": { + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "ebal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "ebal", + "sha256": "0nb0p82fx1qp1q9id88wlfqfvfbqqr20541s59snln1pa25s2agm", + "rev": "bd8bca3a57d390c22862179db0afca7008831dd7" + }, + "recipe": { + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "smartparens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "smartparens", + "sha256": "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h", + "rev": "6b9b415b3655ac92631c8c5ca1247eebc68b7110" + }, + "recipe": { + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "elscreen-persist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "robario", + "repo": "elscreen-persist", + "sha256": "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf", + "rev": "652b4c738f92c518ead69343ebfcf66bc2a0254c" + }, + "recipe": { + "sha256": "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "pythonic" + ] + }, + "iplayer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "csrhodes", + "repo": "iplayer-el", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6", + "rev": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a" + }, + "recipe": { + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "ruby-tools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ruby-tools", + "sha256": "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k", + "rev": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac" + }, + "recipe": { + "sha256": "1zs2vzcrw11xyj2a7lgqzw4slcha20206jvjbxkm68d57rffpk8y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [] + }, + "hardcore-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "hardcore-mode.el", + "sha256": "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl", + "rev": "5ab75594a7a0ca236e2ac87882ee439ff6155d96" + }, + "recipe": { + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "e2wm-R": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "e2wm-R.el", + "sha256": "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp", + "rev": "fe17906bf48324032a1beaec9af32b9b49ea9125" + }, + "recipe": { + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "e2wm" + ] + }, + "fold-this": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "fold-this.el", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn", + "rev": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a" + }, + "recipe": { + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [] + }, + "mowedline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "retroj", + "repo": "mowedline", + "sha256": "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd", + "rev": "c299991ace6f55e9edbf26c1d53b054873899101" + }, + "recipe": { + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.8", + "deps": [] + }, + "keychain-environment": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keychain-environment", + "sha256": "07h6s1wdc83cqf08vqm4gh2r7bihbar4a31wr0140fn4rbhicwdw", + "rev": "40eba65a3d5581473d6a30f3a7abf73e5832b8c8" + }, + "recipe": { + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2.0", + "deps": [] + }, + "parent-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "parent-mode", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni", + "rev": "db692cf08deff2f0e973e6e86e26662b44813d1b" + }, + "recipe": { + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.3", + "deps": [] + }, + "git-gutter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter", + "sha256": "1721h4i185wj9nxkb19cnbwk5fwsajaqr54qq9xb669mm4pjn3ra", + "rev": "febe69d909beb407d07dfc1b273ae7b7719fdd7c" + }, + "recipe": { + "sha256": "12yjl9hsd72dwzl42hdcmjfdbxyi356jcq0kz8k7jvcsn57z4p2k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.85", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "stylus-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "sws-mode" + ] + }, + "peg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ellerh", + "repo": "peg.el", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n", + "rev": "081efeca91d790c7fbc90871ac22c40935f4833b" + }, + "recipe": { + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6", + "deps": [] + }, + "cask": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "cask", + "sha256": "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l", + "rev": "8337237449446e186ccd5ade0b0dc8c6ea7bd728" + }, + "recipe": { + "sha256": "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.7", + "deps": [ + "web-completion-data" + ] + }, + "gmail2bbdb": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "gmail2bbdb", + "sha256": "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x", + "rev": "2043fb8ee90c119b13bc8caf85fdf0a05f494b98" + }, + "recipe": { + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.4", + "deps": [] + }, + "flymake-easy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-easy", + "sha256": "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c", + "rev": "2a24f260cdc3b9c8f9263b653a475d90efa1d392" + }, + "recipe": { + "sha256": "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10", + "deps": [] + }, + "org-repo-todo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "org-repo-todo", + "sha256": "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9", + "rev": "904a26089d87db59a40421d6f857b189e70dfbe3" + }, + "recipe": { + "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.9", + "deps": [] + }, + "robe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dgutov", + "repo": "robe", + "sha256": "1fckb18x9ikm6dlwwdfg9q4wyjjwdqy3r1w2ic01xb0dbyls41gw", + "rev": "c5a0ae6f68c699ec3cdbb73a3e01e76f62d75f48" + }, + "recipe": { + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "4.4.0", + "deps": [] + }, + "company-go": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3", + "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" + }, + "recipe": { + "sha256": "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150303", + "deps": [ + "company" + ] + }, + "google-translate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atykhonov", + "repo": "google-translate", + "sha256": "0j2x7xvc556bq63c85j4dn8aggz2xfilx4x7hf99p7w6px0pzp29", + "rev": "e3f3981895d829a05f6f92d4db065c4b46076ff7" + }, + "recipe": { + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.11.2", + "deps": [] + }, + "puppet-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "puppet-mode", + "sha256": "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14", + "rev": "d943149691abd7b66c85d58aee9657bfcf822c02" + }, + "recipe": { + "sha256": "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "mbe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ijp", + "repo": "mbe.el", + "sha256": "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i", + "rev": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec" + }, + "recipe": { + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [ + "emacs" + ] + }, + "ob-sml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "swannodette", + "repo": "ob-sml", + "sha256": "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk", + "rev": "5dc966acbe65e9e158bfa90018035bf52d4dafd4" + }, + "recipe": { + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "sml-mode" + ] + }, + "mu4e-alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "mu4e-alert", + "sha256": "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a", + "rev": "83e6232b43902c7124fea16145de0da881bfe865" + }, + "recipe": { + "sha256": "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.2", + "deps": [ + "html-to-markdown", + "markdown-mode" + ] + }, + "e2wm-direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-direx", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia", + "rev": "f319625b56c44e601af7c17fc6dbb88e5d70ebae" + }, + "recipe": { + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.5", + "deps": [ + "direx", + "e2wm" + ] + }, + "multi-web-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fgallina", + "repo": "multi-web-mode", + "sha256": "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b", + "rev": "0517b9e2b3052533ac0cb71eba7073ed309fce06" + }, + "recipe": { + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [] + }, + "ctags": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/semente/ctags.el", + "sha256": "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf", + "rev": "afb16c5b2530" + }, + "recipe": { + "sha256": "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.1", + "deps": [] + }, + "history": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "history", + "sha256": "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1", + "rev": "adef53ecc2f6067bb61f020a2b66c5185a51632d" + }, + "recipe": { + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "project-persist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist", + "sha256": "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr", + "rev": "a4e5de1833edb60656d8a04357c527d34e81d27c" + }, + "recipe": { + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [] + }, + "popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "popup-el", + "sha256": "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h", + "rev": "46632ab9652dacad56fd961cd6def25a015170ae" + }, + "recipe": { + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.1", + "deps": [ + "evil" + ] + }, + "shut-up": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "shut-up", + "sha256": "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq", + "rev": "dccd8f7d6af2dde96718f557b37bc25adc61dd12" + }, + "recipe": { + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "orglink": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "orglink", + "sha256": "00vhzblzscp3mkl6x1nz116i4isjwcc5gkpdksym3mr5nqvqhd97", + "rev": "4f3750227b9279f248bc8ee5724d3c27ea97e2e1" + }, + "recipe": { + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "rdf-prefix": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "simenheg", + "repo": "rdf-prefix", + "sha256": "0r95fzi0x8r18x7r574mp503qaiqyicrq78zlggyz6qihi95pmqj", + "rev": "1ab1464172c7563a7dbf1224572e4ffbfc6608e6" + }, + "recipe": { + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "helm-migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "helm-migemo", + "sha256": "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs", + "rev": "2d964309a5415cf47f5154271e6fe7b6a7fffec7" + }, + "recipe": { + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "test-simple": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-test-simple", + "sha256": "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk", + "rev": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4" + }, + "recipe": { + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "projectile-rails": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "projectile-rails", + "sha256": "03z9zsldzj0nwksw3bj4j58p7n14n6cqv917pwn1sb67l0wziqg2", + "rev": "dee51e39003489ece8077750d3cf93dee6b373fa" + }, + "recipe": { + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.7", + "deps": [ + "emacs", + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ] + }, + "super-save": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "super-save", + "sha256": "1pq71simdb4pcbzzavlxdfbgh548m15f493h821k04n67ydzlmj3", + "rev": "4eb8aef705237d706b30cf722c5ad4909ea3acf1" + }, + "recipe": { + "sha256": "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "tabulated-list": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "tabulated-list.el", + "sha256": "0861shx0yicl3cyik6bsjlc0bm8q4h2krxmsrw7irmnwj4ng8g7g", + "rev": "b547d9b728935102d1c418bc0e978c221c37f6ab" + }, + "recipe": { + "sha256": "1gp523w11f0aa8mbrb8z6ykqmy6ihvnfs00ff906gdmjx5kk16sr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0", + "deps": [] + }, + "hippie-expand-slime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "hippie-expand-slime", + "sha256": "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr", + "rev": "de31fbc9f9d55891a006463bcee7670b47084015" + }, + "recipe": { + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "httpcode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rspivak", + "repo": "httpcode.el", + "sha256": "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk", + "rev": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90" + }, + "recipe": { + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "keyset": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "keyset", + "sha256": "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv", + "rev": "25658ef79d26971ce41d9df207dff58d38daa091" + }, + "recipe": { + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "git-gutter-fringe+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-fringe-plus", + "sha256": "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9", + "rev": "ce9d594c0189e78d78df26a0c26bbcf886e373cd" + }, + "recipe": { + "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "fringe-helper", + "git-gutter+" + ] + }, + "milkode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ongaeshi", + "repo": "emacs-milkode", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap", + "rev": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513" + }, + "recipe": { + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "egg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "byplayer", + "repo": "egg", + "sha256": "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj", + "rev": "499894195528203cfcf309228bf7578dd8cd5698" + }, + "recipe": { + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.9", + "deps": [] + }, + "tern": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marijnh", + "repo": "tern", + "sha256": "14s9740f0kgvgwz17y01f6lg9nv2jmzjilljdli064izsw474i0a", + "rev": "d4803588928d22cb18044b2e20fedd97e2d348ee" + }, + "recipe": { + "sha256": "06bgwizn9dcd8hsvimjvb28j0mpxg7rrv9knhv5kkdapa6gggxif", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5.1", + "deps": [ + "emacs", + "helm" + ] + }, + "skeletor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "skeletor.el", + "sha256": "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q", + "rev": "d986806559628623b591542143707de8d76347d0" + }, + "recipe": { + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6.1", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5", + "deps": [ + "emacs" + ] + }, + "popup-imenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "popup-imenu", + "sha256": "0pkaic2l0xk2nsqcvxgxqbk152hd42h21j3z1ldgmpy1162viw7z", + "rev": "2a03162d9439d80f2eeca1fac14215af0d1b77e2" + }, + "recipe": { + "sha256": "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "dash", + "flx-ido", + "popup" + ] + }, + "android-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "android-mode", + "sha256": "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740", + "rev": "146476c5ae958715520bec2b7f8de6b30c48c19f" + }, + "recipe": { + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.0", + "deps": [] + }, + "undercover": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sviridov", + "repo": "undercover.el", + "sha256": "0dmkn8qlnyvgaj7dqh82mqj1fik59zfi2yxcic9i6q9walxc3cas", + "rev": "068d39745304a06152c3e68a0b6772394c9e6d39" + }, + "recipe": { + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "cider", + "dash" + ] + }, + "rase": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "rase", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx", + "rev": "59b5f7e8102570b65040e8d55781c7ea28de7338" + }, + "recipe": { + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "js2-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mooz", + "repo": "js2-mode", + "sha256": "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn", + "rev": "5c9d8b82dddec2fab370ec8798569c7fc5698093" + }, + "recipe": { + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150909", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "window-end-visible": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "window-end-visible", + "sha256": "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb", + "rev": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c" + }, + "recipe": { + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "rbenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rbenv.el", + "sha256": "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp", + "rev": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8" + }, + "recipe": { + "sha256": "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [ + "emacs" + ] + }, + "dart-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "dart-mode", + "sha256": "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs", + "rev": "07edf4d4448ede128d13c27bd76cf06f5ef5bb3b" + }, + "recipe": { + "sha256": "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.14", + "deps": [ + "cl-lib", + "dash", + "flycheck" + ] + }, + "navorski": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "navorski.el", + "sha256": "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5", + "rev": "4546d4e4dfbec20ee8c423c045408a3388a9eab9" + }, + "recipe": { + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.7", + "deps": [ + "dash", + "multi-term", + "s" + ] + }, + "yasnippet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "yasnippet", + "sha256": "04cqcv10i6mym8j9fhd4fklmwa1q4nfg99kpp0bwx7issqhziqv5", + "rev": "be2f815c43deb74e0f809ed47debc4aa2e67ea1e" + }, + "recipe": { + "sha256": "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.0.1", + "deps": [] + }, + "erc-crypt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "erc-crypt", + "sha256": "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz", + "rev": "1573189240d8b58e65385414d9a9514238c77805" + }, + "recipe": { + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "log4e": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "log4e", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022", + "rev": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb" + }, + "recipe": { + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "pcomplete-extension": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "pcomplete-extension", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6", + "rev": "839740c90de857e18db2f578d6660951522faab5" + }, + "recipe": { + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "s" + ] + }, + "paxedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "paxedit", + "sha256": "1bjv3ny1bicqk6kwy9g607kj6wc3r8kdf8yfj1jynmf5xa4wwdnw", + "rev": "7a69ff07d97955fb5412ba1d5259810609e3bca0" + }, + "recipe": { + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "drupal-spell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-spell", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd", + "rev": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae" + }, + "recipe": { + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.2", + "deps": [] + }, + "org-ac": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-ac", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca", + "rev": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a" + }, + "recipe": { + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.9", + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "flycheck", + "json", + "popup", + "s" + ] + }, + "highlight-numbers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-numbers", + "sha256": "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai", + "rev": "e1245b27a732ec43c1562f825533fe147759d24e" + }, + "recipe": { + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "yasnippet" + ] + }, + "csharp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "csharp-mode", + "sha256": "12m90dwbmkdwirdfx1jfib9vk7qinrspkyz9d6m5szam98rpzalz", + "rev": "0a61f21e499d99962eca907c7f7eab0149febaa1" + }, + "recipe": { + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.11", + "deps": [] + }, + "mallard-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jhradilek", + "repo": "emacs-mallard-mode", + "sha256": "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj", + "rev": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0" + }, + "recipe": { + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "ess", + "popup" + ] + }, + "solarized-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "solarized-emacs", + "sha256": "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3", + "rev": "210dbef0186f87048d50face41d1d374d6154b3a" + }, + "recipe": { + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "org-readme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-readme", + "sha256": "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a", + "rev": "15054e42351b5ec6b629c55760a578516e035355" + }, + "recipe": { + "sha256": "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [] + }, + "ctable": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-ctable", + "sha256": "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3", + "rev": "08a017bde6d24ea585e39ce2637bebe28774d316" + }, + "recipe": { + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [] + }, + "ess": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-ess", + "repo": "ESS", + "sha256": "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p", + "rev": "82d13c36f43efb4ef32fbb515ca58f63b2f0c06e" + }, + "recipe": { + "sha256": "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "15.9", + "deps": [ + "julia-mode" + ] + }, + "ocp-indent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "OCamlPro", + "repo": "ocp-indent", + "sha256": "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz", + "rev": "e6f15bdf7d5ad6e4addbf24dce74823f953db900" + }, + "recipe": { + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "emacs", + "names" + ] + }, + "helm-w32-launcher": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "helm-w32-launcher", + "sha256": "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q", + "rev": "01aa370a32900e7521330fba495474f2aa435e19" + }, + "recipe": { + "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "alect-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "alect-themes", + "sha256": "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj", + "rev": "db7cc6ebf695a71881d803966d672f80fe967da6" + }, + "recipe": { + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [ + "emacs" + ] + }, + "dired-k": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-dired-k", + "sha256": "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7", + "rev": "f4f4a1fe3155c35e212d3e16ed5f7c89c0b32282" + }, + "recipe": { + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.16", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "project-persist-drawer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "project-persist-drawer", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8", + "rev": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626" + }, + "recipe": { + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.4", + "deps": [ + "project-persist" + ] + }, + "image-archive": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-image-archive", + "sha256": "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8", + "rev": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45" + }, + "recipe": { + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.2", + "deps": [ + "thingatpt+" + ] + }, + "package-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "package-utils", + "sha256": "138l07qmxj4fkvf43f1hdn4skadxb50c023bc5101l3njzmf74wa", + "rev": "4a56f411f98fd455556a3f1d6c16a577a22057a2" + }, + "recipe": { + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "epl" + ] + }, + "beginend": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "beginend", + "sha256": "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9", + "rev": "de3833a1a651532e76df668bd92cfa07893501f1" + }, + "recipe": { + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "org-if": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "org-if", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq", + "rev": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8" + }, + "recipe": { + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "vimgolf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "timvisher", + "repo": "vimgolf", + "sha256": "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i", + "rev": "9fd8aaf68bc69d1dd628de4c7cbb070e366545a9" + }, + "recipe": { + "sha256": "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10.0", + "deps": [] + }, + "ac-geiser": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xiaohanyu", + "repo": "ac-geiser", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn", + "rev": "0e2e36532336f27e3dc3b01fff55ad1a4329817d" + }, + "recipe": { + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "auto-complete", + "geiser" + ] + }, + "tuareg": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ocaml", + "repo": "tuareg", + "sha256": "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb", + "rev": "f97b800db79d9856c70b4988bd39bd7aa623158e" + }, + "recipe": { + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [] + }, + "octicons": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-octicons", + "sha256": "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw", + "rev": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556" + }, + "recipe": { + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "loc-changes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rocky", + "repo": "emacs-loc-changes", + "sha256": "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp", + "rev": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b" + }, + "recipe": { + "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "initsplit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dabrahams", + "repo": "initsplit", + "sha256": "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g", + "rev": "950bdc568e3fd08e6106170953caf98ac582a431" + }, + "recipe": { + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6", + "deps": [] + }, + "downplay-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tobias", + "repo": "downplay-mode", + "sha256": "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb", + "rev": "225a4b3ca09e6f463dfdd54941c98b02be8d574c" + }, + "recipe": { + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "ruby-compilation": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk", + "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" + }, + "recipe": { + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.11", + "deps": [ + "inf-ruby" + ] + }, + "alchemist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "alchemist.el", + "sha256": "0961s25b1bjrh4gzzf7k67ycwafmdrc6jlbhzb25i34dmpigq1hz", + "rev": "ddc68f52b16b2ced7646f1389ae15eb6c12c6683" + }, + "recipe": { + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.3", + "deps": [] + }, + "function-args": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "function-args", + "sha256": "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8", + "rev": "25e447d8a8930a8c515077de57a7693c6a642514" + }, + "recipe": { + "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.1", + "deps": [ + "swiper" + ] + }, + "splitjoin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-splitjoin", + "sha256": "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991", + "rev": "0eb91e7beec915065cd6c00ceaca180a64d85cda" + }, + "recipe": { + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "frame-restore": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "frame-restore.el", + "sha256": "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz", + "rev": "5bfd06e18cdf5031062de5e052e9a877c3953804" + }, + "recipe": { + "sha256": "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [ + "emacs" + ] + }, + "link": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10", + "deps": [] + }, + "button-lock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "button-lock", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2", + "rev": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f" + }, + "recipe": { + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.81", + "deps": [] + }, + "serverspec": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-serverspec", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2", + "rev": "b6dfe82af9869438de5e5d860ced196641f372c0" + }, + "recipe": { + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.4", + "deps": [ + "deferred", + "emacs", + "json" + ] + }, + "iflipb": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jrosdahl", + "repo": "iflipb", + "sha256": "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki", + "rev": "2e0d1719abeec7982341761ee5dabb01574e6862" + }, + "recipe": { + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "sift": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "sift.el", + "sha256": "0g4fql83xbyx1ihaghxm6rk2cffz97jpy13hg865m6hh0j72dlr1", + "rev": "02cea9ba11f99b13888ac1842215caf190e3a94b" + }, + "recipe": { + "sha256": "13y6nmc317hljch3x8f80jg5sb57imm7w9kdn7ybw59g55zxzz8q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "moz": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bard", + "repo": "mozrepl", + "sha256": "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c", + "rev": "646208b67e6c9c56d188db1eba999846d518935f" + }, + "recipe": { + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "timer-revert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yyr", + "repo": "timer-revert", + "sha256": "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7", + "rev": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2" + }, + "recipe": { + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "helm-mt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dfdeshom", + "repo": "helm-mt", + "sha256": "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2", + "rev": "27391022dbf5720cb13ecec8ca8c398c05a7cbf7" + }, + "recipe": { + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "cm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "criticmarkup-emacs", + "sha256": "1bhnlcsvl1qsi36a5kz8i857spzybprsbsywpqrmjpndn74n8690", + "rev": "abc5adc7e00e10c388c2a57c9f1d59f164773082" + }, + "recipe": { + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "dynamic-fonts": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "dynamic-fonts", + "sha256": "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f", + "rev": "d318498b377d8941c7420f51616c78e3440d00f5" + }, + "recipe": { + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.4", + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ] + }, + "bbdb2erc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "unhammer", + "repo": "bbdb2erc", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs", + "rev": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd" + }, + "recipe": { + "sha256": "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10", + "deps": [] + }, + "m-buffer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "m-buffer-el", + "sha256": "1dnp9yj429scg94hkmc6rnrjkcy74mpf9c509k4avmlkdmmi2hzn", + "rev": "ea281db21af0dd48ba08f7f8e0cd2902acdf5a96" + }, + "recipe": { + "sha256": "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.12", + "deps": [ + "dash", + "emacs" + ] + }, + "marshal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "marshal.el", + "sha256": "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv", + "rev": "2a3d102af4e996536a71ec38ab54e379c30a1ab0" + }, + "recipe": { + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.3", + "deps": [ + "eieio", + "json" + ] + }, + "zygospore": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "louiskottmann", + "repo": "zygospore.el", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z", + "rev": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8" + }, + "recipe": { + "sha256": "03mmxqbliwd1g73cxd9kqkngdy4jdavcs6j12b4wp27xmhgaj40z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [] + }, + "scala-mode2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "emacs-scala-mode", + "sha256": "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89", + "rev": "34888c094990bc669347f106dbd516f487e55ae3" + }, + "recipe": { + "sha256": "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.22", + "deps": [] + }, + "rigid-tabs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "rigid-tabs.el", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5", + "rev": "c7c6b726806df7e8cb25a41b213a207850c91cb7" + }, + "recipe": { + "sha256": "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "theme-changer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hadronzoo", + "repo": "theme-changer", + "sha256": "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd", + "rev": "d3d9c9f62a138958262ac5dd61837df427268611" + }, + "recipe": { + "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.0", + "deps": [] + }, + "hl-sentence": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "hl-sentence", + "sha256": "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa", + "rev": "f88882772f1a29fabb54194cc8aacd80d7f5b085" + }, + "recipe": { + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.3", + "deps": [ + "xmlgen" + ] + }, + "processing-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ptrv", + "repo": "processing2-emacs", + "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15", + "rev": "228bc56369675787d60f637223b50ce3a1afebbd" + }, + "recipe": { + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "grizzl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "grizzl", + "sha256": "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs", + "rev": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7" + }, + "recipe": { + "sha256": "1klds0w9qrsgfppq105qr69c26zi91y575db2hxr6h9vypf2rq24", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "hyde": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nibrahim", + "repo": "Hyde", + "sha256": "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4", + "rev": "181f9d2f91c2678a22243c5485162fa7999fd893" + }, + "recipe": { + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "pabbrev": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "pabbrev", + "sha256": "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6", + "rev": "127a8b10cf352b0491fefd2f4178ba78ee587564" + }, + "recipe": { + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.126", + "deps": [] + }, + "evil-leader": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-leader", + "sha256": "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5", + "rev": "753b01eb4958370ae2226b3780ff31fe157c2852" + }, + "recipe": { + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.3", + "deps": [ + "evil" + ] + }, + "darktooth-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "emacs-theme-darktooth", + "sha256": "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9", + "rev": "ce2d8d5faeb72205bdcb192dfc1e4769e7088fa3" + }, + "recipe": { + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.37", + "deps": [] + }, + "window-layout": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-window-layout", + "sha256": "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif", + "rev": "9caf5be4ff1b5d1e141783d7133dab7a46424fef" + }, + "recipe": { + "sha256": "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "edit-list": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "edit-list", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9", + "rev": "f460d3f9e208a4e606fe6ded307f1b011916ca71" + }, + "recipe": { + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "grapnel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "grapnel", + "sha256": "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5", + "rev": "7387234eb3f0285a490fddb1e06a4bf029719fb7" + }, + "recipe": { + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.3", + "deps": [] + }, + "ducpel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "ducpel", + "sha256": "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b", + "rev": "ece785baaa102bd2e9d54257af3a92bacc5757bc" + }, + "recipe": { + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "elfeed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" + }, + "recipe": { + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.0", + "deps": [ + "emacs" + ] + }, + "resize-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dpsutton", + "repo": "resize-window", + "sha256": "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv", + "rev": "d4aa9e6e950f5e0455b20f4443fda20742ec0403" + }, + "recipe": { + "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "forecast": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cadadr", + "repo": "forecast.el", + "sha256": "1jw888nqmbi9kcd9ycl2fqrmrnqxnmkx72n0b3nf3hp7j956yb21", + "rev": "51526906140700f076bd329753abe7ae31b6da90" + }, + "recipe": { + "sha256": "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.9", + "deps": [ + "emacs" + ] + }, + "tox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "tox.el", + "sha256": "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39", + "rev": "5c1a7c18cb7f2fd2da2386debf86012e6953e15d" + }, + "recipe": { + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [ + "emacs" + ] + }, + "date-field": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-date-field", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w", + "rev": "11c9170d1f7b343233f7716d4c0a62be024c1654" + }, + "recipe": { + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "dash", + "log4e", + "yaxception" + ] + }, + "slamhound": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "slamhound", + "sha256": "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8", + "rev": "2f896d6ba15d09aae66b5fdecc0d855f6b03abc9" + }, + "recipe": { + "sha256": "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5.4", + "deps": [] + }, + "evil-numbers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "evil-numbers", + "sha256": "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8", + "rev": "8834eb2e8bd93561a706363946701d0d90546a9f" + }, + "recipe": { + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "switch-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dimitri", + "repo": "switch-window", + "sha256": "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48", + "rev": "cd4b06121aa5bac4c4b13b63526a99008def5f2b" + }, + "recipe": { + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "helm-robe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-robe", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg", + "rev": "7348d0bc0251b51979554ea678b970fd01c0efe9" + }, + "recipe": { + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "ac-capf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-capf", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da", + "rev": "17571dba0a8f98111f2ab758e9bea285b263781b" + }, + "recipe": { + "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "auto-complete", + "cl-lib" + ] + }, + "lice": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "buzztaiki", + "repo": "lice-el", + "sha256": "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl", + "rev": "69f2d87984f3f3d469db35e241fbbe979384cd03" + }, + "recipe": { + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "mark-tools": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs-mark-tools", + "sha256": "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw", + "rev": "0e7ac2522ac84155cab341dc49f7f0b81067133c" + }, + "recipe": { + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "dedicated": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "dedicated", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414", + "rev": "8275fb672f9cc4ba6682ebda0ef91db827e32992" + }, + "recipe": { + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [] + }, + "edit-indirect": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "edit-indirect", + "sha256": "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds", + "rev": "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0" + }, + "recipe": { + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [ + "emacs" + ] + }, + "fireplace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "johanvts", + "repo": "emacs-fireplace", + "sha256": "0p4b4j4s3r91b691j2330lywz16mmmwfx8s4w98498agxl2vjdnx", + "rev": "5bafff73664854519aa36108f9b0e7add3bf8b8d" + }, + "recipe": { + "sha256": "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "morlock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "morlock", + "sha256": "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy", + "rev": "804131c7cff5dafa762c666fd66458111e4ee36f" + }, + "recipe": { + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [] + }, + "auto-complete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "auto-complete", + "sha256": "0q880dksf3bj1hixa4zhj3ybvrqf1wcnjnmb37i49qwdy6p1ma06", + "rev": "70770b17168c30fe482467d7219cfbe8650c5e1c" + }, + "recipe": { + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10.0", + "deps": [] + }, + "auto-compile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "auto-compile", + "sha256": "07vnk8az4lcxncqn01jvks38b4hpdmg43nbby2b39zy50agqnwsg", + "rev": "90eddfb63bd2b58be8a3fe9400b67ea45f67bb29" + }, + "recipe": { + "sha256": "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.28", + "deps": [] + }, + "search-web": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tomoya", + "repo": "search-web.el", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i", + "rev": "c4ae86ac1acfc572b81f3d78764bd9a54034c331" + }, + "recipe": { + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "clips-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "grettke", + "repo": "clips-mode", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd", + "rev": "a3ab4a3e958d54a16544ec38fe6338f27df20817" + }, + "recipe": { + "sha256": "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [] + }, + "kivy-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kivy", + "repo": "kivy", + "sha256": "0qz2q9c5q0l3ibhil2z10yb161fimgdwyp6q8izs9d59qdlmr8x8", + "rev": "7c5b1dc7c50a67079a41f27b1cea1a652119a7bc" + }, + "recipe": { + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.9.0", + "deps": [] + }, + "mpv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kljohann", + "repo": "mpv.el", + "sha256": "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3", + "rev": "059135de3979e044f14503806047476d9be9f0e8" + }, + "recipe": { + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "emacs", + "json", + "names", + "org" + ] + }, + "erlang": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "erlang", + "repo": "otp", + "sha256": "1dl2sxd77miaqbl9plrg6kgql5jg5vz42lj9f85i771g95h2c6nk", + "rev": "21d6192389a04024f7a41ced9d0911a9cce6f4e8" + }, + "recipe": { + "sha256": "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "18.2.1", + "deps": [] + }, + "concurrent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr", + "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" + }, + "recipe": { + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [ + "deferred" + ] + }, + "helm-zhihu-daily": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-zhihu-daily", + "sha256": "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1", + "rev": "fcc534bb42c81070063b28d3d939a53af0fa9a7c" + }, + "recipe": { + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [] + }, + "bongo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dbrock", + "repo": "bongo", + "sha256": "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr", + "rev": "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c" + }, + "recipe": { + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "caskxy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "caskxy", + "sha256": "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a", + "rev": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3" + }, + "recipe": { + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [] + }, + "twittering-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hayamiz", + "repo": "twittering-mode", + "sha256": "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z", + "rev": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13" + }, + "recipe": { + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.0.0", + "deps": [] + }, + "rtags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Andersbakken", + "repo": "rtags", + "sha256": "0ndyvpgbvfcnxf74ffaby36rqsnwj10j1s9vr3gan9mqi6spcggf", + "rev": "ba85598841648490e64246be802fc2dcdd45bc3c" + }, + "recipe": { + "sha256": "16jvbr4nm48p3dj9wmysjaxyz4ajcay19risqrs9fzrifkr21c9p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "skewer-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "skewer-mode", + "sha256": "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv", + "rev": "8a3a22ef4fe4d9d0831e82fde08c6355d0b19ed4" + }, + "recipe": { + "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.11", + "deps": [ + "auctex", + "cl-lib" + ] + }, + "travis": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-travis", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz", + "rev": "c8769d3db10ed4604969049e3bd276afa0a0138e" + }, + "recipe": { + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.14.3", + "deps": [ + "cl-lib", + "emacs", + "es-lib", + "es-windows" + ] + }, + "ac-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "ac-helm", + "sha256": "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34", + "rev": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a" + }, + "recipe": { + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.1", + "deps": [] + }, + "genrnc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-genrnc", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn", + "rev": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a" + }, + "recipe": { + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "company-anaconda": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "company-anaconda", + "sha256": "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy", + "rev": "137ba58960a5feeb23aff34c9225fdf161f49f98" + }, + "recipe": { + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "evil-tutor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syl20bnr", + "repo": "evil-tutor", + "sha256": "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2", + "rev": "909273bac88b98a565f1b89bbb13d523b7edce2b" + }, + "recipe": { + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9", + "deps": [ + "flycheck" + ] + }, + "evil-visualstar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "evil-visualstar", + "sha256": "1n2c0gkd6s9c8sqzinq17lnn7n5wpfj7ri50bjsk452wq8xfg94j", + "rev": "de939b4013f52a19d1e413c601bbcea88f0233ac" + }, + "recipe": { + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "evil" + ] + }, + "rainbow-identifiers": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "rainbow-identifiers", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh", + "rev": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e" + }, + "recipe": { + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.2", + "deps": [ + "emacs" + ] + }, + "demangle-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "liblit", + "repo": "demangle-mode", + "sha256": "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl", + "rev": "07e62a7f976f6c7366b4b0475bbb5cff881452b8" + }, + "recipe": { + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [] + }, + "hi2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nilcons", + "repo": "hi2", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf", + "rev": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8" + }, + "recipe": { + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "deferred": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-deferred", + "sha256": "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr", + "rev": "5ef948e9b4c29a1c02d3f1613b21cd0d6d7ef476" + }, + "recipe": { + "sha256": "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [] + }, + "bind-key": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jwiegley", + "repo": "use-package", + "sha256": "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w", + "rev": "2b077f6e485e8c5c167413c03246068022b6bc71" + }, + "recipe": { + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1", + "deps": [] + }, + "bbdb-": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "bbdb-", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp", + "rev": "2839e84c894de2513af41053e80a277a1b483d22" + }, + "recipe": { + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "bbcode-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "bbcode-mode", + "sha256": "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky", + "rev": "e693ab09c3f34cabfd185e7c249c0b5403f0a7e0" + }, + "recipe": { + "sha256": "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.0", + "deps": [] + }, + "fold-dwim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "fold-dwim", + "sha256": "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726", + "rev": "4764b0246a722d37eb8ec9f204ffaccaad1755d0" + }, + "recipe": { + "sha256": "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [] + }, + "cake-inflector": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake-inflector", + "sha256": "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far", + "rev": "40bf11890842ba305954528694e1c39a8b73737b" + }, + "recipe": { + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.1", + "deps": [ + "s" + ] + }, + "purescript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dysinger", + "repo": "purescript-mode", + "sha256": "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9", + "rev": "6a4d4bdd178c65183a715c7729941a0b8fe5f253" + }, + "recipe": { + "sha256": "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "13.10", + "deps": [] + }, + "rectangle-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "rectangle-utils", + "sha256": "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm", + "rev": "9328291ad043fdf617cd2191692f13fba5f9a9bb" + }, + "recipe": { + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.8", + "deps": [] + }, + "sbt-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ensime", + "repo": "emacs-sbt-mode", + "sha256": "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q", + "rev": "be70372bb0890a4f8bec1b6ef10b30ed2e3f5236" + }, + "recipe": { + "sha256": "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "scala-mode2" + ] + }, + "shpec-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shpec", + "repo": "shpec-mode", + "sha256": "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h", + "rev": "76bccd63e3b70233a6c9ca0798dd03550952cc76" + }, + "recipe": { + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.2", + "deps": [ + "anything" + ] + }, + "discover": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "discover.el", + "sha256": "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18", + "rev": "bbfda2b4e429985a8fa7971d264c942767cfa816" + }, + "recipe": { + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "makey" + ] + }, + "ledger-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ledger", + "repo": "ledger", + "sha256": "110yvfj01cfl40pf8c1ad8hy07kb6ibjiwvc8svfxrlhw5lca465", + "rev": "7eacf5130849b4d53948d4750e11bd08f8a97a27" + }, + "recipe": { + "sha256": "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.1", + "deps": [] + }, + "eshell-autojump": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "eshell-autojump", + "sha256": "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc", + "rev": "c0866d7f2789831665ebb01b812bae89d085bff0" + }, + "recipe": { + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "company-restclient": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-restclient", + "sha256": "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4", + "rev": "98e4b2af0e84ba4192c16288123aed96541c6401" + }, + "recipe": { + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "auto-complete", + "cake" + ] + }, + "org-tree-slide": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "takaxp", + "repo": "org-tree-slide", + "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45", + "rev": "dccd80418a4444df5e8301695ff0d0dfe86a3c21" + }, + "recipe": { + "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.8.4", + "deps": [] + }, + "org-transform-tree-table": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jplindstrom", + "repo": "emacs-org-transform-tree-table", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3", + "rev": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52" + }, + "recipe": { + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [ + "dash", + "s" + ] + }, + "asilea": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "asilea", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597", + "rev": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f" + }, + "recipe": { + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "helm-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-package", + "sha256": "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw", + "rev": "117f5f26c96c0854aadaf9c52aaec961195d5798" + }, + "recipe": { + "sha256": "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "helm" + ] + }, + "mmm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "mmm-mode", + "sha256": "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8", + "rev": "4085494df67e0a3207839a175ac62673dfd0acc1" + }, + "recipe": { + "sha256": "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.4", + "deps": [] + }, + "git-lens": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-lens", + "sha256": "0s1adgsigaq47vx8bfbmr5z8jq9y230ykwbw0jqka61n4ibg9ish", + "rev": "1feacc217c58fd4a41f9378eb09658f664036509" + }, + "recipe": { + "sha256": "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "emacs" + ] + }, + "emacs-setup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacs-setup", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8", + "rev": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2" + }, + "recipe": { + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "highlight-quoted": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "highlight-quoted", + "sha256": "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb", + "rev": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f" + }, + "recipe": { + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "wordsmith-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "wordsmith-mode", + "sha256": "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs", + "rev": "41b10f2fe3589da9812395cb417c3dcf906f0969" + }, + "recipe": { + "sha256": "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "makey": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mickeynp", + "repo": "makey", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy", + "rev": "a61781e69d3b451551e269446e1c5f624ab81137" + }, + "recipe": { + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.8", + "deps": [] + }, + "magit-gitflow": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jtatarik", + "repo": "magit-gitflow", + "sha256": "00711dgbzmplqrfww8xf261ymz3jmhisnv9x1rhcw0ywmlfkbckz", + "rev": "58c0f83b0fd02db0f6f4a0cb6101a710029caaeb" + }, + "recipe": { + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.0", + "deps": [ + "magit" + ] + }, + "wsd-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "josteink", + "repo": "wsd-mode", + "sha256": "0v4bigqr8dwbn80x87r2wqncxcbb19giyazm1lnajcfg8s5z7jsn", + "rev": "2065f07cb813041719aabb1e92fa98aebb2c6ae6" + }, + "recipe": { + "sha256": "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.0", + "deps": [] + }, + "rubocop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bbatsov", + "repo": "rubocop-emacs", + "sha256": "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q", + "rev": "405e0fd4c57adb125e3d04208bc86081e3e78d4c" + }, + "recipe": { + "sha256": "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2", + "deps": [] + }, + "web-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "fxbois", + "repo": "web-mode", + "sha256": "0b6izvqm3017hrys31ppcs76k0858r74a0jarb8djdi3hxzsgqfv", + "rev": "ee276c14f086c8f3b8b47e895b9593fd5d74acc8" + }, + "recipe": { + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "13", + "deps": [] + }, + "gitconfig-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [] + }, + "mwim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "mwim.el", + "sha256": "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4", + "rev": "dc1b5c358e0bfe607527f1b7c082188105fe6c75" + }, + "recipe": { + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "transmission": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "transmission", + "sha256": "14fzgpafry3v072f22krap81jfpdc17bpimp16hv7f20sny29a5v", + "rev": "2769c9b17fa464e0634ac03046be74cefdb28880" + }, + "recipe": { + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "cl-lib" + ] + }, + "notmuch": { + "fetch": { + "tag": "fetchgit", + "url": "git://git.notmuchmail.org/git/notmuch", + "sha256": "fd2669401c276af12b6c9b739e835ee76b7910bba34bf850e4909c00e79adbd4", + "rev": "bf511cb6979ede33d17d9da6f46f71ea287461d8" + }, + "recipe": { + "sha256": "1sy9k6xbfl035qhnp8sdq9cb3xvgw3lkmdczyd6fw6yrzm5n0g1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.21", + "deps": [] + }, + "nixos-options": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "emacs", + "json" + ] + }, + "pythonic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "pythonic", + "sha256": "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c", + "rev": "959b3f5d5607eb41ef26ad61d7ec15ceecb8e37a" + }, + "recipe": { + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "dash", + "emacs", + "f", + "s" + ] + }, + "emms-mode-line-cycle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "emms-mode-line-cycle", + "sha256": "1pz2xvv5hzfg4a8s6xnbr14mpwnr94cwsa1bpk83i7x15hmxj938", + "rev": "0488de1f9b4d0be6aa7dfe2fe0231cfd9b4d4295" + }, + "recipe": { + "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.2", + "deps": [] + }, + "popup-complete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-popup-complete", + "sha256": "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4", + "rev": "e362d4a005b36646ffbaa6be604e9e31bc406ca9" + }, + "recipe": { + "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "popup" + ] + }, + "cake2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-cake2", + "sha256": "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb", + "rev": "0a9d0b3a1c49ba1730088416f50507f53221c70b" + }, + "recipe": { + "sha256": "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "gotest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "gotest.el", + "sha256": "1b6zn1fmqvfb7bcpmhzkgcy5003dl22w3f293arlsd1xkbjgkxa2", + "rev": "ab0da939aad5cec301126c59b7718cd3158b3233" + }, + "recipe": { + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.0", + "deps": [ + "emacs", + "f", + "go-mode", + "s" + ] + }, + "floobits": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Floobits", + "repo": "floobits-emacs", + "sha256": "1b9zxyv5bn1ja0gcv5p3dk3lq3gp3g1dhbnizx7ifgpzc36sp374", + "rev": "c75af788d089b701dc71fd79c2baefe82d0d17eb" + }, + "recipe": { + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6.2", + "deps": [ + "highlight", + "json" + ] + }, + "annoying-arrows-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "annoying-arrows-mode.el", + "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02", + "rev": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3" + }, + "recipe": { + "sha256": "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "weibo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "austin-----", + "repo": "weibo.emacs", + "sha256": "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv", + "rev": "a8af467e5660a35342029c2796de99cd551454b2" + }, + "recipe": { + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "stan-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "0s633nnaprqq0svs0v4zfk9p47izbvjwx1x2xa9b9rid69bpx54s", + "rev": "60e31cd0dedc36ee6d5ddde01c5b8cb121c2e844" + }, + "recipe": { + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "8.0.0", + "deps": [] + }, + "edts": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tjarvstrand", + "repo": "edts", + "sha256": "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1", + "rev": "61855db6f1315ea45f97ed95b47a3f182ec4c6be" + }, + "recipe": { + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "avy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "avy", + "sha256": "15xfgmsy4sqs3cmk7dwmj21g3r9dqb3fra7n7ly306bwgzh4vm8k", + "rev": "44d76b9d2aad5477521675747a5c769f3f9a69a0" + }, + "recipe": { + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "marmalade": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "marmalade", + "sha256": "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9", + "rev": "01d6ddf5f0e822d6df393aa4546b069b2d6545d7" + }, + "recipe": { + "sha256": "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "cl-lib" + ] + }, + "connection": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10", + "deps": [] + }, + "gmail-message-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "gmail-mode", + "sha256": "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg", + "rev": "2e0286e4a3c80889692f8da63a3b15d7a96abdea" + }, + "recipe": { + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "clojure-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-mode", + "sha256": "0mrkw8l736pddddl0vx9j910g1l492mascqb93h0sxv8ps4xcc53", + "rev": "8b01df6c881929540b59444a54b37c03ffe6fc17" + }, + "recipe": { + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "5.0.1", + "deps": [ + "emacs" + ] + }, + "utop": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "diml", + "repo": "utop", + "sha256": "1azv6grd5h2r1spy996nv6q1c5l6qawv6k0dc2i5k96szl0r668r", + "rev": "59f5b9c3fcc3fa8102e8a892e21ff8a477f80872" + }, + "recipe": { + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.18.1", + "deps": [ + "emacs" + ] + }, + "with-editor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "042fa55yakdn2di4l5dilnmqpslac46wpr1zpl4xk3v3i4nn9ndv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "evil" + ] + }, + "lingr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lugecy", + "repo": "lingr-el", + "sha256": "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys", + "rev": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23" + }, + "recipe": { + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "auto-complete-sage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "auto-complete-sage", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3", + "rev": "a61a4e58b14134712e0737280281c0b10e56da93" + }, + "recipe": { + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [ + "cl-lib" + ] + }, + "marcopolo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "marcopolo", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh", + "rev": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e" + }, + "recipe": { + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.25.1", + "deps": [] + }, + "hydra": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "hydra", + "sha256": "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f", + "rev": "4bf7f1c9e46fb819c673e55d8a1891774e139f98" + }, + "recipe": { + "sha256": "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.2", + "deps": [ + "deferred", + "popwin" + ] + }, + "shelldoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-shelldoc", + "sha256": "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax", + "rev": "1d40c73969347586906ca1dde2adb50afcd73b1b" + }, + "recipe": { + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140303.946", + "deps": [ + "fringe-helper" + ] + }, + "fullframe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tomterl", + "repo": "fullframe", + "sha256": "09jqaq81vbch93qwrmg0rm6a26pchqdraw374j13hgkhs849gx90", + "rev": "b9c3e54c8928c5ba994c55de7794b5f739b43ced" + }, + "recipe": { + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "6.3", + "deps": [] + }, + "comment-dwim-2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remyferre", + "repo": "comment-dwim-2", + "sha256": "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps", + "rev": "8cedecde018b5872195bfead6511af822776a430" + }, + "recipe": { + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.2", + "deps": [] + }, + "ctags-update": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jixiuf", + "repo": "helm-etags-plus", + "sha256": "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7", + "rev": "d3f3162d5a3291d84b15fd325859c87e1a374923" + }, + "recipe": { + "sha256": "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "pcsv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-pcsv", + "sha256": "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z", + "rev": "91599aaba70a8e8593fa2f36165af82cbd35e41e" + }, + "recipe": { + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.6", + "deps": [] + }, + "helm-unicode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "helm-unicode", + "sha256": "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0", + "rev": "e68cc60f7efd93b410844f3722bc6681dc65e2fd" + }, + "recipe": { + "sha256": "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [ + "emacs", + "helm" + ] + }, + "company-quickhelp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "company-quickhelp", + "sha256": "0hg3wrfhz3qlfb6zv6j5a4xzmm4jk25pkv8h3ryg7sl7h602idgl", + "rev": "05e0ee9b854f90ff2b007b3e19446a02513f43dc" + }, + "recipe": { + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4", + "deps": [ + "gnus" + ] + }, + "js-comint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "js-comint", + "sha256": "1gf6ir4viy8zr9fwmjz4s7zkr3m7947sa8mai56bnv83r2k3s9ir", + "rev": "69c8475573f1ef1f59331027a0fe445161b51000" + }, + "recipe": { + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [ + "nvm" + ] + }, + "qml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "qml-mode", + "sha256": "069hbpawmcmbbvaqp63d6p34hg0h7zq294qrz0m1zwrm188bmhzl", + "rev": "a69ee2d23e079dbedab22fde85181a8320af2222" + }, + "recipe": { + "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "org-journal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "emacs-journal", + "sha256": "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79", + "rev": "68974d86f1ef518defb3085e415d882ba4575714" + }, + "recipe": { + "sha256": "078z9b9hxbvmmxib6098f49rn7n3d0v4x37p7xxb0v8cv4izlb4s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10.2", + "deps": [] + }, + "selectric-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rbanffy", + "repo": "selectric-mode", + "sha256": "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79", + "rev": "0dd7ef28a9d9d6fbb95fdeeab6b576ad8762ad16" + }, + "recipe": { + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "circe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q", + "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" + }, + "recipe": { + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1", + "deps": [ + "cl-lib" + ] + }, + "evm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "evm.el", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb", + "rev": "d0623b2355436a5fd9f7238b419782080c79196b" + }, + "recipe": { + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.2", + "deps": [ + "dash", + "f" + ] + }, + "truthy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "truthy", + "sha256": "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397", + "rev": "276a7e6b13606d28e4f2e423bb1ea30904c5def3" + }, + "recipe": { + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.17.0", + "deps": [] + }, + "sotlisp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "speed-of-thought-lisp", + "sha256": "1wbd7v5bnd4qgqk8rrgllal0i949n8xzvb3yhf0vnxr06wdzy0a4", + "rev": "6e0ebc97000dc505f72ad9cc793ac857b0585f5a" + }, + "recipe": { + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.1", + "deps": [ + "emacs" + ] + }, + "helm-spaces": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yasuyk", + "repo": "helm-spaces", + "sha256": "0kz0vfp43n7f9l53rji2pb8v6ylg63i37q0bmidmjjvsinimwj44", + "rev": "8b4f5a1e3cb823ceee1e341ce45f9b18a1b8057c" + }, + "recipe": { + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "helm", + "spaces" + ] + }, + "logito": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "logito", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr", + "rev": "824acb89d2cc18cb47281a4fbddd81ad244a2052" + }, + "recipe": { + "sha256": "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "eieio" + ] + }, + "org-tracktable": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tty-tourist", + "repo": "org-tracktable", + "sha256": "053wf36lq9piyzq7rv2lid34zanj6l9fvawp3r3nsniy5nlfckqx", + "rev": "28ef6772cdcf436cf38095f15c6bb681473180ce" + }, + "recipe": { + "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "electric-operator": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "davidshepherd7", + "repo": "electric-operator", + "sha256": "1bqdg5sr4hkiqndr4hcdjscfdyj56jb4wr1kqgwy1hy4ccr9mkrr", + "rev": "3d34101e065396389cfbb8fec333c78641a71dc6" + }, + "recipe": { + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "dash", + "emacs", + "names" + ] + }, + "owdriver": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "owdriver", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk", + "rev": "0479389d9df9e70ff9ce69dff06252d3aa40fc86" + }, + "recipe": { + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.6", + "deps": [ + "log4e", + "smartrep", + "yaxception" + ] + }, + "spotify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "remvee", + "repo": "spotify-el", + "sha256": "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw", + "rev": "07a44ecdbdaa93977e97f2a2e5d280ef0b2e8545" + }, + "recipe": { + "sha256": "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [] + }, + "mustache-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mustache", + "repo": "emacs", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk", + "rev": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f" + }, + "recipe": { + "sha256": "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "persistent-soft": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "persistent-soft", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc", + "rev": "a1e0ddf2a12a6f18cab565dee250f070384cbe02" + }, + "recipe": { + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6", + "deps": [] + }, + "magit-filenotify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-filenotify", + "sha256": "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal", + "rev": "575c4321f61fb8f25e4779f9ffd4514ac086ae96" + }, + "recipe": { + "sha256": "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "emacs", + "magit" + ] + }, + "xterm-color": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "atomontage", + "repo": "xterm-color", + "sha256": "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x", + "rev": "380cc8c6c6969f8a262ad4ddc61117691db7f4d1" + }, + "recipe": { + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "phpunit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "phpunit.el", + "sha256": "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz", + "rev": "d9e9092d664463b7cc8e0a433a76b8c9598ab2c9" + }, + "recipe": { + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.0", + "deps": [ + "f", + "pkg-info", + "s" + ] + }, + "org-gcal": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "org-gcal.el", + "sha256": "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498", + "rev": "badd3629e6243563c30ff1dd0452b7601f6cc036" + }, + "recipe": { + "sha256": "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "el-init": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init", + "sha256": "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n", + "rev": "25fd21d820bca1cf576b8f70c8d5a3bc76792597" + }, + "recipe": { + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [ + "gntp", + "log4e" + ] + }, + "slime-ritz": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pallet", + "repo": "ritz", + "sha256": "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96", + "rev": "1cc6faedae26323994ea8dd1a4f555db8acbf244" + }, + "recipe": { + "sha256": "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.0", + "deps": [] + }, + "buffer-flip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "killdash9", + "repo": "buffer-flip.el", + "sha256": "0ck6d1z8j9yc32wrbwmxl8rgm19la7ijvsh740sd0sfmhwqxc1kz", + "rev": "2bbf74fac037ace991d03336c515c499a8e69c95" + }, + "recipe": { + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "key-chord" + ] + }, + "tern-django": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "tern-django", + "sha256": "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p", + "rev": "6d616c5f802d3432c4065dc306d7977d254df49f" + }, + "recipe": { + "sha256": "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "emacs", + "f", + "tern" + ] + }, + "ido-ubiquitous": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DarwinAwardWinner", + "repo": "ido-ubiquitous", + "sha256": "0byairx5nxbzgdyiw658p7yiysfr7r1bd3b2prawq72bslb1c5cn", + "rev": "1a97a38f2d1a51371853e44da659caa6baf78cbe" + }, + "recipe": { + "sha256": "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.10", + "deps": [ + "cl-lib", + "emacs", + "ido-completing-read+", + "s" + ] + }, + "merlin": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "the-lambda-church", + "repo": "merlin", + "sha256": "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn", + "rev": "6f9915e0d87bf721ea2859ffa17d3fbeeabcfb9d" + }, + "recipe": { + "sha256": "0wnh7512sknagdk56j6gd8vamh9ns3vnggm56s73pik0m009w0xr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.2", + "deps": [] + }, + "windsize": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "grammati", + "repo": "windsize", + "sha256": "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil", + "rev": "014b0836f9ffe45fa7e0ccc84576fbef74815a59" + }, + "recipe": { + "sha256": "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "anti-zenburn-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m00natic", + "repo": "anti-zenburn-theme", + "sha256": "0q8495ivlkismlghk3chra8rkpqx9abnxahaq1lkp77aiyyhpadg", + "rev": "9a33476a0dad3c6dd2d5c0a0ff75e30aa5eacb01" + }, + "recipe": { + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.3", + "deps": [] + }, + "sws-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brianc", + "repo": "jade-mode", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n", + "rev": "4e7a20db492719062f40b225ed730ed50be5db56" + }, + "recipe": { + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "ibuffer-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-projectile", + "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc", + "rev": "8b225dc779088ce65b81d8d86dc5d394baa53e2e" + }, + "recipe": { + "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "projectile" + ] + }, + "lentic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lentic", + "sha256": "0x0vz6sn4ignbxihzydc3d5dhlk1aywa4264mhqxb3adq4n1ryc6", + "rev": "8885bfcde8c6b60b79e7f07cf84c95578107491f" + }, + "recipe": { + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "4.2", + "deps": [] + }, + "lfe-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rvirding", + "repo": "lfe", + "sha256": "1w9n5v4g4w34gii6nk2aan4w230dmm0dhml4s9q1fzmvk1ngld6k", + "rev": "d7bc80da04aedd0a607f17d8d149eba363872b4b" + }, + "recipe": { + "sha256": "06b382ncgk4zz3q8akyzfy55j86a53r97gf0l92qvlca7fbs8jjx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10.1", + "deps": [] + }, + "nyan-prompt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "PuercoPop", + "repo": "nyan-prompt", + "sha256": "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp", + "rev": "b5137f2ee9afe640f59786eed17b308df6356c73" + }, + "recipe": { + "sha256": "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "keymap-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "keymap-utils", + "sha256": "06ajkqxv71hcrwc707ybzwfw4yzbsp6basnbs493ryr41gnvmnzs", + "rev": "dd396093899a3792ef88742657e799339fd8aed5" + }, + "recipe": { + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.2", + "deps": [ + "cl-lib" + ] + }, + "xcscope": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dkogan", + "repo": "xcscope.el", + "sha256": "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7", + "rev": "4775aae4ce4caa92fb8b752907d7b66b96ccbe03" + }, + "recipe": { + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "weechat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "the-kenny", + "repo": "weechat.el", + "sha256": "0f90m2s40jish4wjwfpmbgw024r7n2l5b9q9wr6rd3vdcwks3mcl", + "rev": "f01cdd4d874cf09fee5a78d7b29eb96bc21be2be" + }, + "recipe": { + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "emacs", + "go-mode" + ] + }, + "plenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "karupanerura", + "repo": "plenv.el", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g", + "rev": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2" + }, + "recipe": { + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.32", + "deps": [] + }, + "git-gutter+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "git-gutter-plus", + "sha256": "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb", + "rev": "f8daebb6569bb116086d8653da3505382e03d940" + }, + "recipe": { + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "git-commit" + ] + }, + "wrap-region": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "wrap-region", + "sha256": "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0", + "rev": "5a910ad23ebb0649e644bf62ad042587341da5da" + }, + "recipe": { + "sha256": "0mby3m49vm2pw127divspgivqam27zd4r70wx5ra05xwfxywaibq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.6", + "deps": [] + }, + "rnc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "TreeRex", + "repo": "rnc-mode", + "sha256": "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih", + "rev": "b39dc23218213336b55f28e12a1d0e49ef7c1e21" + }, + "recipe": { + "sha256": "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.6", + "deps": [] + }, + "pangu-spacing": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "pangu-spacing", + "sha256": "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y", + "rev": "034b4ef8a1b29bf7bfed6a916380941506ed26ed" + }, + "recipe": { + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "protobuf-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "google", + "repo": "protobuf", + "sha256": "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070", + "rev": "bba83652e1be610bdb7ee1566ad18346d98b843c" + }, + "recipe": { + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.6.1", + "deps": [] + }, + "metaweblog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "metaweblog.el", + "sha256": "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4", + "rev": "c8b50a6edf0fd2f396570c9a1c2ef8cd207606fb" + }, + "recipe": { + "sha256": "11y5x3a8iv0hjj7ppi2sa7vawn7r475qfsh1jg415j4y4fzwpk6y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "xml-rpc" + ] + }, + "imenus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "imenus.el", + "sha256": "18nx5z2vn0ikv4gxjprsqr63pcgf9s02gc3f769h8dji560kqxd4", + "rev": "7409021864a4e74a237a00d1e1d2597dc80ef7f0" + }, + "recipe": { + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "systemd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "holomorph", + "repo": "systemd-mode", + "sha256": "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9", + "rev": "aa9f4f64e99d5912153eef0726e26fd4dfb4d7c3" + }, + "recipe": { + "sha256": "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [ + "emacs" + ] + }, + "ov": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ShingoFukuyama", + "repo": "ov.el", + "sha256": "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc", + "rev": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095" + }, + "recipe": { + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.6", + "deps": [ + "emacs" + ] + }, + "ibuffer-vc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ibuffer-vc", + "sha256": "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8", + "rev": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a" + }, + "recipe": { + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10", + "deps": [ + "cl-lib" + ] + }, + "servant": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "servant.el", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d", + "rev": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134" + }, + "recipe": { + "sha256": "048xg0gcwnf4l2p56iw4iawi3ywjz7f6icnjfi8qzk1z912iyl9h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "moz" + ] + }, + "dired-efap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juan-leon", + "repo": "dired-efap", + "sha256": "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv", + "rev": "2b849bc5c09d0b752a177495ea1b851ee821f5bf" + }, + "recipe": { + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [] + }, + "form-feed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "form-feed", + "sha256": "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2", + "rev": "eac6724c093458745e9ae0e37221077fa2ad0ff6" + }, + "recipe": { + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [ + "auto-complete" + ] + }, + "ws-butler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "ws-butler", + "sha256": "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f", + "rev": "106d313c0dad532c2da3cc78770a8a2f0396aa85" + }, + "recipe": { + "sha256": "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "nsis-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "nsis-mode", + "sha256": "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl", + "rev": "f1bf701c37680553c8f51462e0829d0dd6c53187" + }, + "recipe": { + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.44", + "deps": [] + }, + "punctuality-logger": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "punctuality-logger", + "sha256": "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py", + "rev": "708cae8e67dbae293c7c4be0ca5e49d76fac6714" + }, + "recipe": { + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [] + }, + "less-css-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "less-css-mode", + "sha256": "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn", + "rev": "d59a3ff4031ae75fbbe77b6cfce7843205394c28" + }, + "recipe": { + "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.20", + "deps": [] + }, + "python-x": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wavexx", + "repo": "python-x.el", + "sha256": "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr", + "rev": "e606469aafec2e6beda8c589540b88a5a6f6f33f" + }, + "recipe": { + "sha256": "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "font-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "font-utils", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055", + "rev": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3" + }, + "recipe": { + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "yatex": { + "fetch": { + "tag": "fetchhg", + "url": "https://www.yatex.org/hgrepos/yatex/", + "sha256": "1n38fn6hcsl5ilq8vdaakv6id426lr7hdnvccqy6jdplqymgj7h6", + "rev": "5b49aea3810d" + }, + "recipe": { + "sha256": "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.78", + "deps": [] + }, + "pandoc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joostkremers", + "repo": "pandoc-mode", + "sha256": "14kxmcsgdrq9r8c17x8hz8vid0bn6rikvmddhc6wpbmp7shngvr1", + "rev": "067f9aa8ba27bd50b602dbfdaa155e2f381c7139" + }, + "recipe": { + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "elx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "elx", + "sha256": "12svv24qclkcdb5sniq0xbbsj34hq835s2v636xkb07dpmy644lg", + "rev": "8f339d0c266713ca8398b01d51ccfdbe1dbb9aeb" + }, + "recipe": { + "sha256": "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10.0", + "deps": [ + "emacs" + ] + }, + "hyai": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "hyai", + "sha256": "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm", + "rev": "7c644d31f62943c75ccf5a772e43450b462cc08f" + }, + "recipe": { + "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "json" + ] + }, + "powerline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "milkypostman", + "repo": "powerline", + "sha256": "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr", + "rev": "240bad5ebea4c7298e86ed76bd44c45d9062cb33" + }, + "recipe": { + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2", + "deps": [ + "cl-lib" + ] + }, + "helm-sage": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stakemori", + "repo": "helm-sage", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl", + "rev": "b42b4ba5fd1b17c4b54c30376a053281686beeb8" + }, + "recipe": { + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "skewer-mode" + ] + }, + "flymake-perlcritic": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "illusori", + "repo": "emacs-flymake-perlcritic", + "sha256": "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq", + "rev": "0692d6ad5495f6e5438bde0a10345829b8e1def8" + }, + "recipe": { + "sha256": "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.3", + "deps": [ + "flymake" + ] + }, + "emamux": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-emamux", + "sha256": "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67", + "rev": "53177ca59ed2824cc0837677af5a13a580691a71" + }, + "recipe": { + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ggtags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoliu", + "repo": "ggtags", + "sha256": "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n", + "rev": "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731" + }, + "recipe": { + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.11", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "ac-cake2": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ac-cake2", + "sha256": "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv", + "rev": "ffbb679c0d5c261b05abde06d8d1d1e5d5990b6a" + }, + "recipe": { + "sha256": "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.8.0.2.1", + "deps": [] + }, + "corral": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nivekuil", + "repo": "corral", + "sha256": "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx", + "rev": "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9" + }, + "recipe": { + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "cacoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-cacoo", + "sha256": "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx", + "rev": "c2e6a8830144810cd4e51de3646cb8200bcebbc6" + }, + "recipe": { + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.2", + "deps": [ + "concurrent" + ] + }, + "sprintly-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sprintly", + "repo": "sprintly-mode", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6", + "rev": "6695892bae5860b5268bf3ae62be990ee9b63c11" + }, + "recipe": { + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.4", + "deps": [ + "furl" + ] + }, + "multi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-multi", + "sha256": "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v", + "rev": "884203b11fdac8374ec644cca975469aab263404" + }, + "recipe": { + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.1", + "deps": [ + "emacs" + ] + }, + "json-reformat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gongo", + "repo": "json-reformat", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs", + "rev": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716" + }, + "recipe": { + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.6", + "deps": [] + }, + "unicode-whitespace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-whitespace", + "sha256": "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy", + "rev": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db" + }, + "recipe": { + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [ + "cl-lib" + ] + }, + "omni-tags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-tags.el", + "sha256": "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi", + "rev": "a7078bfbc9a6256efd0e57530df9fd7808bc2185" + }, + "recipe": { + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "page-break-lines": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "page-break-lines", + "sha256": "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4", + "rev": "36d3f93a23b767e7558b9c90f3631b03ce9fbdce" + }, + "recipe": { + "sha256": "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10", + "deps": [] + }, + "rope-read-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "marcowahl", + "repo": "rope-read-mode", + "sha256": "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h", + "rev": "cb550afeedd369c80d1ccb54bb48494d170a5569" + }, + "recipe": { + "sha256": "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [] + }, + "desktop+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ffevotte", + "repo": "desktop-plus", + "sha256": "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3", + "rev": "a484d24ca673c7536387368729421dad9dde5059" + }, + "recipe": { + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "bash-completion": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "szermatt", + "repo": "emacs-bash-completion", + "sha256": "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd", + "rev": "9588a9c0ddf18f9869d4145a67e6446a4b66eba2" + }, + "recipe": { + "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.0", + "deps": [] + }, + "angular-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "omouse", + "repo": "angularjs-mode", + "sha256": "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp", + "rev": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2" + }, + "recipe": { + "sha256": "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "ctxmenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-ctxmenu", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb", + "rev": "5c2376859562b98c07c985d2b483658e4c0e888e" + }, + "recipe": { + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [ + "deferred" + ] + }, + "gotham-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "gotham-theme", + "sha256": "0pxzi56lw9ry91f70hjnvrsbyhcaqknlwicjjbhf6rhv57fplw8h", + "rev": "d41b0ea37ad5a4d0060ea05e25d80581f113b662" + }, + "recipe": { + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.5", + "deps": [] + }, + "evil-quickscope": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "blorbx", + "repo": "evil-quickscope", + "sha256": "0yx5ry102hzhqx1aql58fkd986xgj250bbcxabpnvy27gim2b977", + "rev": "d2f512fa4bd0b0603529a441e474ca551f621650" + }, + "recipe": { + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.3", + "deps": [ + "evil" + ] + }, + "xbm-life": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "xbm-life", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6", + "rev": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201" + }, + "recipe": { + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.3", + "deps": [] + }, + "elpa-mirror": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "elpa-mirror", + "sha256": "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a", + "rev": "6c32875c2317736e590e067820996010b21acb1d" + }, + "recipe": { + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.1", + "deps": [] + }, + "edit-server": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stsquad", + "repo": "emacs_chrome", + "sha256": "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn", + "rev": "f0db18f0d6e9885e4aef3ace8342fd6f635fadf6" + }, + "recipe": { + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.13", + "deps": [] + }, + "dynamic-ruler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rocher", + "repo": "dynamic-ruler", + "sha256": "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr", + "rev": "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb" + }, + "recipe": { + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.4", + "deps": [] + }, + "fontawesome": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-fontawesome", + "sha256": "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc", + "rev": "ccb03b8329daa3130491c9c4d285b325dbeb5cc7" + }, + "recipe": { + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "o-blog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "renard", + "repo": "o-blog", + "sha256": "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs", + "rev": "5db9594c6e3439c000b183551d7975c2e29131f4" + }, + "recipe": { + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "love-minor-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ejmr", + "repo": "love-minor-mode", + "sha256": "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk", + "rev": "1634ff3a8b657c63a5cffd9a937812a289f2c954" + }, + "recipe": { + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "erc-hl-nicks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "erc-hl-nicks", + "sha256": "0bc71s1cx4z6a9cpfygmzv1xzzx9s74366kzqnlg22sxxpb9ajhq", + "rev": "f7e9c378072ecc689f2a0ef66d73db8bbcc07d87" + }, + "recipe": { + "sha256": "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.0", + "deps": [] + }, + "dash-functional": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa", + "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" + }, + "recipe": { + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [] + }, + "telepathy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "telepathy.el", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc", + "rev": "211d785b02a29ddc254422fdcc3db45262582f8c" + }, + "recipe": { + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "flycheck-haskell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "flycheck", + "repo": "flycheck-haskell", + "sha256": "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj", + "rev": "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc" + }, + "recipe": { + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "evil", + "iedit" + ] + }, + "unicode-enbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "unicode-enbox", + "sha256": "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7", + "rev": "ff313f6778bb96481c0ee3291b07a7db46f21ff5" + }, + "recipe": { + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.9", + "deps": [ + "emacs", + "rich-minority" + ] + }, + "live-py-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "donkirkby", + "repo": "live-py-plugin", + "sha256": "1y81qqsjj2sa319xkwhvq7bl3f5gma4cs7w8x2w510ms32fgqa8x", + "rev": "75c27e0110257e3138e24dc2de2a19244635a0bf" + }, + "recipe": { + "sha256": "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.8.1", + "deps": [] + }, + "pos-tip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pitkali", + "repo": "pos-tip", + "sha256": "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33", + "rev": "1b81694d1dc29253db0e855b82563f84a32b38d4" + }, + "recipe": { + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.6", + "deps": [] + }, + "helm-gitlab": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "emacs-gitlab", + "sha256": "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil", + "rev": "90be6027eb59a967e5bbceaa5f32c098472ca245" + }, + "recipe": { + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.92", + "deps": [] + }, + "magit-gerrit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "terranpro", + "repo": "magit-gerrit", + "sha256": "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb", + "rev": "699c5c39c6dbdc8d730721eaf1491f982dd78142" + }, + "recipe": { + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "magit" + ] + }, + "org-pomodoro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lolownia", + "repo": "org-pomodoro", + "sha256": "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw", + "rev": "26452a3d070f4814b191a9de9e3493a54161b910" + }, + "recipe": { + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "kurecolor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsfodder", + "repo": "kurecolor", + "sha256": "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz", + "rev": "c8c72cea04e51f57701d2dd9be7dba5f3412e2f3" + }, + "recipe": { + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.0", + "deps": [] + }, + "monroe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sanel", + "repo": "monroe", + "sha256": "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm", + "rev": "2f8aed286de47f5c4f65b352b6e4f72b47cac279" + }, + "recipe": { + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "names": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "names", + "sha256": "05jvd272x92s6wk17l0hymdj8b4979maalkmk54dp7n4nrcmzx2f", + "rev": "a6865f901dd94f92ae23af8aef3f6ae863901855" + }, + "recipe": { + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "log4e", + "yaxception" + ] + }, + "docker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "docker.el", + "sha256": "06vb6r1k9ml799h44fm9jhf3amldzhawxnm0lnr501hrmj4bz36x", + "rev": "77f646cc10909403a945d188cf9d81abd3bfc2a0" + }, + "recipe": { + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "dash", + "emacs", + "magit-popup", + "s" + ] + }, + "auto-package-update": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rranelli", + "repo": "auto-package-update.el", + "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2", + "rev": "cdef79f9fc6f8347fdd05664978fb9a948ea0410" + }, + "recipe": { + "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [] + }, + "omni-log": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-log.el", + "sha256": "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk", + "rev": "7eb30e42cc89064abb7acbec63cb9644c2ad7c9b" + }, + "recipe": { + "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "imenu-anywhere": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vitoshka", + "repo": "imenu-anywhere", + "sha256": "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16", + "rev": "a090132492a3a98b6547240babe0bc0fa6154bb2" + }, + "recipe": { + "sha256": "0p93g7ay9n4nhf1qk24mbax0w9sr06xd2kjmrz00gbg75sr9r2s8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "aproject": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vietor", + "repo": "aproject", + "sha256": "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc", + "rev": "3c7d23c341862dfd77fd0a64775df12ddb44ab54" + }, + "recipe": { + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "ahk-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ahk-mode", + "sha256": "1qqrf9ncc3blkv4p2bhh9q6y41pp9p4wr667mm80vb5j8rkpsaa8", + "rev": "7b47b40952708ea4e9a0f1969f00caa92700513a" + }, + "recipe": { + "sha256": "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5.5", + "deps": [] + }, + "requirejs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "joeheyming", + "repo": "requirejs-emacs", + "sha256": "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca", + "rev": "7d73453653b6b97cca59fcde8d529b5a228fbc01" + }, + "recipe": { + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.2", + "deps": [] + }, + "langtool": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-langtool", + "sha256": "16wmc89jnn7qqcqw6702c9ccmwpb8pkxasa17ikmmmnggmg50lfh", + "rev": "443b3804f9e33e6d96ee8e15ddede7f152ece378" + }, + "recipe": { + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5.0", + "deps": [ + "cl-lib" + ] + }, + "uzumaki": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "geyslan", + "repo": "uzumaki", + "sha256": "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds", + "rev": "a75956e1757f4b98aad3384a4616481aede70cb1" + }, + "recipe": { + "sha256": "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib" + ] + }, + "fvwm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "theBlackDragon", + "repo": "fvwm-mode", + "sha256": "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv", + "rev": "d48a309bb7db21f5404b6619c6ee861fe0457704" + }, + "recipe": { + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6.4", + "deps": [] + }, + "factlog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "factlog", + "sha256": "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka", + "rev": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf" + }, + "recipe": { + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [] + }, + "kaesar-file": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-kaesar", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8", + "rev": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea" + }, + "recipe": { + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.0", + "deps": [ + "kaesar" + ] + }, + "boon": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jyp", + "repo": "boon", + "sha256": "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq", + "rev": "82458a944e9cf3e4c959e63ebad09312aafe6d2c" + }, + "recipe": { + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "emacs", + "expand-region", + "multiple-cursors" + ] + }, + "inflections": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "jump.el", + "sha256": "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j", + "rev": "fb7355615276f00397b15182076bf472336448a9" + }, + "recipe": { + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.3", + "deps": [] + }, + "color-theme-sanityinc-solarized": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "color-theme-sanityinc-solarized", + "sha256": "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc", + "rev": "554e941131d009c0a5d7129ed96796182b4cc590" + }, + "recipe": { + "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [] + }, + "mode-line-debug": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "mode-line-debug", + "sha256": "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1", + "rev": "da44422eeb6a1f055b4ec2f822962c5162fce001" + }, + "recipe": { + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "helm" + ] + }, + "helm-aws": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "helm-aws", + "sha256": "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv", + "rev": "172a4a3427d31c999e27e9ee06aa8e3822364a8c" + }, + "recipe": { + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "helm" + ] + }, + "pcache": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "pcache", + "sha256": "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8", + "rev": "4b090f46182fd2ed1f44905dc04acc3121bcf622" + }, + "recipe": { + "sha256": "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.2", + "deps": [ + "eieio" + ] + }, + "reverse-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-reverse-theme", + "sha256": "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h", + "rev": "3105c950bcb51c662c79b59ca102ef662c2b0be0" + }, + "recipe": { + "sha256": "1lq8nwhf8n5i280v0kqksndm4b3n6x34wnd5fa5i48ljwr5cinih", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "perspective": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "perspective-el", + "sha256": "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q", + "rev": "3a8d59045a6370fae1ec2011865190a7465d707f" + }, + "recipe": { + "sha256": "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.12", + "deps": [ + "cl-lib" + ] + }, + "offlineimap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jd", + "repo": "offlineimap.el", + "sha256": "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b", + "rev": "646482203aacdf847d57d0a96263fddcfc33fb61" + }, + "recipe": { + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1", + "deps": [] + }, + "es-lib": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "es-lib", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b", + "rev": "753b27363e39c10edc9e4e452bdbbbe4d190df4a" + }, + "recipe": { + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "cl-lib" + ] + }, + "pt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bling", + "repo": "pt.el", + "sha256": "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw", + "rev": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e" + }, + "recipe": { + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [] + }, + "gitignore-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [] + }, + "fold-dwim-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "fold-dwim-org", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw", + "rev": "c09bb2b46d65afbd1d0febc6fded7495be7a3037" + }, + "recipe": { + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6", + "deps": [ + "fold-dwim" + ] + }, + "ac-mozc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "igjit", + "repo": "ac-mozc", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5", + "rev": "4c6c8be4701010d9362184437c0f783e0335c631" + }, + "recipe": { + "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "company-nixos-options": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "travisbhartwell", + "repo": "nix-emacs", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld", + "rev": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f" + }, + "recipe": { + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "cl-lib", + "company", + "nixos-options" + ] + }, + "flymake-json": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-json", + "sha256": "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv", + "rev": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65" + }, + "recipe": { + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "flymake-easy" + ] + }, + "sass-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "sass-mode", + "sha256": "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln", + "rev": "26a66e331b507fb420e3bb7d0a6a8fbb04294343" + }, + "recipe": { + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "dash" + ] + }, + "flymake-haskell-multi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-haskell-multi", + "sha256": "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz", + "rev": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9" + }, + "recipe": { + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "flymake-easy" + ] + }, + "git-timemachine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "git-timemachine", + "sha256": "1wkjh7pwrkdnihyknr76anyj41i6sv3qhq61kmw83clyh64yp6as", + "rev": "bde589fbeb3b5326e89573cbb9a6fd08d832d073" + }, + "recipe": { + "sha256": "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.8", + "deps": [ + "highlight" + ] + }, + "edn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "expez", + "repo": "edn.el", + "sha256": "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd", + "rev": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7" + }, + "recipe": { + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.2", + "deps": [ + "cl-lib", + "dash", + "emacs", + "peg", + "s" + ] + }, + "org-table-comment": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-table-comment.el", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb", + "rev": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e" + }, + "recipe": { + "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "hl-sexp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsmirror", + "repo": "hl-sexp", + "sha256": "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw", + "rev": "0606100422321c18db51ceda80f25cd7717c2e01" + }, + "recipe": { + "sha256": "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "avy-migemo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "momomo5717", + "repo": "avy-migemo", + "sha256": "098bkqb2cndjx93jacj6p54xfy14m1iknvpv1y5rffy9p4l2cbd3", + "rev": "f2498ed4a476a554c84716f5a8131f9b78a45185" + }, + "recipe": { + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.11", + "deps": [ + "avy", + "emacs", + "migemo" + ] + }, + "osx-browse": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "osx-browse", + "sha256": "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m", + "rev": "6186a6020e143e90d557c8d062c44fcdba0516c7" + }, + "recipe": { + "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "helm-core" + ] + }, + "phpcbf": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nishimaki10", + "repo": "emacs-phpcbf", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z", + "rev": "b556b548ceb061b002389d6165d2cc63d8bddb5d" + }, + "recipe": { + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.2", + "deps": [ + "s" + ] + }, + "dispass": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ryuslash", + "repo": "dispass.el", + "sha256": "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl", + "rev": "38b880e72cfe5e65179b16791903b0900c73eff4" + }, + "recipe": { + "sha256": "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.1", + "deps": [] + }, + "flymake-css": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-css", + "sha256": "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa", + "rev": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed" + }, + "recipe": { + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "yasnippet" + ] + }, + "emacsql-sqlite": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.0", + "deps": [] + }, + "haskell-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-snippets", + "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6", + "rev": "bcf12cf33a67ddc2f023a55072859e637fe4fa25" + }, + "recipe": { + "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "expand-region" + ] + }, + "tumble": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "febuiles", + "repo": "tumble", + "sha256": "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy", + "rev": "a1db6dac5720b9f468a79e0efce04f77c0a458e3" + }, + "recipe": { + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5", + "deps": [] + }, + "aurel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alezost", + "repo": "aurel", + "sha256": "01ig5v5f2xya7hyq678nd8j8x972yfbni813c0imxkkba996a2k7", + "rev": "3458214e0d2942b03c2926de67ca06cbe42b37d0" + }, + "recipe": { + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [] + }, + "anaconda-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "anaconda-mode", + "sha256": "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714", + "rev": "2ad7c1ee5b786d900154982270e4c68a4fe5b404" + }, + "recipe": { + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4", + "deps": [ + "js2-mode" + ] + }, + "drag-stuff": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "drag-stuff", + "sha256": "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5", + "rev": "3265e4fe93323bc9089d12db3d466d49bc44a99d" + }, + "recipe": { + "sha256": "0hzbh58ijv1akamav8r0zs76pwda2zd9mjaj31ffalzhhsm5jnyc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "clocker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "clocker.el", + "sha256": "1s05644m048clz0lxizzgarh1bkyjxr96b0mbpxi2p003322aw09", + "rev": "6faf5a23dc9cbe506f21a11fae4f6c4bbb1d4b01" + }, + "recipe": { + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.10", + "deps": [ + "dash", + "projectile" + ] + }, + "instapaper": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/jfm/emacs-instapaper", + "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8", + "rev": "8daa0058ede7" + }, + "recipe": { + "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.5", + "deps": [] + }, + "tracking": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "circe", + "sha256": "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q", + "rev": "ac1cddf946e0af90ab453dd816f7173e0d4000e5" + }, + "recipe": { + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1", + "deps": [] + }, + "whitaker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "whitaker", + "sha256": "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4", + "rev": "28172edce0f727f0f7f17d8ba71d5510d877bb45" + }, + "recipe": { + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "dash" + ] + }, + "company": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "company-mode", + "repo": "company-mode", + "sha256": "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0", + "rev": "e085a333867959a1b36015a3ad8e12e5bd6550d9" + }, + "recipe": { + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "elscreen-mew": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "elscreen-mew", + "sha256": "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh", + "rev": "f66a2a5a8dd904791ede5133fdd183522b061bba" + }, + "recipe": { + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [ + "elscreen" + ] + }, + "helm-backup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "helm-backup", + "sha256": "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76", + "rev": "184026b9fe454aab8e7730106b4ca494fe307769" + }, + "recipe": { + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [ + "cl-lib", + "helm", + "s" + ] + }, + "rinari": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "eschulte", + "repo": "rinari", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk", + "rev": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135" + }, + "recipe": { + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "egison-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "egisatoshi", + "repo": "egison3", + "sha256": "16m7h477z10bmaymmgpj2id6l98iyrsp5wf69wd56534kh6qcajg", + "rev": "6debb5f36074811a1b2f9c9741dc8c1f3bd869de" + }, + "recipe": { + "sha256": "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.5.10", + "deps": [] + }, + "ido-occur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-occur", + "sha256": "1xv8bryinn9qhjjxaxci4jnmz87jdm4nnhghl5lbpy7vzbhij490", + "rev": "13dc79ac2bb148b9fcbb470509a06ad1cb7008bb" + }, + "recipe": { + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "dash", + "ido-vertical-mode" + ] + }, + "outshine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "outshine", + "sha256": "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98", + "rev": "cf1097692b3ea0367d3c821769399fec5831e200" + }, + "recipe": { + "sha256": "1i8c3q6n9hpfbpg2f8n8brwgaq36af1jn3g5js88yiyyb5dknxq4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "ack-menu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chumpage", + "repo": "ack-menu", + "sha256": "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f", + "rev": "37e9979eb65e3803fc00829377397b4e6f2bd059" + }, + "recipe": { + "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.3", + "deps": [] + }, + "golden-ratio": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "roman", + "repo": "golden-ratio.el", + "sha256": "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm", + "rev": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d" + }, + "recipe": { + "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "evil-mark-replace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-mark-replace", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv", + "rev": "56cf191724a3e82239ca47a17b071c20aedb0617" + }, + "recipe": { + "sha256": "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "direx" + ] + }, + "cmake-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Kitware", + "repo": "CMake", + "sha256": "054i416l7kwdnwlb55ya89zpnsyxg9h4b2ll3d4dhx2qpph7w9s2", + "rev": "fd7180f0c0c2554c31afda235469df986a109fe4" + }, + "recipe": { + "sha256": "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.4.1", + "deps": [] + }, + "interleave": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rudolfochrist", + "repo": "interleave", + "sha256": "1bidhc4pgszx2gqsm125nw7i5ysy0mzc1ifcfkfgns1cpjr74rpn", + "rev": "d7bfe03dfdfbdd2abd0a96174cacd2ef1ecd2041" + }, + "recipe": { + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "eyebrowse": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "eyebrowse", + "sha256": "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7", + "rev": "6d75409a81a6447765ad2171e3d0b5a272e1f207" + }, + "recipe": { + "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.9", + "deps": [ + "dash", + "emacs" + ] + }, + "speech-tagger": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cosmicexplorer", + "repo": "speech-tagger", + "sha256": "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3", + "rev": "e6595bd0eea93ede1534c536c1746c9cf763b73c" + }, + "recipe": { + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [] + }, + "git-link": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sshaw", + "repo": "git-link", + "sha256": "171w8vx1r2v9yclnlk3mwbfaxhg0kbvk575jvi6vr9shpjqnrb0z", + "rev": "8ed8f209fe40b3852613691bd968484d6da79e5b" + }, + "recipe": { + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2", + "deps": [] + }, + "aes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sauermann", + "repo": "emacs-aes", + "sha256": "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2", + "rev": "d78796facc034b09f379cda5f27090f3139305ec" + }, + "recipe": { + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [] + }, + "orgit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "orgit", + "sha256": "0d7rh5bi5v04njj1nh8q8kdr6aw68lcw4ghx6kwq97aff4qmcrp1", + "rev": "731c5cb4f1c7e2ee5b819ca159c0c01e2b306c73" + }, + "recipe": { + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "pkg-info": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "pkg-info.el", + "sha256": "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1", + "rev": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e" + }, + "recipe": { + "sha256": "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6", + "deps": [ + "epl" + ] + }, + "evil-space": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-space", + "sha256": "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk", + "rev": "f77860fa00662e2def3e1885adac777f051e1e61" + }, + "recipe": { + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.6", + "deps": [ + "evil" + ] + }, + "wcheck-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tlikonen", + "repo": "wcheck-mode", + "sha256": "1l92k59yvdfhmj4yghcl5bqprynavr3s28v7h8y98v82laxp2q9m", + "rev": "866954f040217059607633cf4c0f5e8a1ff5fd9a" + }, + "recipe": { + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2015.11.29", + "deps": [] + }, + "overseer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tonini", + "repo": "overseer.el", + "sha256": "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx", + "rev": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba" + }, + "recipe": { + "sha256": "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "dash", + "emacs", + "pkg-info" + ] + }, + "win-switch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "genovese", + "repo": "win-switch", + "sha256": "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i", + "rev": "a0da96c23e8775a2dfdbe55ed3ec5b57f1ebb26a" + }, + "recipe": { + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "nrepl-sync": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "phillord", + "repo": "lein-sync", + "sha256": "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy", + "rev": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b" + }, + "recipe": { + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [ + "cider" + ] + }, + "erefactor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-erefactor", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i", + "rev": "fde3fd42c815c76e8015f69518a92f6bfcfde990" + }, + "recipe": { + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [] + }, + "mentor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skangas", + "repo": "mentor", + "sha256": "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf", + "rev": "bd8e4b89341686bbaf4c44680bbae778b96fb8f0" + }, + "recipe": { + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "ac-alchemist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-alchemist", + "sha256": "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5", + "rev": "31114f3e1e7cc1e101d0b81819d7876d8861df92" + }, + "recipe": { + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "which-key": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "justbur", + "repo": "emacs-which-key", + "sha256": "11mi23djk690n4984hk3pv61rrkdnxpkmywsqibi3xki27v2al36", + "rev": "ad60a6c7206752d9b9cf4ba17c2293dba365e9fb" + }, + "recipe": { + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "emacs" + ] + }, + "esxml": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tali713", + "repo": "esxml", + "sha256": "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p", + "rev": "cd096242fadbf878d9428786306e54ed60522b43" + }, + "recipe": { + "sha256": "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [ + "kv" + ] + }, + "fwb-cmds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "fwb-cmds", + "sha256": "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm", + "rev": "93504c2022799a84cc14d598e1413f8d9df4ee0e" + }, + "recipe": { + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.0", + "deps": [] + }, + "notmuch-labeler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "DamienCassou", + "repo": "notmuch-labeler", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18", + "rev": "d65d1129555d368243df4770ecc1e7ccb88efc58" + }, + "recipe": { + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "spaceline": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "TheBB", + "repo": "spaceline", + "sha256": "1xyhayzr2mbsq9w448bxy7ja9cgy3vrgh70w36nqrrkl1pi7lm3b", + "rev": "2cc31a94b8b8c3eefc81ab409071365d120d2535" + }, + "recipe": { + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [] + }, + "gscholar-bibtex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gscholar-bibtex", + "sha256": "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk", + "rev": "00b32521de3aa689bc58516ae10ba7f3ef1b6c92" + }, + "recipe": { + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [] + }, + "anyins": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "antham", + "repo": "anyins", + "sha256": "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721", + "rev": "1ff4673ca197c9bf64c65f718573bf7d478fc562" + }, + "recipe": { + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.6", + "deps": [] + }, + "google-this": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "emacs-google-this", + "sha256": "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x", + "rev": "879ab00f6b5584cfe327eb1c04cd9ff2323b3b11" + }, + "recipe": { + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10", + "deps": [ + "emacs" + ] + }, + "dired-fdclone": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "dired-fdclone.el", + "sha256": "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0", + "rev": "8144c013d46c55b0471f31cdc3b5ead303286cbf" + }, + "recipe": { + "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.7", + "deps": [ + "emacs", + "epl" + ] + }, + "emacsc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "emacsc", + "sha256": "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j", + "rev": "69607bdc3a0c070e924a3bcac93180f917992368" + }, + "recipe": { + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.20131027", + "deps": [] + }, + "fuzzy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "auto-complete", + "repo": "fuzzy-el", + "sha256": "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss", + "rev": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c" + }, + "recipe": { + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "evil-snipe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hlissner", + "repo": "evil-snipe", + "sha256": "143lgpvbjrddbgnyh9dfdhjj0gp69slv4fkiq53czz85ffwli5ig", + "rev": "9df049eb83789ea5711632672e077cebf4c54e14" + }, + "recipe": { + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "jedi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tkf", + "repo": "emacs-jedi", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7", + "rev": "8da022c8cda511428c72a6dc4c5be3c0a0c88584" + }, + "recipe": { + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.7", + "deps": [ + "auto-complete", + "emacs", + "jedi-core" + ] + }, + "cask-package-toolset": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "cask-package-toolset.el", + "sha256": "0a2cyx80w2ijp6v6jngahqc0df5vjaf71wm6kq55p0ws511h7184", + "rev": "22f0c0bbc89d68004af5c6fcb5a6bda2591ed187" + }, + "recipe": { + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.0", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1", + "deps": [] + }, + "grin": { + "fetch": { + "tag": "fetchhg", + "url": "https://bitbucket.com/dariusp686/emacs-grin", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2", + "rev": "f541aa22da52" + }, + "recipe": { + "sha256": "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "window-numbering": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "window-numbering.el", + "sha256": "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64", + "rev": "653afce73854d629c2b9d63dad73126032d6a24c" + }, + "recipe": { + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.2", + "deps": [] + }, + "company-math": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vspinu", + "repo": "company-math", + "sha256": "009f0p0sggfn0yz7sivkcv8zygvv4ssbwqykbxgdxh9n6zk4hjky", + "rev": "e82c91d960f9418774959f299d0e064fcb6ba0ad" + }, + "recipe": { + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [ + "company", + "math-symbol-lists" + ] + }, + "minibuffer-complete-cycle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-complete-cycle", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk", + "rev": "3df80135887d0169e02294a948711f6dfeca4a6f" + }, + "recipe": { + "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.25.20130814", + "deps": [] + }, + "imgix": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "imgix", + "repo": "imgix-emacs", + "sha256": "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd", + "rev": "cf3994f69b34a36f627e9ceaf3e6f4309ee9ec30" + }, + "recipe": { + "sha256": "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "fixmee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "fixmee", + "sha256": "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0", + "rev": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74" + }, + "recipe": { + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.6", + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ] + }, + "relax": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "relax.el", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66", + "rev": "6e33892623ab87833082262321dc8e1977209626" + }, + "recipe": { + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "json" + ] + }, + "omni-kill": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AdrieanKhisbe", + "repo": "omni-kill.el", + "sha256": "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady", + "rev": "8a1145b58b4736c9163bcd5b28c8fea80b2ea97b" + }, + "recipe": { + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.3", + "deps": [] + }, + "git": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "git.el", + "sha256": "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5", + "rev": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a" + }, + "recipe": { + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "browse-url-dwim": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "browse-url-dwim", + "sha256": "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y", + "rev": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30" + }, + "recipe": { + "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.8", + "deps": [ + "string-utils" + ] + }, + "emmet-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "smihica", + "repo": "emmet", + "sha256": "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi", + "rev": "bf76d717c60f33d223cdac35513105e9f9244885" + }, + "recipe": { + "sha256": "0w5nnhha70mndpk2a58raaxqanv868z05mfy1a8prgapm56mm819", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.8", + "deps": [] + }, + "edbi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-edbi", + "sha256": "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s", + "rev": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2" + }, + "recipe": { + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [ + "concurrent", + "ctable", + "epc" + ] + }, + "markdown-toc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "markdown-toc", + "sha256": "0jgr327qlh7acwi6sld27xdsvr89parspk6wmfklwszvy1v13633", + "rev": "c2ac578113015ba7d3377c0756a4d00c61ba2e17" + }, + "recipe": { + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.9", + "deps": [ + "dash", + "markdown-mode", + "s" + ] + }, + "ac-html": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cheunghy", + "repo": "ac-html", + "sha256": "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz", + "rev": "415a78c3b84855b0c0411832d21a0fb63239b184" + }, + "recipe": { + "sha256": "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.0", + "deps": [ + "emacs" + ] + }, + "eldoc-eval": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "eldoc-eval", + "sha256": "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk", + "rev": "deca5e39f31282a06531002d289258cd099433c0" + }, + "recipe": { + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "elm-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jcollard", + "repo": "elm-mode", + "sha256": "055bnhkw0nvry3n20a980nrq3y2rlihp59pmrm1s4rlb0f5drckc", + "rev": "3462740eb2add23fc294aa5b2b549ee08f5f711e" + }, + "recipe": { + "sha256": "18hky1d1d2q5paz271w17r6n1k2sb7rrski8dxq3q586k4lqykj2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.3", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.8", + "deps": [ + "helm" + ] + }, + "wispjs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "wispjs-mode", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x", + "rev": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f" + }, + "recipe": { + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "clojure-mode" + ] + }, + "neotree": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jaypei", + "repo": "emacs-neotree", + "sha256": "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n", + "rev": "c4f32b489fb1f5f00897a7dbb58a27ee704f5493" + }, + "recipe": { + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [] + }, + "magit-topgit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-topgit", + "sha256": "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33", + "rev": "732de604c31c74e9da24616428c6e9668b57c881" + }, + "recipe": { + "sha256": "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.1", + "deps": [ + "emacs", + "magit" + ] + }, + "express": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "express", + "sha256": "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y", + "rev": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60" + }, + "recipe": { + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "emr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "emacs-refactor", + "sha256": "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4", + "rev": "fd20fc1887e2ebcf752f0170b1f3bf697043fd4b" + }, + "recipe": { + "sha256": "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "dash", + "json", + "popup", + "s" + ] + }, + "typo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "typoel", + "sha256": "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2", + "rev": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972" + }, + "recipe": { + "sha256": "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "foreman-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "foreman-mode", + "sha256": "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9", + "rev": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb" + }, + "recipe": { + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.1", + "deps": [] + }, + "direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "direx-el", + "sha256": "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f", + "rev": "423caeed13249e37afc937dc8134cb3c53e0f111" + }, + "recipe": { + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "yaxception": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "yaxception", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8", + "rev": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875" + }, + "recipe": { + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.3", + "deps": [] + }, + "haskell-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "haskell", + "repo": "haskell-mode", + "sha256": "1gmpmfkr54sfzrif87zf92a1i13wx75bhp66h1rxhflg216m62yv", + "rev": "ea81bbb966a839527a786739b7628fd9cd777456" + }, + "recipe": { + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "13.16", + "deps": [ + "cl-lib" + ] + }, + "linum-relative": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "linum-relative", + "sha256": "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc", + "rev": "1074e12904d08e00dda438d9700f2a3bff238bd5" + }, + "recipe": { + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "flymake-jslint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-jslint", + "sha256": "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri", + "rev": "30693f75059bab53a9d2eb676c68751f4d8b091c" + }, + "recipe": { + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.23", + "deps": [] + }, + "org-bullets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sabof", + "repo": "org-bullets", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w", + "rev": "b70ac2ec805bcb626a6e39ea696354577c681b36" + }, + "recipe": { + "sha256": "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.4", + "deps": [] + }, + "org-projectile": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "IvanMalison", + "repo": "org-projectile", + "sha256": "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6", + "rev": "c2141ac997f4af49257595bab88adb9dd7b9b700" + }, + "recipe": { + "sha256": "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "dash", + "projectile" + ] + }, + "flyspell-popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "flyspell-popup", + "sha256": "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic", + "rev": "a3890c9272c0cfa1e2cde6526f7d6280ad4af00c" + }, + "recipe": { + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "popup" + ] + }, + "pyvenv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "pyvenv", + "sha256": "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z", + "rev": "5c48de2419ddf10c00e38f5940ed97a84c43f1ce" + }, + "recipe": { + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.9", + "deps": [] + }, + "persp-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Bad-ptr", + "repo": "persp-mode.el", + "sha256": "129cl5az4rr5j7krpyyi5khhbl8klw7ji9ysarz0s7ivy096jq7b", + "rev": "00e5f345f13b2b9e615082ac9ccbfd076592cc22" + }, + "recipe": { + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.7", + "deps": [] + }, + "fuel": { + "fetch": { + "tag": "fetchgit", + "url": "git://factorcode.org/git/factor.git", + "sha256": "b348e285923e480fe696f888783c95becb392a6e05abc553d8be649987c7d190", + "rev": "905ec06d864537fb6be9c46ad98f1b6d101dfbf0" + }, + "recipe": { + "sha256": "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.96", + "deps": [] + }, + "helm-core": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm", + "sha256": "0awr4nvzgp1kckxqli1xw4pk16gc22i8hchin63fqvk0gllcy454", + "rev": "fe96a398aa09ed0d25f6782efa5833085aa63791" + }, + "recipe": { + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.9.1", + "deps": [ + "async", + "cl-lib", + "emacs" + ] + }, + "wonderland": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kurisuwhyte", + "repo": "emacs-wonderland", + "sha256": "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc", + "rev": "28cf6b37000c395ece9519db53147fb826a42bc4" + }, + "recipe": { + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.7", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "dionysos": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nlamirault", + "repo": "dionysos", + "sha256": "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w", + "rev": "92578e813b92c8aae12948b44e0c7757cc9b3d9b" + }, + "recipe": { + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "7.9.3.5", + "deps": [] + }, + "annotate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bastibe", + "repo": "annotate.el", + "sha256": "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s", + "rev": "a1690384317ce366e5a33aec916949e3328a0117" + }, + "recipe": { + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.4", + "deps": [] + }, + "zerodark-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "zerodark-theme", + "sha256": "1pxy6ia7di3i5kigybkz78f7fgbsyr1js9asrfbbx3kkpxpm2vfc", + "rev": "5f7e16b35b2b42e4a286ca0cece4766a69cd7321" + }, + "recipe": { + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "flx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lewang", + "repo": "flx", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc", + "rev": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c" + }, + "recipe": { + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.1", + "deps": [ + "cl-lib" + ] + }, + "hardhat": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "hardhat", + "sha256": "0mbdnsm903s380ajjgjjqa0m4mxsddzqfjdafrngy0pxgs16iv1f", + "rev": "fa42fa4a07dc59f253950c5a8aa5257263a41cdf" + }, + "recipe": { + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "sexp-move": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "elzair", + "repo": "sexp-move", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m", + "rev": "117f7a91ab7c25e438413753e916570122011ce7" + }, + "recipe": { + "sha256": "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.6", + "deps": [] + }, + "mc-extras": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "mc-extras.el", + "sha256": "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1", + "rev": "71cf966be06d9c74e781a87bb30fa4cf657ee852" + }, + "recipe": { + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [] + }, + "test-kitchen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jjasghar", + "repo": "test-kitchen-el", + "sha256": "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn", + "rev": "9464c7dda14020099053218e959971117396091e" + }, + "recipe": { + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [] + }, + "thrift": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "apache", + "repo": "thrift", + "sha256": "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii", + "rev": "53dd39833a08ce33582e5ff31fa18bb4735d6731" + }, + "recipe": { + "sha256": "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.3", + "deps": [] + }, + "better-defaults": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "better-defaults", + "sha256": "09cn3dnaq88jwmmxfg76168s8f4wbmp6y2dv13rhwagihx9mf20m", + "rev": "c286d55528f148733c696fe07eb01073dc412fb8" + }, + "recipe": { + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [] + }, + "plsense-direx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "plsense-direx", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1", + "rev": "8a2f465264c74e04524cc789cdad0190ace43f6c" + }, + "recipe": { + "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ] + }, + "stgit": { + "fetch": { + "tag": "fetchgit", + "url": "git://repo.or.cz/stgit.git", + "sha256": "12c5df549d653c8ec3476ed271a4e9a4065a61a467229c070bb2e6295e285e16", + "rev": "48e5cef14cea5c810833d119900cd484c2a6ca85" + }, + "recipe": { + "sha256": "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.0", + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ] + }, + "common-lisp-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "common-lisp-snippets", + "sha256": "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad", + "rev": "3b2b50fda8b1526d45a74e3d30f560d6b6bbb284" + }, + "recipe": { + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "yasnippet" + ] + }, + "apples-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tequilasunset", + "repo": "apples-mode", + "sha256": "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy", + "rev": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f" + }, + "recipe": { + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.3", + "deps": [] + }, + "minitest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arthurnn", + "repo": "minitest-emacs", + "sha256": "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh", + "rev": "2bed01262b0d888473468b5c7bd7d73694d31320" + }, + "recipe": { + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.0", + "deps": [ + "dash" + ] + }, + "evil-matchit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "evil-matchit", + "sha256": "0kf4m1ghpxfalqx2zwm1d8xav4d6l6bpk79g5cvssk5jz5913fbi", + "rev": "8b80b3df9472217d55962981025539f2da603296" + }, + "recipe": { + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.2", + "deps": [] + }, + "sqlup-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "trevoke", + "repo": "sqlup-mode.el", + "sha256": "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn", + "rev": "7a51e34685c65952cd0635c3d35a36337fde361b" + }, + "recipe": { + "sha256": "06a0v2qagpd9p2bh19bfw14a6if8kjjc4yyhm5nwp8a8d2vnl5l7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.3", + "deps": [] + }, + "flycheck-gometalinter": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "favadi", + "repo": "flycheck-gometalinter", + "sha256": "1ypa4x096wlvgl5nak8sgpgxslv3px3f21mmvqjb4p1sc8vbbb1p", + "rev": "554a806e9ad6ddb6299bcfe469dd7d20cf98b473" + }, + "recipe": { + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.6.5", + "deps": [ + "dash", + "f", + "s" + ] + }, + "extend-dnd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "extend-dnd", + "sha256": "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d", + "rev": "a1923d57f8f5e862cc66c189b5e6627bc84a2119" + }, + "recipe": { + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [] + }, + "ac-haskell-process": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-haskell-process", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41", + "rev": "0362d4323511107ec70e7165cb612f3ab01b712f" + }, + "recipe": { + "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "cl-lib" + ] + }, + "flymake-less": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-less", + "sha256": "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z", + "rev": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893" + }, + "recipe": { + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "less-css-mode" + ] + }, + "malinka": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "LefterisJP", + "repo": "malinka", + "sha256": "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97", + "rev": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1" + }, + "recipe": { + "sha256": "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "helm" + ] + }, + "subemacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kbauer", + "repo": "subemacs", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362", + "rev": "24f0896f1995a3ea42a58b0452d250dcc6802944" + }, + "recipe": { + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.0", + "deps": [ + "dash", + "magit" + ] + }, + "ace-isearch": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tam17aki", + "repo": "ace-isearch", + "sha256": "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9", + "rev": "7e041d058492c5c35ec70de0e7c5586043e7e5ec" + }, + "recipe": { + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "enlive": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zweifisch", + "repo": "enlive", + "sha256": "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63", + "rev": "60facaf8bc48b660d209551c0ce4d17e5c907ab8" + }, + "recipe": { + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [] + }, + "rake": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "asok", + "repo": "rake", + "sha256": "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq", + "rev": "a9e65cb23d3dc700f5b41ff365153ef6a259d4f0" + }, + "recipe": { + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "mu4e-maildirs-extension": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "agpchil", + "repo": "mu4e-maildirs-extension", + "sha256": "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx", + "rev": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528" + }, + "recipe": { + "sha256": "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [] + }, + "move-dup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wyuenho", + "repo": "move-dup", + "sha256": "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2", + "rev": "4df67072eebac69d6be7619335b03f56f9960235" + }, + "recipe": { + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [] + }, + "stash": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "stash.el", + "sha256": "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4", + "rev": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19" + }, + "recipe": { + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.1", + "deps": [] + }, + "autopair": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "capitaomorte", + "repo": "autopair", + "sha256": "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq", + "rev": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39" + }, + "recipe": { + "sha256": "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "mocker": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sigma", + "repo": "mocker.el", + "sha256": "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2", + "rev": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c" + }, + "recipe": { + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [ + "eieio", + "el-x" + ] + }, + "pungi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mgrbyte", + "repo": "pungi", + "sha256": "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm", + "rev": "41c9f8b7795e083bfd63ba0d06c789c250998723" + }, + "recipe": { + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [ + "jedi", + "pyvenv" + ] + }, + "colorsarenice-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fanael", + "repo": "colorsarenice-theme", + "sha256": "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia", + "rev": "3cae55d0c7aeda3a8ef731ebc3886b2449ad87e6" + }, + "recipe": { + "sha256": "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.20", + "deps": [ + "emacs" + ] + }, + "ace-jump-buffer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-buffer", + "sha256": "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs", + "rev": "41f8bb0744cdf9c219d25b417f2ffbd0883469e7" + }, + "recipe": { + "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "ac-octave": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "coldnew", + "repo": "ac-octave", + "sha256": "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf", + "rev": "eb6463631a69dfd06fe750c1c155594d11de0590" + }, + "recipe": { + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "auto-complete" + ] + }, + "ansi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ansi", + "sha256": "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g", + "rev": "a042c5954453bab9a74177e2b78ad17a824caebc" + }, + "recipe": { + "sha256": "04n0kvaqq8214prdk20bplqyzlsnlzfzsg23ifkrzjgqjjpdcyi1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.1", + "deps": [ + "dash", + "s" + ] + }, + "ido-describe-bindings": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "danil", + "repo": "ido-describe-bindings", + "sha256": "1xd86jx6j5livsdsplq5yawz1wmkflkvnjmccjjlcy8f5ncl80ax", + "rev": "2076b7e8a418008fb503357df2f0f99de3d9aa1d" + }, + "recipe": { + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.6", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "elixir-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "elixir-lang", + "repo": "emacs-elixir", + "sha256": "07kgzdla31nc146xya21rn4hyr76h5lyabla8yh4qjsvnknb7cbj", + "rev": "bfc95d9d444bf4002d340d37ad30954dd86c0e94" + }, + "recipe": { + "sha256": "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2.8", + "deps": [ + "emacs", + "pkg-info" + ] + }, + "hookify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "hookify", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc", + "rev": "e76127230716f7fab6662410c03c3872d17a172b" + }, + "recipe": { + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.1", + "deps": [ + "dash", + "s" + ] + }, + "gntp": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "gntp.el", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a", + "rev": "767571135e2c0985944017dc59b0be79af222ef5" + }, + "recipe": { + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "github-browse-file": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "osener", + "repo": "github-browse-file", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578", + "rev": "fa5cc00a40869430fb44596792961a4cddf9c265" + }, + "recipe": { + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [ + "cl-lib" + ] + }, + "diminish": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrjola", + "repo": "diminish.el", + "sha256": "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6", + "rev": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65" + }, + "recipe": { + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.4", + "deps": [ + "easy-kill" + ] + }, + "projekt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tekai", + "repo": "projekt", + "sha256": "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88", + "rev": "107232c191375b59d065354470d0af83062e2a4c" + }, + "recipe": { + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "ranger": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ralesi", + "repo": "ranger.el", + "sha256": "0fkj89p0rb0r472p1rk8xpx8c74pg968pc2mmw3838y4fpc8i198", + "rev": "4b778da7aafe1dc4077a3c891ae918eae929fae6" + }, + "recipe": { + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.7", + "deps": [ + "emacs" + ] + }, + "yascroll": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "m2ym", + "repo": "yascroll-el", + "sha256": "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz", + "rev": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629" + }, + "recipe": { + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "flycheck-ledger": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flycheck-ledger", + "sha256": "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6", + "rev": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e" + }, + "recipe": { + "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "flycheck" + ] + }, + "killer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "killer", + "sha256": "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l", + "rev": "52256640aebbb8c25f8527843c2425b848031cd8" + }, + "recipe": { + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.2", + "deps": [] + }, + "flycheck-tip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yuutayamada", + "repo": "flycheck-tip", + "sha256": "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s", + "rev": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e" + }, + "recipe": { + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [ + "emacs", + "flycheck", + "popup" + ] + }, + "tablist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "politza", + "repo": "tablist", + "sha256": "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns", + "rev": "ef38312867bc0268b1584dd890b1c420bb77ec11" + }, + "recipe": { + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.70", + "deps": [ + "emacs" + ] + }, + "iedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "victorhge", + "repo": "iedit", + "sha256": "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm", + "rev": "b95c35107a429d63b99f888b52eb0f74105d0da0" + }, + "recipe": { + "sha256": "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.9", + "deps": [] + }, + "term-alert": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-alert", + "sha256": "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g", + "rev": "879ea638120639299aae602f06c46d9c27312ff1" + }, + "recipe": { + "sha256": "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.1", + "deps": [] + }, + "weather-metno": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ruediger", + "repo": "weather-metno-el", + "sha256": "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z", + "rev": "b59680c1ab908b32513954034ba894dfb8564dd8" + }, + "recipe": { + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.2", + "deps": [] + }, + "anzu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-anzu", + "sha256": "1d2laybz1igrr9nnkmfsnrvsjw7qmrgby4wnrxprins9gq263lra", + "rev": "6fded24b366efc4cf27166104c1928f7d1fedaa7" + }, + "recipe": { + "sha256": "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "writegood-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bnbeckwith", + "repo": "writegood-mode", + "sha256": "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b", + "rev": "4302169c1563cab9319745083f9b9a7f5f4af0bd" + }, + "recipe": { + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0.2", + "deps": [] + }, + "simpleclip": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "simpleclip", + "sha256": "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v", + "rev": "eba19a21da2e4d1e11abdc158f72d6513afaa669" + }, + "recipe": { + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "pallet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "pallet", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw", + "rev": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501" + }, + "recipe": { + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "emacs", + "org" + ] + }, + "rcirc-styles": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aaron-em", + "repo": "rcirc-styles.el", + "sha256": "1f4jy4mndf1m1j9y23mvsvlp732zd2f17khr82lbbfmsxnwzjyq5", + "rev": "47b4b289acf4c5839fa463207223a52649a3f574" + }, + "recipe": { + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [ + "cl-lib" + ] + }, + "yatemplate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mineo", + "repo": "yatemplate", + "sha256": "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8", + "rev": "a49a218b6fcfbbf6e51021be78aee6d3b220e3f6" + }, + "recipe": { + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "yasnippet" + ] + }, + "nginx-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ajc", + "repo": "nginx-mode", + "sha256": "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38", + "rev": "8a296e30b01adbc40d1aa9ccde369a972ac5ceab" + }, + "recipe": { + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.4", + "deps": [] + }, + "emoji-fontset": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zonuexe", + "repo": "emoji-fontset.el", + "sha256": "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr", + "rev": "3b8c2204284b95934383836b5b36efeefb65663b" + }, + "recipe": { + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "ergoemacs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ergoemacs", + "repo": "ergoemacs-mode", + "sha256": "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf", + "rev": "295ce7a4a5341d9e144a06e91befeebfac1239d9" + }, + "recipe": { + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "guide-key", + "pos-tip" + ] + }, + "ac-racer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-racer", + "sha256": "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl", + "rev": "2708b0a49afc89fb99a6d74a016cff6b94138ed0" + }, + "recipe": { + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "auto-complete", + "cl-lib", + "racer" + ] + }, + "nemerle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rsdn", + "repo": "nemerle", + "sha256": "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48", + "rev": "556270ce8b97668a65e9ec20a05f78c3dffeac60" + }, + "recipe": { + "sha256": "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [] + }, + "haskell-emacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.1.2", + "deps": [] + }, + "terraform-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-terraform-mode", + "sha256": "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7", + "rev": "6157690efce03ff20b16b85e2be6b0964efec2fb" + }, + "recipe": { + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "cl-lib", + "hcl-mode" + ] + }, + "elpa-audit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "elpa-audit", + "sha256": "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7", + "rev": "a7a1806278c73ea6cb6d235714e7bc8088971df5" + }, + "recipe": { + "sha256": "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "inline-crypt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sodel-the-Vociferous", + "repo": "inline-crypt-el", + "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6", + "rev": "497ce9dc29a8ccac0b6dd6854f5d120514350282" + }, + "recipe": { + "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [] + }, + "keydef": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "keydef", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv", + "rev": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0" + }, + "recipe": { + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.15", + "deps": [] + }, + "flymake-coffee": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-coffee", + "sha256": "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc", + "rev": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0" + }, + "recipe": { + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.12", + "deps": [ + "flymake-easy" + ] + }, + "magit-svn": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-svn", + "sha256": "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68", + "rev": "c6222981d4aae088d658cce5e58a14efea8590d6" + }, + "recipe": { + "sha256": "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.1.1", + "deps": [ + "emacs", + "magit" + ] + }, + "diffview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mgalgs", + "repo": "diffview-mode", + "sha256": "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6", + "rev": "471dc36af93e68849bf2da0db991e186283b3546" + }, + "recipe": { + "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "helm-cscope": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "alpha22jp", + "repo": "helm-cscope.el", + "sha256": "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c", + "rev": "b82db54071bd2d1c77db2e648f8b4e61b1abe288" + }, + "recipe": { + "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "babel": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "juergenhoetzel", + "repo": "babel", + "sha256": "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7", + "rev": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f" + }, + "recipe": { + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4", + "deps": [] + }, + "helm-firefox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-firefox", + "sha256": "0xzwnfkz22ljgwfb1lwsfpdj1nhhp1w9f7hsrbqsg2c16rvmkqj4", + "rev": "8be9312e8751dce73c7cdbd33a525bbbbff1736f" + }, + "recipe": { + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "textmate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "defunkt", + "repo": "textmate.el", + "sha256": "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1", + "rev": "484845493a3c9b570799aea5195a5435a5a01b76" + }, + "recipe": { + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1", + "deps": [] + }, + "flycheck-clojure": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "squiggly-clojure", + "sha256": "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx", + "rev": "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298" + }, + "recipe": { + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.3", + "deps": [ + "cider", + "emacs", + "flycheck", + "let-alist" + ] + }, + "el-autoyas": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "el-autoyas.el", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n", + "rev": "bde0251ecb504f585dfa27c205c8e312655310cc" + }, + "recipe": { + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "haskell-emacs-base": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knupfer", + "repo": "haskell-emacs", + "sha256": "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0", + "rev": "f242ac4d0312aee5d162be82ae14b7154bb0db19" + }, + "recipe": { + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.1.2", + "deps": [ + "haskell-emacs" + ] + }, + "ert-async": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "ert-async.el", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9", + "rev": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526" + }, + "recipe": { + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.21", + "deps": [] + }, + "dracula-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenorocha", + "repo": "dracula-theme", + "sha256": "1x7hyj5qi9f222zwhwjqr98zzcvqjqfwxlglph8nsbadkv4s8c3v", + "rev": "ee065fed126eecdfe33a1a578d9f1e20687d2f3a" + }, + "recipe": { + "sha256": "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [ + "emacs" + ] + }, + "elixir-yasnippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hisea", + "repo": "elixir-yasnippets", + "sha256": "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz", + "rev": "6b55c88ce483932f226b6bca0212b589d1d393ea" + }, + "recipe": { + "sha256": "0927znqd9j91wc51hdwcl2rxb66i1h549nyr1h39r13353gbwk3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "yasnippet" + ] + }, + "drupal-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "arnested", + "repo": "drupal-mode", + "sha256": "12lxqrcfv5salmcslw3kggymcwwc0lzq1b6iqd7x4zizp0sjf09s", + "rev": "cf0364cbaf727bcd21ab7c2a14cc987c49fd97d0" + }, + "recipe": { + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "emacs" + ] + }, + "list-utils": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "list-utils", + "sha256": "0dmcmvf3dxmp1f71nq5xwsdrnyb04qr14ay4ckpaca2bmi7q0x5x", + "rev": "ecd6c91c71e37734af9ff4df003cb96b9d236a97" + }, + "recipe": { + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.2", + "deps": [] + }, + "helm-ack": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-ack", + "sha256": "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21", + "rev": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118" + }, + "recipe": { + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.13", + "deps": [ + "cl-lib", + "helm" + ] + }, + "packed": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "packed", + "sha256": "0k5l0l4vjw38r911zd9c9cv015vpw2y8abp82s2s9pm8nqc3bnci", + "rev": "478613da38b0a47f4419acc50017ac871433b13c" + }, + "recipe": { + "sha256": "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "dash" + ] + }, + "cliphist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "redguardtoo", + "repo": "cliphist", + "sha256": "11c0zpk8gg70d4xiiyjc7v13knwb2ihbrxnlaxzh3rdg2c12676q", + "rev": "c0db2da95fa3d3a58160f465c636989bb4b251d5" + }, + "recipe": { + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.1.2", + "deps": [ + "haskell-emacs" + ] + }, + "synosaurus": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rootzlevel", + "repo": "synosaurus", + "sha256": "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2", + "rev": "56efdc38952b9bd56a445591fcdeb626aede8678" + }, + "recipe": { + "sha256": "16i2ag4l824h1kq4cy01zf01zrms4v6ldwlsixwfyb1mh97lqljg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "dash", + "emacs", + "flycheck" + ] + }, + "ph": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gromnitsky", + "repo": "ph", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p", + "rev": "ed45c371642e313810b56c45af08fdfbd71a7dfe" + }, + "recipe": { + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "es-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dakrone", + "repo": "es-mode", + "sha256": "105ydizdlak951kfr5mjmk7vkqfkj6r1z0gs5ldz1g19wwc7rhjk", + "rev": "bee766109b8da1bba925d6998ef288b8a55f3c8f" + }, + "recipe": { + "sha256": "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "4.0.0", + "deps": [] + }, + "flymake-ruby": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-ruby", + "sha256": "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0", + "rev": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d" + }, + "recipe": { + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "flymake-easy" + ] + }, + "commander": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "commander.el", + "sha256": "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45", + "rev": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9" + }, + "recipe": { + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.0", + "deps": [] + }, + "gmpl-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "gmpl-mode", + "sha256": "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1", + "rev": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71" + }, + "recipe": { + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "back-button": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "back-button", + "sha256": "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf", + "rev": "c7b50a3e087a8dc5588d7292379cd387a1afff87" + }, + "recipe": { + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.3", + "deps": [] + }, + "mediawiki": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hexmode", + "repo": "mediawiki-el", + "sha256": "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3", + "rev": "f8f95722193cb74da2f6a01a0e558707c9b8c46d" + }, + "recipe": { + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.2.5", + "deps": [] + }, + "helm-pydoc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-helm-pydoc", + "sha256": "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs", + "rev": "30f1814b5b16db0413ffe74b0d0420b38e153df9" + }, + "recipe": { + "sha256": "0cnbhjw951f8sci63cvzcc65d0ffdx3rb8l1g38qql5rzkam48fn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [ + "cl-lib", + "helm-core" + ] + }, + "org-pdfview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "org-pdfview", + "sha256": "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj", + "rev": "c1ca137ef90e442592ce88ef16437dc7dfa9c5dd" + }, + "recipe": { + "sha256": "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "org", + "pdf-tools" + ] + }, + "pushbullet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "theanalyst", + "repo": "revolver", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym", + "rev": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445" + }, + "recipe": { + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.2", + "deps": [ + "grapnel", + "json" + ] + }, + "artbollocks-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sachac", + "repo": "artbollocks-mode", + "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91", + "rev": "583c7048a1b09cd79554423d5115f5ddd129d190" + }, + "recipe": { + "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "cl-lib", + "org" + ] + }, + "elpy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "elpy", + "sha256": "0kzara7r6gvgf3p06xswxbhq01dbhmwx1pldx3mmv7knvm2mdxq8", + "rev": "96fa05708629600fd79c4b0fcafe63ec97f5ce07" + }, + "recipe": { + "sha256": "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "avy-zap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cute-jumper", + "repo": "avy-zap", + "sha256": "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309", + "rev": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239" + }, + "recipe": { + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.4", + "deps": [ + "avy" + ] + }, + "inf-ruby": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "inf-ruby", + "sha256": "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz", + "rev": "d130ede56a1203d0aa1c8e5bca5fedbfb14e7ce8" + }, + "recipe": { + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.4.0", + "deps": [] + }, + "dictionary": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myrkr", + "repo": "dictionary-el", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s", + "rev": "9ef1672ecd367827381bbbc9af93685980083c5c" + }, + "recipe": { + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10", + "deps": [] + }, + "cl-lib-highlight": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "cl-lib-highlight", + "sha256": "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw", + "rev": "c117451df8455769701af6c8e92a8fb29c05e1fa" + }, + "recipe": { + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.15", + "deps": [ + "emacs" + ] + }, + "checkbox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "camdez", + "repo": "checkbox.el", + "sha256": "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj", + "rev": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1" + }, + "recipe": { + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "emacs" + ] + }, + "opam": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "opam.el", + "sha256": "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8", + "rev": "83fb2850d29ec792754e0af18b015e089aad2695" + }, + "recipe": { + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "emacs" + ] + }, + "ycmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "06psmcr5132vn72l0amzj14dy43aradnbmlvvms55srvici6r60q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.2", + "deps": [ + "esxml" + ] + }, + "gitattributes-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "git-modes", + "sha256": "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd", + "rev": "9d8f6eda6ee97963e4085da8988cad2c0547b8df" + }, + "recipe": { + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [] + }, + "emojify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "emacs-emojify", + "sha256": "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp", + "rev": "fec788f09ab1c131b89f296ebd3e73df97e96cfe" + }, + "recipe": { + "sha256": "15v2h5jfksfc208qphiczplg56yka07qv4w4482c10yzwq76zp17", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "emacs", + "ht", + "seq" + ] + }, + "sx": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "vermiculus", + "repo": "sx.el", + "sha256": "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p", + "rev": "4892f45746fb217d059f4fa074a237c5bac7dd6c" + }, + "recipe": { + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "esup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "esup", + "sha256": "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z", + "rev": "f9514db82c06680c7f354a2e50c2ca66e8aa0171" + }, + "recipe": { + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "evil-rsi": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "linktohack", + "repo": "evil-rsi", + "sha256": "1ygrpffa847144i74z2yy5r5vcvd334gad5mg18ffydacddcyqmq", + "rev": "4e0cb07d0e1c2a5e463ea1ea146f019c47a29e61" + }, + "recipe": { + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.1", + "deps": [ + "evil" + ] + }, + "letcheck": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "letcheck", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn", + "rev": "e85b185993a2eaeec6490709f4c131fde2edd672" + }, + "recipe": { + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "find-file-in-repository": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "hoffstaetter", + "repo": "find-file-in-repository", + "sha256": "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md", + "rev": "8b888f85029a2ff9159a724b42aeacdb051c3420" + }, + "recipe": { + "sha256": "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [] + }, + "clojure-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mpenet", + "repo": "clojure-snippets", + "sha256": "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6", + "rev": "30cd52379b856cf80eab2b541c32b1bcdcff3db2" + }, + "recipe": { + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "helm-commandlinefu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "xuchunyang", + "repo": "helm-commandlinefu", + "sha256": "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh", + "rev": "e11cd3e961c1c4c973b51d8d12592e7235a4971b" + }, + "recipe": { + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "pcache", + "persistent-soft" + ] + }, + "elmacro": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Silex", + "repo": "elmacro", + "sha256": "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h", + "rev": "20a0d1e220984ec6079dda9419b3bb44a88edae3" + }, + "recipe": { + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "cl-lib", + "dash", + "s" + ] + }, + "helm-make": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "helm-make", + "sha256": "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya", + "rev": "6558a79d20d04465419b312da198190be6832647" + }, + "recipe": { + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "helm", + "projectile" + ] + }, + "go-autocomplete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nsf", + "repo": "gocode", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3", + "rev": "eef10fdde96a12528a6da32f51bf638b2863a3b1" + }, + "recipe": { + "sha256": "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20150303", + "deps": [ + "auto-complete" + ] + }, + "beeminder": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "sodaware", + "repo": "beeminder.el", + "sha256": "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q", + "rev": "54cc1277f2a7667a7b0d999dc49ceffcf2862b44" + }, + "recipe": { + "sha256": "0aj7ix7nrsl89f9c449kik8fbzhfk9li50wrh50cdwgfh8gda0fx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "idris-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "idris-hackers", + "repo": "idris-mode", + "sha256": "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92", + "rev": "314a0baea5752069de08e814bb134a9643fb675d" + }, + "recipe": { + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10", + "deps": [] + }, + "highlight-symbol": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nschum", + "repo": "highlight-symbol.el", + "sha256": "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6", + "rev": "6136dac6d4328c19077a838dfbae2efc4caa4db2" + }, + "recipe": { + "sha256": "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "ppd-sr-speedbar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rdallasgray", + "repo": "ppd-sr-speedbar", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq", + "rev": "19d3e924407f40a6bb38c8fe427a159af755adce" + }, + "recipe": { + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.6", + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ] + }, + "vbasense": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "emacs-vbasense", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn", + "rev": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db" + }, + "recipe": { + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ] + }, + "creds": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ardumont", + "repo": "emacs-creds", + "sha256": "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs", + "rev": "00ebefd10005c170b790a01380cb6a98f798ce5c" + }, + "recipe": { + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.0", + "deps": [] + }, + "httprepl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gregsexton", + "repo": "httprepl.el", + "sha256": "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9", + "rev": "d2de8a676544deed1a5e084631a7799e487dbe55" + }, + "recipe": { + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "editorconfig": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "editorconfig", + "repo": "editorconfig-emacs", + "sha256": "1z073j9bf31izj05k0vgpv6iwhx0k4m7ikdxgj4sd99svsv84nv9", + "rev": "3d1e4797ea3f5a1bb6d0ec296f04ce05e6e368b4" + }, + "recipe": { + "sha256": "0na5lfi9bs4k1q73pph3ff0v8k8vzrfpzh47chyzk8nxsmvklw35", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [ + "anzu", + "evil" + ] + }, + "hl-anything": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "boyw165", + "repo": "hl-anything", + "sha256": "12ab825dldiqymy4md8ssfnbbhrgczkwdiwd3llsdq6sayar16as", + "rev": "990fe4b323b6222d6c6a35898d8128cddda34848" + }, + "recipe": { + "sha256": "15n998nhirvg3f719b7x9s7jpqv6gzkr22kp4zbbq99lbx2wfc1k", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.9", + "deps": [ + "emacs" + ] + }, + "restart-emacs": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iqbalansari", + "repo": "restart-emacs", + "sha256": "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz", + "rev": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b" + }, + "recipe": { + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [] + }, + "passthword": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "passthword", + "sha256": "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi", + "rev": "58a91defdbeec9014b4e46f909a7411b3a627285" + }, + "recipe": { + "sha256": "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4", + "deps": [ + "cl-lib" + ] + }, + "s": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "s.el", + "sha256": "16b0xh2n33v9q47223rfvcvl7x08c70zaa8f62vm7yfif6mmjln9", + "rev": "b16c6641649cb79435f745863bd76aaed3da3698" + }, + "recipe": { + "sha256": "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10.0", + "deps": [] + }, + "sweetgreen": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CestDiego", + "repo": "sweetgreen.el", + "sha256": "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs", + "rev": "9de3916023872ab054e1c7301175fa27fdb1de0c" + }, + "recipe": { + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ] + }, + "javadoc-lookup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "javadoc-lookup", + "sha256": "0ljpqgp2w3lr61n2vr748n3wyshlqnnbin0643jffa319l99z35r", + "rev": "0d5316407c9ec183040ca5c6ab71091b9444276f" + }, + "recipe": { + "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "immutant-server": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leathekd", + "repo": "immutant-server.el", + "sha256": "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x", + "rev": "6f3d303354a229780a33e6bae64460a95bfefe60" + }, + "recipe": { + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2.0", + "deps": [] + }, + "git-ps1-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "10sr", + "repo": "git-ps1-mode-el", + "sha256": "073c7b64nv0623mcf7ipajkdxkgp5ff70zrndxr3830s1swk0nfk", + "rev": "fb86e89dc106e87d87ad2ae4d5ae0e52df528321" + }, + "recipe": { + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "evil-textobj-anyblock": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "evil-textobj-anyblock", + "sha256": "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj", + "rev": "068d26a625cd6202aaf70a8ff399f9130c0ffa68" + }, + "recipe": { + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "cyberpunk-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "n3mo", + "repo": "cyberpunk-theme.el", + "sha256": "12lkhlsi48wc5cy3zw57wihh9d4ixs2mcbvz9mdgjyhc2xhx3na8", + "rev": "08ac966ce38be4a3de0a6f6051b8763b5c85e534" + }, + "recipe": { + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.16", + "deps": [] + }, + "elwm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Fuco1", + "repo": "elwm", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2", + "rev": "c33b183f006ad476c3a44dab316f580f8b369930" + }, + "recipe": { + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [ + "dash" + ] + }, + "airline-themes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "AnthonyDiGirolamo", + "repo": "airline-themes", + "sha256": "0q9m7lih760p7yrpqvpxdks5h6ac7dj4fi0qviyicbjlz9mqw7wp", + "rev": "b7d06424ce7d596f5bff3105d3eaa416f173436a" + }, + "recipe": { + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [ + "powerline" + ] + }, + "shackle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "wasamasa", + "repo": "shackle", + "sha256": "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y", + "rev": "4069e0cbff0d172de2cd7d588de971d8b02915c6" + }, + "recipe": { + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.0", + "deps": [ + "cl-lib" + ] + }, + "scpaste": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "technomancy", + "repo": "scpaste", + "sha256": "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm", + "rev": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4" + }, + "recipe": { + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [ + "helm" + ] + }, + "gnuplot": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "bruceravel", + "repo": "gnuplot-mode", + "sha256": "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn", + "rev": "aefd4f671485fbcea42511ce79a7a60e5e0110a3" + }, + "recipe": { + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.0", + "deps": [] + }, + "ac-etags": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-ac-etags", + "sha256": "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2", + "rev": "8cd188b2e4908285ba8178bbd18a555edd7282e8" + }, + "recipe": { + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6", + "deps": [ + "auto-complete" + ] + }, + "rect+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "Emacs-rectplus", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj", + "rev": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc" + }, + "recipe": { + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.10", + "deps": [] + }, + "flymake-hlint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-hlint", + "sha256": "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31", + "rev": "d540e250a80a09da3036c16bf86f9deb6d738c9c" + }, + "recipe": { + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "flymake-easy" + ] + }, + "flycheck-ycmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.6", + "deps": [] + }, + "stan-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "stan-dev", + "repo": "stan-mode", + "sha256": "0s633nnaprqq0svs0v4zfk9p47izbvjwx1x2xa9b9rid69bpx54s", + "rev": "60e31cd0dedc36ee6d5ddde01c5b8cb121c2e844" + }, + "recipe": { + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "8.0.0", + "deps": [ + "stan-mode", + "yasnippet" + ] + }, + "emacsql-mysql": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "emacsql", + "sha256": "0ph0462shk00rhrkpvwgsr4biykimky2d89pvkbg377951jdga7i", + "rev": "03d478870834a683f433e7f0e288476748eec624" + }, + "recipe": { + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "4.7", + "deps": [] + }, + "sourcekit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz", + "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" + }, + "recipe": { + "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "msvc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "yaruopooner", + "repo": "msvc", + "sha256": "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3", + "rev": "e7a61fa5b98a129637f970ac6db9163e330b3d02" + }, + "recipe": { + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.1", + "deps": [ + "yabin" + ] + }, + "smex": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nonsequitur", + "repo": "smex", + "sha256": "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5", + "rev": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26" + }, + "recipe": { + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "3.0", + "deps": [] + }, + "fancy-battery": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "lunaryorn", + "repo": "fancy-battery.el", + "sha256": "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g", + "rev": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff" + }, + "recipe": { + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "org-trello": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "org-trello", + "repo": "org-trello", + "sha256": "1561nxjva8892via0l8315y3fih4r4q9gzycmvh33db8gqzq4l86", + "rev": "3718ed704094e5e5a491749f1f722d76ba4b7d73" + }, + "recipe": { + "sha256": "1rm91xccvdsqghdnrnjvyp8xfvrw5ac677vzzz24rz9dssh2mz9b", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "08q43k4450kgygyvqv18gwcmmb7y9x445401048lbixc4cp6p3cg", + "rev": "e208d856ce1b036d2dc1454813c6fc81f0269def" + }, + "recipe": { + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.0", + "deps": [] + }, + "homebrew-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "homebrew-mode", + "sha256": "1n8r4jrk71dg25ca6bsw11ky0dszdj4pvqwsmy3msqlji1ckvqyn", + "rev": "359b5a0e42c6dab618bb9bcf03ad3dfe3b2a3d12" + }, + "recipe": { + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.2", + "deps": [ + "dash", + "emacs", + "inf-ruby" + ] + }, + "deft": { + "fetch": { + "tag": "fetchgit", + "url": "git://jblevins.org/git/deft.git", + "sha256": "eb5c178337c0bd6a001114aac685bb0d23167050970274203d93c1c0caece1e8", + "rev": "4001a55cf5f79cdbfa00f1405e8a4645af4acd40" + }, + "recipe": { + "sha256": "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [] + }, + "autodisass-java-bytecode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-java-bytecode", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s", + "rev": "3d61dbe266133c950b39e880f78d142751c7dc4c" + }, + "recipe": { + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3", + "deps": [] + }, + "helm-bundle-show": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "masutaka", + "repo": "emacs-helm-bundle-show", + "sha256": "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30", + "rev": "b34523aa8a7f82ed9a1bf3643c35b65866a7877a" + }, + "recipe": { + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.5", + "deps": [ + "helm" + ] + }, + "irony": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "irony-mode", + "sha256": "1wsh72dzm54srxdnlhnmbi8llc30syhbckycj5wmsamw8b89p7c2", + "rev": "9f0b33a5369806ba9c2f62238f64d6455a67af9e" + }, + "recipe": { + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.0", + "deps": [] + }, + "syntactic-sugar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rolandwalker", + "repo": "syntactic-sugar", + "sha256": "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da", + "rev": "06d943c6ad9507603bb6ab6d37be2d359d0763a9" + }, + "recipe": { + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.4", + "deps": [] + }, + "smartrep": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "myuhe", + "repo": "smartrep.el", + "sha256": "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f", + "rev": "0b73bf3d1a3c795671bfee0a36cecfaa54729446" + }, + "recipe": { + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "prodigy": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "prodigy.el", + "sha256": "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3", + "rev": "7034873908a616853b3a65258a7580a3b402e8a2" + }, + "recipe": { + "sha256": "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [] + }, + "buttercup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jorgenschaefer", + "repo": "emacs-buttercup", + "sha256": "1qqy8rmx7d62hf6a8j9d5gc49mvhllgyi7rfpilqiwnfpxs8gxgl", + "rev": "d7ab5923f26bb4d2af4d2489ae3e4fb27fd08dc1" + }, + "recipe": { + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [] + }, + "emms-player-mpv": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dochang", + "repo": "emms-player-mpv", + "sha256": "1yy4dmjp53l2df5qix31g4vizhv80wm88vjqq6qqa9p822732n0m", + "rev": "a1be1d266530ede3780dd69a7243d898f1016127" + }, + "recipe": { + "sha256": "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.7", + "deps": [ + "emms" + ] + }, + "kibit-helper": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brunchboy", + "repo": "kibit-helper", + "sha256": "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv", + "rev": "ec5f154db3bb0c838e86f527353f08644cede926" + }, + "recipe": { + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "emacs", + "s" + ] + }, + "slime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "slime", + "repo": "slime", + "sha256": "10ydinwsm7m5jlggynhsihxl18zl8cph4rliic8i72hjc3nhqfmy", + "rev": "da7c32d0c54a6f2d9a4be0662c7b2d576b11eda1" + }, + "recipe": { + "sha256": "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "emacs" + ] + }, + "ecukes": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ecukes", + "repo": "ecukes", + "sha256": "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs", + "rev": "2bba6266a3fff772cd54a6cd1b1aee2c36872aa5" + }, + "recipe": { + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.1", + "deps": [] + }, + "dash": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "dash.el", + "sha256": "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa", + "rev": "fec6f5480d0ce03ead0e6117ac77dc7e757e76f8" + }, + "recipe": { + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.12.1", + "deps": [] + }, + "haml-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nex3", + "repo": "haml-mode", + "sha256": "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988", + "rev": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b" + }, + "recipe": { + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.2", + "deps": [ + "emacs", + "helm" + ] + }, + "elmine": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "elmine", + "sha256": "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3", + "rev": "091f61c70c9e7630a74b7b127488051d143a35e7" + }, + "recipe": { + "sha256": "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "ace-jump-zap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "waymondo", + "repo": "ace-jump-zap", + "sha256": "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca", + "rev": "0acdd83a5abd59606495e67a4ee01f7856e5d359" + }, + "recipe": { + "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "ace-jump-mode", + "dash" + ] + }, + "smeargle": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-smeargle", + "sha256": "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng", + "rev": "fe0494bb859ea51800d6e7ae7d9eda2fe98e0097" + }, + "recipe": { + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "epc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "kiwanami", + "repo": "emacs-epc", + "sha256": "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z", + "rev": "152e6e10a79b56ebc7568054589cf6c3c44595c7" + }, + "recipe": { + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2015.11.29", + "deps": [] + }, + "init-loader": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-jp", + "repo": "init-loader", + "sha256": "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az", + "rev": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde" + }, + "recipe": { + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "session": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacsorphanage", + "repo": "session", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v", + "rev": "19ea0806873daac3539a4b956e15655e99e3dd6c" + }, + "recipe": { + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.3.1", + "deps": [] + }, + "bundler": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tobiassvn", + "repo": "bundler.el", + "sha256": "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h", + "rev": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf" + }, + "recipe": { + "sha256": "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [ + "inf-ruby" + ] + }, + "jsfmt": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "brettlangdon", + "repo": "jsfmt.el", + "sha256": "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x", + "rev": "c5d9742872509143db0250a77db705ef78f02cd0" + }, + "recipe": { + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [] + }, + "go-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dominikh", + "repo": "go-mode.el", + "sha256": "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx", + "rev": "dce210fdde620bed3d179816fda79dc83a66b8de" + }, + "recipe": { + "sha256": "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [] + }, + "xtest": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "promethial", + "repo": "xtest", + "sha256": "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09", + "rev": "b227414d714e7baddef79bd306a43024b9a34d45" + }, + "recipe": { + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [ + "cl-lib" + ] + }, + "noccur": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "noccur.el", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7", + "rev": "6cc02ce07178a61ae38a849f80472c01969272bc" + }, + "recipe": { + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "lispyscript-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "lispyscript-mode", + "sha256": "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk", + "rev": "9a4200085e2a15725a58616d131a56f5edce214b" + }, + "recipe": { + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.5", + "deps": [] + }, + "latex-math-preview": { + "fetch": { + "tag": "fetchFromGitLab", + "owner": "latex-math-preview", + "repo": "latex-math-preview", + "sha256": "0pa6b7r0671zz3gp3fp8zjjk6s590fj5rkgbg34czd82w60rd91b", + "rev": "863e68481e76121ca4653aba50e97e48fe11a052" + }, + "recipe": { + "sha256": "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7.1", + "deps": [] + }, + "ac-anaconda": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "proofit404", + "repo": "ac-anaconda", + "sha256": "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44", + "rev": "d0dec5c026235f65f9fd6594540df8886ed1b6a8" + }, + "recipe": { + "sha256": "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "anaconda-mode", + "auto-complete", + "dash" + ] + }, + "magit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "0kcx8pqzvl7xgx7f8q7xck83ghkx6cjsa2nczxj1virap1nkfhkw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.14", + "deps": [] + }, + "magit-stgit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit-stgit", + "sha256": "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb", + "rev": "d1793345a8d32b2c509077d634ca73148a68de4b" + }, + "recipe": { + "sha256": "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "tagedit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "tagedit", + "sha256": "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb", + "rev": "3fcf54b824b75c5ad68f5438d5638103049a389f" + }, + "recipe": { + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.0", + "deps": [ + "dash", + "s" + ] + }, + "navi-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tj64", + "repo": "navi", + "sha256": "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh", + "rev": "5c979b3b3873b0e67751a1321a9e271d066f2022" + }, + "recipe": { + "sha256": "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "flymake-sass": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "flymake-sass", + "sha256": "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8", + "rev": "1c7664818db539de7f3dab396c013528a3f5b8b4" + }, + "recipe": { + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6", + "deps": [ + "flymake-easy" + ] + }, + "sackspace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cofi", + "repo": "sackspace.el", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl", + "rev": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708" + }, + "recipe": { + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.2", + "deps": [] + }, + "org2blog": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "punchagan", + "repo": "org2blog", + "sha256": "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l", + "rev": "ad389ae994d269a57e56fbea68df7e6fe5c2ff55" + }, + "recipe": { + "sha256": "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.1", + "deps": [ + "calfw" + ] + }, + "company-ghc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "iquiw", + "repo": "company-ghc", + "sha256": "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r", + "rev": "64e4f9d0cf9377138a8dee34c69e7d578fd71090" + }, + "recipe": { + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.1", + "deps": [] + }, + "f": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rejeep", + "repo": "f.el", + "sha256": "13issmwp77mswrqwhx2qcyxavv68x7lrql5za5cz24yzzy6zrp2x", + "rev": "7003428ead6d80e81ff14c3614239efdbce7391b" + }, + "recipe": { + "sha256": "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [] + }, + "sound-wav": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sound-wav", + "sha256": "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g", + "rev": "215e23b118fba11a7132b7c79326ad0a723e2605" + }, + "recipe": { + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [ + "cl-lib", + "deferred" + ] + }, + "psession": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thierryvolpiatto", + "repo": "psession", + "sha256": "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8", + "rev": "138b27f57bdc3ff53ec5896439e8ed00294a5ea2" + }, + "recipe": { + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "elfeed-web": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "elfeed", + "sha256": "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j", + "rev": "9fd3cf8833e26bf41f52a7e2149734858d2eeb96" + }, + "recipe": { + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.0", + "deps": [ + "elfeed", + "emacs", + "simple-httpd" + ] + }, + "cljr-helm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "philjackson", + "repo": "cljr-helm", + "sha256": "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha", + "rev": "916d070503d0f484f36626c7a42f156b737e3fab" + }, + "recipe": { + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [ + "clj-refactor", + "helm" + ] + }, + "ansible": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "k1LoW", + "repo": "emacs-ansible", + "sha256": "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2", + "rev": "e9b9431738de4808d8ef70871069f68885cc0d98" + }, + "recipe": { + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [ + "f", + "s" + ] + }, + "japanlaw": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "japanlaw.el", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h", + "rev": "d90b204b018893d5d75286c92948c0bddf94cce2" + }, + "recipe": { + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.1", + "deps": [] + }, + "link-hint": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "noctuid", + "repo": "link-hint.el", + "sha256": "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838", + "rev": "d26b5330e6e42b4bed4e4730054b4c5e308ceab2" + }, + "recipe": { + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "git-commit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "ob-translate": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "krisajenkins", + "repo": "ob-translate", + "sha256": "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia", + "rev": "6b39cc1a94a1071107a4391684b1bffb5b9826f3" + }, + "recipe": { + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "shm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisdone", + "repo": "structured-haskell-mode", + "sha256": "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk", + "rev": "8abc5cd73e59ea85bef906e14e87dc388c4f350f" + }, + "recipe": { + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.20", + "deps": [] + }, + "git-gutter-fringe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-git-gutter-fringe", + "sha256": "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv", + "rev": "3efa997ec8330d3e408a225616273d1d40327aec" + }, + "recipe": { + "sha256": "14wyiyyi2rram2sz3habvmygy5a5m2jfi6x9fqcyfr3vpcjn1k4i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.6.10", + "deps": [] + }, + "insert-shebang": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "psachin", + "repo": "insert-shebang", + "sha256": "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f", + "rev": "4161cc8c7d07d0979684838fa8e3eec582351d97" + }, + "recipe": { + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "nyan-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "TeMPOraL", + "repo": "nyan-mode", + "sha256": "14vd0f4y5l470hx7kg54sx3352459mhjnrh7jl822gkl8c904lmw", + "rev": "251d8f9c3686183294d76abcd816c8d69b6a71a3" + }, + "recipe": { + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "repeatable-motion": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "willghatch", + "repo": "emacs-repeatable-motion", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck", + "rev": "e664b0a4a3e39c4085378a28b5136b349a0afb22" + }, + "recipe": { + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "emacs" + ] + }, + "abc-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mkjunker", + "repo": "abc-mode", + "sha256": "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv", + "rev": "6b5ab7402287dab5a091e94fec9982dc45d9d287" + }, + "recipe": { + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20140225.944", + "deps": [] + }, + "enotify": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "laynor", + "repo": "enotify", + "sha256": "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5", + "rev": "75c84b53703e5d52cb18acc9251b87ffa400f388" + }, + "recipe": { + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.3", + "deps": [] + }, + "org-outlook": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mattfidler", + "repo": "org-outlook.el", + "sha256": "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a", + "rev": "070c37d017ccb71d94c3c69c99632fa6570ec2cc" + }, + "recipe": { + "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "scala-outline-popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ancane", + "repo": "scala-outline-popup", + "sha256": "0hhsgyil8aqdkkip5325yrdq89gnijglcbf1dsvl4wvnmq7a1rik", + "rev": "c79a06fb99cbf6f29d94da77a8a22cfafb15a1b6" + }, + "recipe": { + "sha256": "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [ + "dash", + "flx-ido", + "popup", + "scala-mode2" + ] + }, + "smart-tabs-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jcsalomon", + "repo": "smarttabs", + "sha256": "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z", + "rev": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7" + }, + "recipe": { + "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [] + }, + "amd-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "amd-mode.el", + "sha256": "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy", + "rev": "16500ccc16e98bf28395b576afa83ec7bcb7b101" + }, + "recipe": { + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20151025", + "deps": [] + }, + "ace-window": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abo-abo", + "repo": "ace-window", + "sha256": "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6", + "rev": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae" + }, + "recipe": { + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "ghc-imported-from": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "david-christiansen", + "repo": "ghc-imported-from-el", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi", + "rev": "fcff08628a19f5d26151564659218cc677779b79" + }, + "recipe": { + "sha256": "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.2", + "deps": [ + "emacs" + ] + }, + "company-emoji": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "dunn", + "repo": "company-emoji", + "sha256": "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd", + "rev": "c77e9c6f87a7853787c70eae885e12b6162d4cc5" + }, + "recipe": { + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [] + }, + "e2wm-term": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "e2wm-term", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw", + "rev": "65b5ac88043d5c4048920a048f3599904ca55981" + }, + "recipe": { + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.5", + "deps": [ + "e2wm", + "log4e", + "yaxception" + ] + }, + "x86-lookup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "skeeto", + "repo": "x86-lookup", + "sha256": "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq", + "rev": "cac42bd9f27bff92e0b1cf6fb20563061885239f" + }, + "recipe": { + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [ + "emacs" + ] + }, + "rspec-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pezra", + "repo": "rspec-mode", + "sha256": "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp", + "rev": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb" + }, + "recipe": { + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.3.1", + "deps": [] + }, + "idomenu": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "birkenfeld", + "repo": "idomenu", + "sha256": "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0", + "rev": "5daaf7e06e4704ae43c825488109d7eb8c049321" + }, + "recipe": { + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "goto-gem": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "pidu", + "repo": "goto-gem", + "sha256": "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7", + "rev": "6f5bd405c096ef879fed1298c09d0daa0bae5dac" + }, + "recipe": { + "sha256": "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.2", + "deps": [ + "s" + ] + }, + "minibuffer-cua": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "minibuffer-cua.el", + "sha256": "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj", + "rev": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb" + }, + "recipe": { + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "yagist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mhayashi1120", + "repo": "yagist.el", + "sha256": "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h", + "rev": "97723a34750ccab5439eb9f6a2f67e4e0e234167" + }, + "recipe": { + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8.12", + "deps": [ + "cl-lib" + ] + }, + "maxframe": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "rmm5t", + "repo": "maxframe.el", + "sha256": "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y", + "rev": "4f1dbbe68048864037eae277b9280b90fd701ff1" + }, + "recipe": { + "sha256": "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [] + }, + "company-irony": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sarcasm", + "repo": "company-irony", + "sha256": "1gdsaa8zcs3layivn3ndbd5z1zflblmbxl251ld67bq763ga49cz", + "rev": "29becb8824cacb1ea6f8c823d06ba65512c62e3d" + }, + "recipe": { + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5.0", + "deps": [] + }, + "nix-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NixOS", + "repo": "nix", + "sha256": "03kbdrar5w475qng4j7bbak5y6ipb7pgpxj3hblcn3pnvgh7whv6", + "rev": "71a5161365f40699092e491bbff88473237fc432" + }, + "recipe": { + "sha256": "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.10", + "deps": [] + }, + "angular-snippets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magnars", + "repo": "angular-snippets.el", + "sha256": "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a", + "rev": "8f737c2cf5fce758a7a3833ebad2952b5398568d" + }, + "recipe": { + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.3", + "deps": [ + "dash", + "s" + ] + }, + "emacsagist": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "echosa", + "repo": "emacsagist", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2", + "rev": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83" + }, + "recipe": { + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "cl-lib" + ] + }, + "yafolding": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenozeng", + "repo": "yafolding.el", + "sha256": "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i", + "rev": "9b5a3f1b8dff6ddaf6369681820753afbbd1f388" + }, + "recipe": { + "sha256": "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.4", + "deps": [] + }, + "term-cmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "CallumCameron", + "repo": "term-cmd", + "sha256": "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51", + "rev": "52651fcfbd0b0be0bddc66bf27f36243140698a4" + }, + "recipe": { + "sha256": "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [ + "dash", + "evil" + ] + }, + "package+": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "zenspider", + "repo": "package", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97", + "rev": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b" + }, + "recipe": { + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "import-js": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "trotzig", + "repo": "import-js", + "sha256": "029dsxll790f76mdjwjgx4ccsh08hq2haq6l7xj2y0rzi81a51an", + "rev": "92f298873e1c2a6d79c6aa936173db36b39029b7" + }, + "recipe": { + "sha256": "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.3", + "deps": [ + "emacs" + ] + }, + "rvm": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "senny", + "repo": "rvm.el", + "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm", + "rev": "8e45a9bad8e317ff195f384dab14d3402497dc79" + }, + "recipe": { + "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.0", + "deps": [] + }, + "isgd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chmouel", + "repo": "isgd.el", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach", + "rev": "764306dadd5a9213799081a48aba22f7c75cca9a" + }, + "recipe": { + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "swift-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "chrisbarrett", + "repo": "swift-mode", + "sha256": "1fi5zdvplw7h5hnyi37k92c8s8qnjgizbnv1mah18y8d30n1r77n", + "rev": "e09694f0f95a64b2c96487cbdcb66636a77ea22a" + }, + "recipe": { + "sha256": "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3.0", + "deps": [ + "emacs" + ] + }, + "logview": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "doublep", + "repo": "logview", + "sha256": "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s", + "rev": "f53693b37b46af448d0ac102ebbb152a1cb915aa" + }, + "recipe": { + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4.2", + "deps": [ + "emacs" + ] + }, + "narrow-reindent": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emallson", + "repo": "narrow-reindent.el", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh", + "rev": "87466aac4dbeb79597124dd077bf5c704872fd3d" + }, + "recipe": { + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.0", + "deps": [ + "emacs" + ] + }, + "epl": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cask", + "repo": "epl", + "sha256": "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr", + "rev": "a76ec344a7fee3ca7e7dfb98b86ebc3b8c1a3837" + }, + "recipe": { + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.8", + "deps": [ + "cl-lib" + ] + }, + "paradox": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "paradox", + "sha256": "06c2a55bmnhfvjpd43kq6d2l9yijgiq16yq19x6m8050f8hzxnyb", + "rev": "d62d883b8c980d679970bed79c12091df9120a77" + }, + "recipe": { + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [ + "grapnel" + ] + }, + "req-package": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "edvorg", + "repo": "req-package", + "sha256": "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs", + "rev": "374c6d1a81b5448a66295be8c132c42ca44eeddb" + }, + "recipe": { + "sha256": "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.7", + "deps": [] + }, + "org-time-budgets": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "leoc", + "repo": "org-time-budgets", + "sha256": "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46", + "rev": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b" + }, + "recipe": { + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.9.4", + "deps": [] + }, + "test-case-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "ieure", + "repo": "test-case-mode", + "sha256": "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f", + "rev": "26e397c0f930b7eb0be413ef7dd257b1da052bec" + }, + "recipe": { + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0", + "deps": [ + "fringe-helper" + ] + }, + "fiplr": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "d11wtq", + "repo": "fiplr", + "sha256": "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07", + "rev": "100dfc33f43da8c49e50e8a2222b9d95532f6e24" + }, + "recipe": { + "sha256": "0l68rl5cy2maynny6iq6c4qr6c99y44i0i1z613k9rk08z7h0k5i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2.4", + "deps": [ + "grizzl" + ] + }, + "rainbow-blocks": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "istib", + "repo": "rainbow-blocks", + "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c", + "rev": "8335993563aadd4290c5fa09dd7a6a81691b0690" + }, + "recipe": { + "sha256": "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [] + }, + "ido-grid-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "larkery", + "repo": "ido-grid-mode.el", + "sha256": "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb", + "rev": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab" + }, + "recipe": { + "sha256": "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.5", + "deps": [ + "emacs" + ] + }, + "company-sourcekit": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "nathankot", + "repo": "company-sourcekit", + "sha256": "1l9xrw88wq32wm3qx922ihdb9mlv9rrdalwvz9i2790fmw7y84vz", + "rev": "ea26c1284ccf72d6e3a850c6725433f0f8e2b3f9" + }, + "recipe": { + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.2", + "deps": [ + "log4e", + "yaxception" + ] + }, + "powershell": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jschaf", + "repo": "powershell.el", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn", + "rev": "7316f44d0b528552f5a0692f778e5f0efd964299" + }, + "recipe": { + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "underwater-theme": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "jmdeldin", + "repo": "underwater-theme.el", + "sha256": "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj", + "rev": "1fbd4ecd4538256c6c46f9638f883072c73ac927" + }, + "recipe": { + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1.0", + "deps": [] + }, + "magit-popup": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "magit", + "repo": "magit", + "sha256": "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd", + "rev": "16a7a12c44d63e78e9b223fca7c1c23a144d3ef1" + }, + "recipe": { + "sha256": "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.3", + "deps": [] + }, + "helm-hayoo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "markus1189", + "repo": "helm-hayoo", + "sha256": "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp", + "rev": "f49a77e8b8704bb7eb0d1097eefb8010a6617664" + }, + "recipe": { + "sha256": "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.5", + "deps": [ + "haskell-mode", + "helm", + "json" + ] + }, + "gnome-calendar": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "NicolasPetton", + "repo": "gnome-calendar.el", + "sha256": "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc", + "rev": "58c3a3c32aff9901c679bdf9091ed934897b84a0" + }, + "recipe": { + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [] + }, + "evil-org": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "edwtjo", + "repo": "evil-org-mode", + "sha256": "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7", + "rev": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9" + }, + "recipe": { + "sha256": "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "evil", + "org" + ] + }, + "modalka": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "mrkkrp", + "repo": "modalka", + "sha256": "1pgr1zlp26c7xy77qfvjfmv5i2j1c45xp59x83k8nllyhckxyqn6", + "rev": "f8ee86264a8e961b5821e11fdd490d5c4fc489c3" + }, + "recipe": { + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.1", + "deps": [ + "emacs" + ] + }, + "subshell-proc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "andrewmains12", + "repo": "subshell-proc", + "sha256": "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf", + "rev": "bf475eb7b0684af967755e91c9cabd19f953b03b" + }, + "recipe": { + "sha256": "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "phi-search-mc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "knu", + "repo": "phi-search-mc.el", + "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv", + "rev": "4c6d2d39feb502febb81fc98b7b5854d88150c69" + }, + "recipe": { + "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "html-to-markdown": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Malabarba", + "repo": "html-to-markdown", + "sha256": "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns", + "rev": "0fa0effd71acd8981a425ef11e0e63d53aea3199" + }, + "recipe": { + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.5.1", + "deps": [] + }, + "srefactor": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tuhdo", + "repo": "semantic-refactor", + "sha256": "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc", + "rev": "ecd40713f736b243285c07f4cfd77113794d4f9f" + }, + "recipe": { + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.5", + "deps": [ + "emacs" + ] + }, + "wacspace": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "shosti", + "repo": "wacspace.el", + "sha256": "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd", + "rev": "b951995c204ff23699d2bda515a96221147a725d" + }, + "recipe": { + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.3.1", + "deps": [ + "php-mode", + "yasnippet" + ] + }, + "helm-ls-git": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "emacs-helm", + "repo": "helm-ls-git", + "sha256": "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf", + "rev": "c5e43f4083af3949c5d5afdfbbf26d01881cb0e2" + }, + "recipe": { + "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.8.0", + "deps": [ + "helm" + ] + }, + "hl-todo": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "tarsius", + "repo": "hl-todo", + "sha256": "07irwpg794fdzsixmcbi1lnafj5gynhrdam7frcpmvb26a0l8fxq", + "rev": "878220c111add155b9ee1aeb3d3475cc5e488525" + }, + "recipe": { + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.4.5", + "deps": [] + }, + "cython-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "cython", + "repo": "cython", + "sha256": "0kbk2gp2avp0da32mr003ziigmi98zi0fvwia4knylllmrkl3pvq", + "rev": "dc00a176d896f0df892aad8b305d946d3ed632a0" + }, + "recipe": { + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.23.4", + "deps": [] + }, + "cider": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "cider", + "sha256": "1bcmqbqc5p4m31rximdpzwlrv2nann5mkbfxiba2xm7fgl2iym64", + "rev": "7cc4a192323ef0911c150e6150d3bbd319253342" + }, + "recipe": { + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.10.0", + "deps": [ + "clojure-mode", + "emacs", + "pkg-info", + "queue", + "seq", + "spinner" + ] + }, + "ac-slime": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "purcell", + "repo": "ac-slime", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88", + "rev": "df6c4e88b5ba2d15d47a651ecf7edc0986624112" + }, + "recipe": { + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.7", + "deps": [] + }, + "traad-autocomplete": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "traad", + "sha256": "1w2haj7grs4h9wiqkcpb28kl7zqlyba4pcgc07n1mvgksvnj729m", + "rev": "8852b4dc2b2113a1597301c0b03712b65f50747f" + }, + "recipe": { + "sha256": "0psk4gb903slcsppgplawz6gsv1w1nw1vqj4y0rfql6rxnbl3jf2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "deps": [] + }, + "el-init-viewer": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "HKey", + "repo": "el-init-viewer", + "sha256": "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l", + "rev": "dcc595ba51b5aff972292278aa528c7ddb46f1b5" + }, + "recipe": { + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "20130521", + "deps": [] + }, + "clojure-cheatsheet": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "clojure-emacs", + "repo": "clojure-cheatsheet", + "sha256": "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx", + "rev": "f8db406b7b13a580c142d08865c9a03c101235fa" + }, + "recipe": { + "sha256": "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "2.0", + "deps": [] + }, + "sphinx-doc": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "naiquevin", + "repo": "sphinx-doc.el", + "sha256": "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c", + "rev": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666" + }, + "recipe": { + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1", + "deps": [] + }, + "autodisass-llvm-bitcode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "gbalats", + "repo": "autodisass-llvm-bitcode", + "sha256": "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85", + "rev": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0" + }, + "recipe": { + "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.1", + "deps": [] + }, + "sourcemap": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "syohex", + "repo": "emacs-sourcemap", + "sha256": "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d", + "rev": "065a0c3bd8ca5fe6a45e8f983f932c3c9fac5db9" + }, + "recipe": { + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.2", + "deps": [ + "cl-lib", + "emacs" + ] + }, + "json-snatcher": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "Sterlingg", + "repo": "json-snatcher", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw", + "rev": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c" + }, + "recipe": { + "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "1.0.0", + "deps": [ + "emacs" + ] + }, + "org-link-travis": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "aki2o", + "repo": "org-link-travis", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8", + "rev": "596615ad8373d9090bd4138da683524f0ad0bda5" + }, + "recipe": { + "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.0.1", + "deps": [ + "org" + ] + }, + "cryptol-mode": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "thoughtpolice", + "repo": "cryptol-mode", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w", + "rev": "a54d000d24757fad2a91ae2853b16a97ebe52771" + }, + "recipe": { + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.1.0", + "deps": [] + }, + "company-ycmd": { + "fetch": { + "tag": "fetchFromGitHub", + "owner": "abingham", + "repo": "emacs-ycmd", + "sha256": "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia", + "rev": "8fb29b84d42c0aea71fe7db088b0b7a5a0c6b34c" + }, + "recipe": { + "sha256": "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "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": "2b3eb31c077fcaff94b74b757c1ce17650333943" + }, + "version": "0.4", + "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 0000000000000000000000000000000000000000..2dadbae853580ba58a8bb19be10cb1da5625aaea --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -0,0 +1,77 @@ +/* + +# 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; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/${recipe.recipe.commit}/recipes/${name}"; + inherit (recipe.recipe) sha256; + }; + in melpaBuild { + pname = name; + inherit (recipe) version; + inherit recipeFile 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 0e6cd48ceec4510f00cb8cdb29c0d9f610c5bfe8..117fa264f215a719f890079e437a778f791439af 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 9fc223d81da51cc4b459f72eea63f498d00c53eb..9c8238244ff1b48155f8b04a92924c3456ab7c26 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 2af662ded7f29a4bab3e9777de6b55ebd142fa3e..ad6f599a36174fe280c9664fc5e5fa30e359c1ef 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 b885e26fbef9a20482d8f29c6bb7dbda0765e138..4590baf6b8e246f46e64c147c3a1764460e08696 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/editors/zile/default.nix b/pkgs/applications/editors/zile/default.nix index 48839246600d0c0af34f2a1cea774163e71bc175..7282dc0ba202dff09462e8089e0af7bc757a6043 100644 --- a/pkgs/applications/editors/zile/default.nix +++ b/pkgs/applications/editors/zile/default.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ pSub ]; - platforms = platforms.linux; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index 589d20cb12608ffcf7cb906764b4951dfb9260fd..5e8dfd93f30eb26794a839285de3f1c19754251c 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 10d4f703a82541de99d258189395886ec98b9b64..072cc698e920188cd0d5335d5e746682ec7a267c 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 new file mode 100644 index 0000000000000000000000000000000000000000..c71b1f9335b4223a5c5a6d6b9e0dc9bfc8eacc11 --- /dev/null +++ b/pkgs/applications/graphics/awesomebump/default.nix @@ -0,0 +1,39 @@ +{ lib, stdenv, fetchurl, qtbase, makeWrapper }: + +stdenv.mkDerivation { + name = "awesomebump-4.0"; + + src = fetchurl { + url = https://github.com/kmkolasinski/AwesomeBump/archive/Linuxv4.0.tar.gz; + sha256 = "1rp4m4y2ld49hibzwqwy214cbiin80i882d9l0y1znknkdcclxf2"; + }; + + setSourceRoot = "sourceRoot=$(echo */Sources)"; + + buildInputs = [ qtbase makeWrapper ]; + + preBuild = "qmake"; + + enableParallelBuilding = true; + + installPhase = + '' + d=$out/libexec/AwesomeBump + mkdir -p $d $out/bin + cp AwesomeBump $d/ + cp -prd ../Bin/Configs ../Bin/Core $d/ + + # AwesomeBump expects to find Core and Configs in its current + # directory. + makeWrapper $d/AwesomeBump $out/bin/AwesomeBump \ + --run "cd $d" + ''; + + meta = { + homepage = https://github.com/kmkolasinski/AwesomeBump; + description = "A program to generate normal, height, specular or ambient occlusion textures from a single image"; + license = lib.licenses.gpl3Plus; + maintainers = [ lib.maintainers.eelco ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix index 7d5d4cc7acb97e77f8f7aeae54e1ddadf880a77f..1715e3785dacf924cb0abd8d34766051aebd2e8c 100644 --- a/pkgs/applications/graphics/darktable/default.nix +++ b/pkgs/applications/graphics/darktable/default.nix @@ -9,12 +9,12 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { - version = "1.6.8"; + version = "1.6.9"; name = "darktable-${version}"; src = fetchurl { url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz"; - sha256 = "0189d5pn6g01rynfkhxynrqgfi24v94x8fp0fs7ilrncv0dzhxmn"; + sha256 = "0wri89ygjpv7npiz58mnydhgldywp6arqp9jq3v0g54a56fiwwhg"; }; buildInputs = diff --git a/pkgs/applications/graphics/ipe/default.nix b/pkgs/applications/graphics/ipe/default.nix index 9f1f53abc5c43ea31a9859ad1de6258abfc84494..c1c1861cd3d9cdddd36c18aee7102e89011c9574 100644 --- a/pkgs/applications/graphics/ipe/default.nix +++ b/pkgs/applications/graphics/ipe/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchurl, pkgconfig, zlib, freetype, cairo, lua5, texLive, ghostscriptX +{ stdenv, fetchurl, pkgconfig, zlib, freetype, cairo, lua5, texlive, ghostscript , libjpeg, qtbase -, makeWrapper }: -let ghostscript = ghostscriptX; in +, makeQtWrapper +}: + stdenv.mkDerivation rec { name = "ipe-7.1.10"; @@ -21,16 +22,18 @@ stdenv.mkDerivation rec { ''; IPEPREFIX="$$out"; - URWFONTDIR="${texLive}/texmf-dist/fonts/type1/urw/"; + URWFONTDIR="${texlive}/texmf-dist/fonts/type1/urw/"; LUA_PACKAGE = "lua"; buildInputs = [ - libjpeg pkgconfig zlib qtbase freetype cairo lua5 texLive ghostscript makeWrapper + libjpeg pkgconfig zlib qtbase freetype cairo lua5 texlive ghostscript ]; - postInstall = '' + nativeBuildInputs = [ makeQtWrapper ]; + + postFixup = '' for prog in $out/bin/*; do - wrapProgram "$prog" --prefix PATH : "${texLive}/bin" + wrapQtProgram "$prog" --prefix PATH : "${texlive}/bin" done ''; diff --git a/pkgs/applications/graphics/luminance-hdr/default.nix b/pkgs/applications/graphics/luminance-hdr/default.nix index 5e7835b3549960419c654eb8f143e0392be19844..98152694c6d976a70d6eb06787e7e7230d0da23c 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 7ae6d6e050fa8ab4536492df6fc17ad4c5e02301..c96b0c182a62b04b8c0cc0e08bf59f0b0cdd4f5d 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 f1a46b63d588c64283279e2db375587f276dee69..6803b969b4b551c6d904e6c1b51f000c2914aa51 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/potrace/default.nix b/pkgs/applications/graphics/potrace/default.nix index 13636e1f1fe599e9e1afe8113e9c6ba76684195f..3cc5fe6fdd28566d58441d62eb232b800d8833d4 100644 --- a/pkgs/applications/graphics/potrace/default.nix +++ b/pkgs/applications/graphics/potrace/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "potrace-${version}"; - version = "1.12"; + version = "1.13"; src = fetchurl { url = "http://potrace.sourceforge.net/download/${version}/potrace-${version}.tar.gz"; - sha256 = "0fqpfq5wwqz8j6pfh4p2pbflf6r86s4h63r8jawzrsyvpbbz3fxh"; + sha256 = "115p2vgyq7p2mf4nidk2x3aa341nvv2v8ml056vbji36df5l6lk2"; }; configureFlags = [ "--with-libpotrace" ]; diff --git a/pkgs/applications/graphics/rapcad/default.nix b/pkgs/applications/graphics/rapcad/default.nix index 701ad47985bc835ffbd8f2780373f763827c58be..cb92947b766d69ba5267886a31ac2ea04d8f34f6 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 deleted file mode 100644 index 3de7057916aa7574740389603a2544da08cdc4a7..0000000000000000000000000000000000000000 --- a/pkgs/applications/graphics/sane/backends-git.nix +++ /dev/null @@ -1,56 +0,0 @@ -{ stdenv, fetchurl, fetchgit, hotplugSupport ? true, libusb ? null -, gt68xxFirmware ? null, snapscanFirmware ? null -}: -let - firmware = gt68xxFirmware { inherit fetchurl; }; -in -assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); - -stdenv.mkDerivation { - name = "sane-backends-1.0.25.177-g753d123"; - - src = fetchgit { - url = "git://alioth.debian.org/git/sane/sane-backends.git"; - rev = "753d123f36d08cdb8047adac7c89a9fe015c4b25"; - sha256 = "1f5b4606f9b1b65a312794726e8d5d06056510b7426f86845ebeb8ca1a9b2f1f"; - }; - - udevSupport = hotplugSupport; - - buildInputs = if libusb != null then [libusb] else []; - - postInstall = '' - if test "$udevSupport" = "1"; then - mkdir -p $out/etc/udev/rules.d/ - ./tools/sane-desc -m udev > $out/etc/udev/rules.d/60-libsane.rules || \ - cp tools/udev/libsane.rules $out/etc/udev/rules.d/60-libsane.rules - fi - ''; - - preInstall = - if gt68xxFirmware != null then - "mkdir -p \${out}/share/sane/gt68xx ; ln -s " + firmware.fw + - " \${out}/share/sane/gt68xx/" + firmware.name - else if snapscanFirmware != null then - "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + - " \${out}/share/sane/snapscan/your-firmwarefile.bin ;" + - "mkdir -p \${out}/etc/sane.d ; " + - "echo epson2 > \${out}/etc/sane.d/dll.conf" - else ""; - - meta = with stdenv.lib; { - homepage = "http://www.sane-project.org/"; - description = "SANE (Scanner Access Now Easy) backends"; - longDescription = '' - Collection of open-source SANE backends (device drivers). - SANE is a universal scanner interface providing standardized access to - any raster image scanner hardware: flatbed scanners, hand-held scanners, - video- and still-cameras, frame-grabbers, etc. For a list of supported - scanners, see http://www.sane-project.org/sane-backends.html. - ''; - license = licenses.gpl2Plus; - - maintainers = with maintainers; [ nckx simons ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/applications/graphics/sane/backends.nix b/pkgs/applications/graphics/sane/backends.nix deleted file mode 100644 index fb943ac23b5d14a29ffaa5ef62ad05a2fd9018cc..0000000000000000000000000000000000000000 --- a/pkgs/applications/graphics/sane/backends.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ stdenv, fetchurl, hotplugSupport ? true, libusb ? null, libv4l ? null -, pkgconfig ? null, gt68xxFirmware ? null, snapscanFirmware ? null -}: - -assert hotplugSupport -> (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"); - -let - firmware = gt68xxFirmware { inherit fetchurl; }; -in -stdenv.mkDerivation rec { - version = "1.0.25"; - name = "sane-backends-${version}"; - - src = fetchurl { - urls = [ - "http://pkgs.fedoraproject.org/repo/pkgs/sane-backends/sane-backends-1.0.25.tar.gz/f9ed5405b3c12f07c6ca51ee60225fe7/${name}.tar.gz" - "https://alioth.debian.org/frs/download.php/file/4146/${name}.tar.gz" - ]; - curlOpts = "--insecure"; - sha256 = "0b3fvhrxl4l82bf3v0j47ypjv6a0k5lqbgknrq1agpmjca6vmmx4"; - }; - - outputs = [ "out" "doc" "man" ]; - - udevSupport = hotplugSupport; - - configureFlags = stdenv.lib.optional (libusb != null) "--enable-libusb_1_0"; - - buildInputs = [] - ++ stdenv.lib.optional (libusb != null) libusb - ++ stdenv.lib.optional (libv4l != null) libv4l - ++ stdenv.lib.optional (pkgconfig != null) pkgconfig - ; - - postInstall = '' - if test "$udevSupport" = "1"; then - mkdir -p $out/etc/udev/rules.d/ - ./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \ - cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules - fi - ''; - - preInstall = - if gt68xxFirmware != null then - "mkdir -p \${out}/share/sane/gt68xx ; ln -s " + firmware.fw + - " \${out}/share/sane/gt68xx/" + firmware.name - else if snapscanFirmware != null then - "mkdir -p \${out}/share/sane/snapscan ; ln -s " + snapscanFirmware + - " \${out}/share/sane/snapscan/your-firmwarefile.bin" - else ""; - - meta = with stdenv.lib; { - homepage = "http://www.sane-project.org/"; - description = "SANE (Scanner Access Now Easy) backends"; - longDescription = '' - Collection of open-source SANE backends (device drivers). - SANE is a universal scanner interface providing standardized access to - any raster image scanner hardware: flatbed scanners, hand-held scanners, - video- and still-cameras, frame-grabbers, etc. For a list of supported - scanners, see http://www.sane-project.org/sane-backends.html. - ''; - license = licenses.gpl2Plus; - - maintainers = with maintainers; [ nckx simons ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/applications/graphics/sane/backends/default.nix b/pkgs/applications/graphics/sane/backends/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..a3ca7fdd55df66edba899c7ec0a5469d2675fc1e --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/default.nix @@ -0,0 +1,13 @@ +{ callPackage, fetchurl, ... } @ args: + +callPackage ./generic.nix (args // rec { + version = "1.0.25"; + src = fetchurl { + sha256 = "0b3fvhrxl4l82bf3v0j47ypjv6a0k5lqbgknrq1agpmjca6vmmx4"; + urls = [ + "http://pkgs.fedoraproject.org/repo/pkgs/sane-backends/sane-backends-${version}.tar.gz/f9ed5405b3c12f07c6ca51ee60225fe7/sane-backends-${version}.tar.gz" + "https://alioth.debian.org/frs/download.php/file/4146/sane-backends-${version}.tar.gz" + ]; + curlOpts = "--insecure"; + }; +}) diff --git a/pkgs/applications/graphics/sane/backends/generic.nix b/pkgs/applications/graphics/sane/backends/generic.nix new file mode 100644 index 0000000000000000000000000000000000000000..e98774a436819be6f09f8b864ed5183c8e193053 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/generic.nix @@ -0,0 +1,72 @@ +{ stdenv, fetchurl +, avahi, libusb1, libv4l, net_snmp +, gettext, pkgconfig + +# List of { src name backend } attibute sets - see installFirmware below: +, extraFirmware ? [] + +# For backwards compatibility with older setups; use extraFirmware instead: +, gt68xxFirmware ? null, snapscanFirmware ? null + +# Passed from versioned package (e.g. default.nix, git.nix): +, version, src, ... +}: + +stdenv.mkDerivation { + inherit src; + + name = "sane-backends-${version}"; + + outputs = [ "out" "doc" "man" ]; + + configureFlags = [] + ++ stdenv.lib.optional (avahi != null) "--enable-avahi" + ++ stdenv.lib.optional (libusb1 != null) "--enable-libusb_1_0" + ; + + buildInputs = [ avahi libusb1 libv4l net_snmp ]; + nativeBuildInputs = [ gettext pkgconfig ]; + + postInstall = let + + compatFirmware = extraFirmware + ++ stdenv.lib.optional (gt68xxFirmware != null) { + src = gt68xxFirmware.fw; + inherit (gt68xxFirmware) name; + backend = "gt68xx"; + } + ++ stdenv.lib.optional (snapscanFirmware != null) { + src = snapscanFirmware; + name = "your-firmwarefile.bin"; + backend = "snapscan"; + }; + + installFirmware = f: '' + mkdir -p $out/share/sane/${f.backend} + ln -sv ${f.src} $out/share/sane/${f.backend}/${f.name} + ''; + + in '' + mkdir -p $out/etc/udev/rules.d/ + ./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \ + cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules + '' + stdenv.lib.concatStrings (builtins.map installFirmware compatFirmware); + + meta = with stdenv.lib; { + inherit version; + + description = "SANE (Scanner Access Now Easy) backends"; + longDescription = '' + Collection of open-source SANE backends (device drivers). + SANE is a universal scanner interface providing standardized access to + any raster image scanner hardware: flatbed scanners, hand-held scanners, + video- and still-cameras, frame-grabbers, etc. For a list of supported + scanners, see http://www.sane-project.org/sane-backends.html. + ''; + homepage = "http://www.sane-project.org/"; + license = licenses.gpl2Plus; + + maintainers = with maintainers; [ nckx simons ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix new file mode 100644 index 0000000000000000000000000000000000000000..6c6838daef17175b157c705ee3dcd6f232bad207 --- /dev/null +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -0,0 +1,10 @@ +{ callPackage, fetchgit, ... } @ args: + +callPackage ./generic.nix (args // { + version = "2015-12-27"; + src = fetchgit { + sha256 = "4bf6e8815d2edbbc75255928d0fb030639a9fea9a5aa953dcf1f00e167eff527"; + rev = "cadb4b0fff00540159625320416e5601c4704627"; + url = "git://alioth.debian.org/git/sane/sane-backends.git"; + }; +}) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index 4dd30697f0bcc30e924c1248f17cbc59132af0e7..c169d262fb63807148eddcea577b247e2aae45fa 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,16 +1,16 @@ { 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.2"; in +let version = "3.19.3"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; src = fetchurl { - sha256 = "08454ky855iaiq5wn9rdbfal3i4fjss5fn5mg6cmags50wy9spsg"; + sha256 = "0il7ikd5hj9mgzrivm01g572g9101w8la58h3hjyakwcfw3jp976"; 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/kde-apps-15.08/ark.nix b/pkgs/applications/kde-apps-15.08/ark.nix deleted file mode 100644 index 36a1ca7cfbd71af71c018aa428bb3ba05bc075a1..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/ark.nix +++ /dev/null @@ -1,58 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, karchive -, kconfig -, kcrash -, kdbusaddons -, ki18n -, kiconthemes -, khtml -, kio -, kservice -, kpty -, kwidgetsaddons -, libarchive -, p7zip -, unrar -, unzipNLS -, zip -}: - -let PATH = lib.makeSearchPath "bin" [ - p7zip unrar unzipNLS zip - ]; -in - -kdeApp { - name = "ark"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - karchive - kconfig - kcrash - kdbusaddons - kiconthemes - kservice - kpty - kwidgetsaddons - libarchive - ]; - propagatedBuildInputs = [ - khtml - ki18n - kio - ]; - postInstall = '' - wrapQtProgram "$out/bin/ark" \ - --prefix PATH : "${PATH}" - ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/baloo-widgets.nix b/pkgs/applications/kde-apps-15.08/baloo-widgets.nix deleted file mode 100644 index a24928160df17e3c92c5a2ae539074fa6f38a944..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/baloo-widgets.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kconfig -, kio -, ki18n -, kservice -, kfilemetadata -, baloo -, kdelibs4support -}: - -kdeApp { - name = "baloo-widgets"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kconfig - kservice - ]; - propagatedBuildInputs = [ - baloo - kdelibs4support - kfilemetadata - ki18n - kio - ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/default.nix b/pkgs/applications/kde-apps-15.08/default.nix deleted file mode 100644 index 8694ee0b264f58a42367909645ed7cacf2d58971..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/default.nix +++ /dev/null @@ -1,56 +0,0 @@ -# Maintainer's Notes: -# -# Minor updates: -# 1. Edit ./manifest.sh to point to the updated URL. Upstream sometimes -# releases updates that include only the changed packages; in this case, -# multiple URLs can be provided and the results will be merged. -# 2. Run ./manifest.sh and ./dependencies.sh. -# 3. Build and enjoy. -# -# Major updates: -# We prefer not to immediately overwrite older versions with major updates, so -# make a copy of this directory first. After copying, be sure to delete ./tmp -# if it exists. Then follow the minor update instructions. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib stdenv; - - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - mirror = "mirror://kde"; - - kdeApp = import ./kde-app.nix { - inherit stdenv lib; - inherit debug srcs; - }; - - packages = self: with self; { - kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; - - ark = callPackage ./ark.nix {}; - baloo-widgets = callPackage ./baloo-widgets.nix {}; - dolphin = callPackage ./dolphin.nix {}; - dolphin-plugins = callPackage ./dolphin-plugins.nix {}; - ffmpegthumbs = callPackage ./ffmpegthumbs.nix {}; - gpgmepp = callPackage ./gpgmepp.nix {}; - gwenview = callPackage ./gwenview.nix {}; - kate = callPackage ./kate.nix {}; - kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; - kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; - konsole = callPackage ./konsole.nix {}; - ksnapshot = callPackage ./ksnapshot.nix {}; - libkdcraw = callPackage ./libkdcraw.nix {}; - libkexiv2 = callPackage ./libkexiv2.nix {}; - libkipi = callPackage ./libkipi.nix {}; - okular = callPackage ./okular.nix {}; - oxygen-icons = callPackage ./oxygen-icons.nix {}; - print-manager = callPackage ./print-manager.nix {}; - - l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); - }; - - newScope = scope: pkgs.kf515.newScope ({ inherit kdeApp; } // scope); - -in lib.makeScope newScope packages diff --git a/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix b/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix deleted file mode 100644 index 72a08c73261433cea7d7994e8b1b1d58c265c5de..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/dolphin-plugins.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kxmlgui -, ki18n -, kio -, kdelibs4support -, dolphin -}: - -kdeApp { - name = "dolphin-plugins"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kxmlgui - dolphin - ]; - propagatedBuildInputs = [ - kdelibs4support - ki18n - kio - ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/dolphin.nix b/pkgs/applications/kde-apps-15.08/dolphin.nix deleted file mode 100644 index 3218146f510e9714d071f5eec9a2711957dcd839..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/dolphin.nix +++ /dev/null @@ -1,70 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, kinit -, kcmutils -, kcoreaddons -, knewstuff -, ki18n -, kdbusaddons -, kbookmarks -, kconfig -, kio -, kparts -, solid -, kiconthemes -, kcompletion -, ktexteditor -, kwindowsystem -, knotifications -, kactivities -, phonon -, baloo -, baloo-widgets -, kfilemetadata -, kdelibs4support -}: - -kdeApp { - name = "dolphin"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kinit - kcmutils - kcoreaddons - knewstuff - kdbusaddons - kbookmarks - kconfig - kparts - solid - kiconthemes - kcompletion - knotifications - phonon - baloo-widgets - ]; - propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kfilemetadata - ki18n - kio - ktexteditor - kwindowsystem - ]; - postInstall = '' - wrapQtProgram "$out/bin/dolphin" - ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/fetchsrcs.sh b/pkgs/applications/kde-apps-15.08/fetchsrcs.sh deleted file mode 100755 index 126753e3ccc0efd04e7958ca0163d6fba543e7e4..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/fetchsrcs.sh +++ /dev/null @@ -1,56 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/stable/applications/15.08.3/ http://download.kde.org/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz -A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix b/pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix deleted file mode 100644 index 64f7961e7c7fa29156f7b23604feeb8a688378c4..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/ffmpegthumbs.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, ffmpeg -}: - -kdeApp { - name = "ffmpegthumbs"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - ffmpeg - ]; - meta = { - license = with lib.licenses; [ gpl2 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/gpgmepp.nix b/pkgs/applications/kde-apps-15.08/gpgmepp.nix deleted file mode 100644 index ac14573dcaa3f66cd4eba75b1591d74c6768d7dd..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/gpgmepp.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, boost -, gpgme -}: - -kdeApp { - name = "gpgmepp"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - boost - gpgme - ]; - meta = { - license = with lib.licenses; [ lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/gwenview.nix b/pkgs/applications/kde-apps-15.08/gwenview.nix deleted file mode 100644 index 732ac11e96d0e60e9b5e83e4f7c705a44c11a3a4..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/gwenview.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, baloo -, exiv2 -, kactivities -, kdelibs4support -, kio -, lcms2 -, phonon -, qtsvg -, qtx11extras -}: - -kdeApp { - name = "gwenview"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - exiv2 - lcms2 - phonon - qtsvg - ]; - propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kio - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/gwenview" - ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kate.nix b/pkgs/applications/kde-apps-15.08/kate.nix deleted file mode 100644 index 91eeb2314a4c46003c484772cfd0b25a94eadd57..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/kate.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, qtscript -, kactivities -, kconfig -, kcrash -, kguiaddons -, kiconthemes -, ki18n -, kinit -, kjobwidgets -, kio -, kparts -, ktexteditor -, kwindowsystem -, kxmlgui -, kdbusaddons -, kwallet -, plasma-framework -, kitemmodels -, knotifications -, threadweaver -, knewstuff -, libgit2 -}: - -kdeApp { - name = "kate"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - qtscript - kconfig - kcrash - kguiaddons - kiconthemes - kinit - kjobwidgets - kparts - kxmlgui - kdbusaddons - kwallet - kitemmodels - knotifications - threadweaver - knewstuff - libgit2 - ]; - propagatedBuildInputs = [ - kactivities - ki18n - kio - ktexteditor - kwindowsystem - plasma-framework - ]; - postInstall = '' - wrapQtProgram "$out/bin/kate" - wrapQtProgram "$out/bin/kwrite" - ''; - meta = { - license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kde-app.nix b/pkgs/applications/kde-apps-15.08/kde-app.nix deleted file mode 100644 index 242f3d9c793d3b45a71ccf5947d43d4d5f628fb2..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/kde-app.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ stdenv, lib, debug, srcs }: - -args: - -let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; -in -stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); -}) diff --git a/pkgs/applications/kde-apps-15.08/kde-locale-4.nix b/pkgs/applications/kde-apps-15.08/kde-locale-4.nix deleted file mode 100644 index 4b612ee3e3c28841bb22a37854c6de5ff0eaa202..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/kde-locale-4.nix +++ /dev/null @@ -1,20 +0,0 @@ -name: args: - -{ kdeApp, automoc4, cmake, gettext, kdelibs, perl }: - -kdeApp (args // { - sname = "kde-l10n-${name}"; - name = "kde-l10n-${name}-qt4"; - - nativeBuildInputs = - [ automoc4 cmake gettext perl ] - ++ (args.nativeBuildInputs or []); - buildInputs = - [ kdelibs ] - ++ (args.buildInputs or []); - - preConfigure = '' - sed -e 's/add_subdirectory(5)//' -i CMakeLists.txt - ${args.preConfigure or ""} - ''; -}) diff --git a/pkgs/applications/kde-apps-15.08/kde-locale-5.nix b/pkgs/applications/kde-apps-15.08/kde-locale-5.nix deleted file mode 100644 index 522fc542aeb2d03c598497d834840d727119fb35..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/kde-locale-5.nix +++ /dev/null @@ -1,17 +0,0 @@ -name: args: - -{ kdeApp, cmake, extra-cmake-modules, gettext, kdoctools }: - -kdeApp (args // { - sname = "kde-l10n-${name}"; - name = "kde-l10n-${name}-qt5"; - - nativeBuildInputs = - [ cmake extra-cmake-modules gettext kdoctools ] - ++ (args.nativeBuildInputs or []); - - preConfigure = '' - sed -e 's/add_subdirectory(4)//' -i CMakeLists.txt - ${args.preConfigure or ""} - ''; -}) diff --git a/pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix b/pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix deleted file mode 100644 index 027b8248c5cd27d0e1bc5b50988e949cca8c16c9..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/kdegraphics-thumbnailers.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, libkexiv2 -, libkdcraw -}: - -kdeApp { - name = "kdegraphics-thumbnailers"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libkexiv2 - libkdcraw - ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/kgpg.nix b/pkgs/applications/kde-apps-15.08/kgpg.nix deleted file mode 100644 index 3ee925197189e48e514df65b9ac8a1575b060bce..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/kgpg.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, makeWrapper -, perl -, pkgconfig -, boost -, gpgme -, kdelibs -, kdepimlibs -, gnupg -}: - -kdeApp { - name = "kgpg"; - nativeBuildInputs = [ - automoc4 - cmake - makeWrapper - perl - pkgconfig - ]; - buildInputs = [ - boost - gpgme - kdelibs - kdepimlibs - ]; - postInstall = '' - wrapProgram "$out/bin/kgpg" \ - --prefix PATH : "${gnupg}/bin" - ''; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/konsole.nix b/pkgs/applications/kde-apps-15.08/konsole.nix deleted file mode 100644 index 4b4cba2a37795076cff219f5d88d65f977218705..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/konsole.nix +++ /dev/null @@ -1,68 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, qtscript -, kbookmarks -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kguiaddons -, ki18n -, kiconthemes -, kinit -, kdelibs4support -, kio -, knotifications -, knotifyconfig -, kparts -, kpty -, kservice -, ktextwidgets -, kwidgetsaddons -, kwindowsystem -, kxmlgui -}: - -kdeApp { - name = "konsole"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - qtscript - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kguiaddons - kiconthemes - kinit - kio - knotifications - knotifyconfig - kparts - kpty - kservice - ktextwidgets - kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ - kdelibs4support - ki18n - kwindowsystem - ]; - postInstall = '' - wrapQtProgram "$out/bin/konsole" - ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/ksnapshot.nix b/pkgs/applications/kde-apps-15.08/ksnapshot.nix deleted file mode 100644 index b757f4f04037e9ed4773b4cdffaf58f110100f0d..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/ksnapshot.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, libkipi -, libXfixes -}: - -kdeApp { - name = "ksnapshot"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libkipi - libXfixes - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/l10n.nix b/pkgs/applications/kde-apps-15.08/l10n.nix deleted file mode 100644 index 7a9f1c36cbfddf107c19f3e9be74394733b7a05f..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/l10n.nix +++ /dev/null @@ -1,231 +0,0 @@ -{ callPackage, pkgs, lib }: - -let - - kdeLocale4 = import ./kde-locale-4.nix; - kdeLocale5 = import ./kde-locale-5.nix; - -in - -lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { - ar = { - qt4 = callPackage (kdeLocale4 "ar" {}) {}; - qt5 = callPackage (kdeLocale5 "ar" {}) {}; - }; - bg = { - qt4 = callPackage (kdeLocale4 "bg" {}) {}; - qt5 = callPackage (kdeLocale5 "bg" {}) {}; - }; - bs = { - qt4 = callPackage (kdeLocale4 "bs" {}) {}; - qt5 = callPackage (kdeLocale5 "bs" {}) {}; - }; - ca = { - qt4 = callPackage (kdeLocale4 "ca" {}) {}; - qt5 = callPackage (kdeLocale5 "ca" {}) {}; - }; - ca_valencia = { - qt4 = callPackage (kdeLocale4 "ca_valencia" {}) {}; - qt5 = callPackage (kdeLocale5 "ca_valencia" {}) {}; - }; - cs = { - qt4 = callPackage (kdeLocale4 "cs" {}) {}; - qt5 = callPackage (kdeLocale5 "cs" {}) {}; - }; - da = { - qt4 = callPackage (kdeLocale4 "da" {}) {}; - qt5 = callPackage (kdeLocale5 "da" {}) {}; - }; - de = { - qt4 = callPackage (kdeLocale4 "de" {}) {}; - qt5 = callPackage (kdeLocale5 "de" {}) {}; - }; - el = { - qt4 = callPackage (kdeLocale4 "el" {}) {}; - qt5 = callPackage (kdeLocale5 "el" {}) {}; - }; - en_GB = { - qt4 = callPackage (kdeLocale4 "en_GB" {}) {}; - qt5 = callPackage (kdeLocale5 "en_GB" {}) {}; - }; - eo = { - qt4 = callPackage (kdeLocale4 "eo" {}) {}; - qt5 = callPackage (kdeLocale5 "eo" {}) {}; - }; - es = { - qt4 = callPackage (kdeLocale4 "es" {}) {}; - qt5 = callPackage (kdeLocale5 "es" {}) {}; - }; - et = { - qt4 = callPackage (kdeLocale4 "et" {}) {}; - qt5 = callPackage (kdeLocale5 "et" {}) {}; - }; - eu = { - qt4 = callPackage (kdeLocale4 "eu" {}) {}; - qt5 = callPackage (kdeLocale5 "eu" {}) {}; - }; - fa = { - qt4 = callPackage (kdeLocale4 "fa" {}) {}; - qt5 = callPackage (kdeLocale5 "fa" {}) {}; - }; - fi = { - qt4 = callPackage (kdeLocale4 "fi" {}) {}; - qt5 = callPackage (kdeLocale5 "fi" {}) {}; - }; - fr = { - qt4 = callPackage (kdeLocale4 "fr" {}) {}; - qt5 = callPackage (kdeLocale5 "fr" {}) {}; - }; - ga = { - qt4 = callPackage (kdeLocale4 "ga" {}) {}; - qt5 = callPackage (kdeLocale5 "ga" {}) {}; - }; - gl = { - qt4 = callPackage (kdeLocale4 "gl" {}) {}; - qt5 = callPackage (kdeLocale5 "gl" {}) {}; - }; - he = { - qt4 = callPackage (kdeLocale4 "he" {}) {}; - qt5 = callPackage (kdeLocale5 "he" {}) {}; - }; - hi = { - qt4 = callPackage (kdeLocale4 "hi" {}) {}; - qt5 = callPackage (kdeLocale5 "hi" {}) {}; - }; - hr = { - qt4 = callPackage (kdeLocale4 "hr" {}) {}; - qt5 = callPackage (kdeLocale5 "hr" {}) {}; - }; - hu = { - qt4 = callPackage (kdeLocale4 "hu" {}) {}; - qt5 = callPackage (kdeLocale5 "hu" {}) {}; - }; - ia = { - qt4 = callPackage (kdeLocale4 "ia" {}) {}; - qt5 = callPackage (kdeLocale5 "ia" {}) {}; - }; - id = { - qt4 = callPackage (kdeLocale4 "id" {}) {}; - qt5 = callPackage (kdeLocale5 "id" {}) {}; - }; - is = { - qt4 = callPackage (kdeLocale4 "is" {}) {}; - qt5 = callPackage (kdeLocale5 "is" {}) {}; - }; - it = { - qt4 = callPackage (kdeLocale4 "it" {}) {}; - qt5 = callPackage (kdeLocale5 "it" {}) {}; - }; - ja = { - qt4 = callPackage (kdeLocale4 "ja" {}) {}; - qt5 = callPackage (kdeLocale5 "ja" {}) {}; - }; - kk = { - qt4 = callPackage (kdeLocale4 "kk" {}) {}; - qt5 = callPackage (kdeLocale5 "kk" {}) {}; - }; - km = { - qt4 = callPackage (kdeLocale4 "km" {}) {}; - qt5 = callPackage (kdeLocale5 "km" {}) {}; - }; - ko = { - qt4 = callPackage (kdeLocale4 "ko" {}) {}; - qt5 = callPackage (kdeLocale5 "ko" {}) {}; - }; - lt = { - qt4 = callPackage (kdeLocale4 "lt" {}) {}; - qt5 = callPackage (kdeLocale5 "lt" {}) {}; - }; - lv = { - qt4 = callPackage (kdeLocale4 "lv" {}) {}; - qt5 = callPackage (kdeLocale5 "lv" {}) {}; - }; - mr = { - qt4 = callPackage (kdeLocale4 "mr" {}) {}; - qt5 = callPackage (kdeLocale5 "mr" {}) {}; - }; - nb = { - qt4 = callPackage (kdeLocale4 "nb" {}) {}; - qt5 = callPackage (kdeLocale5 "nb" {}) {}; - }; - nds = { - qt4 = callPackage (kdeLocale4 "nds" {}) {}; - qt5 = callPackage (kdeLocale5 "nds" {}) {}; - }; - nl = { - qt4 = callPackage (kdeLocale4 "nl" {}) {}; - qt5 = callPackage (kdeLocale5 "nl" {}) {}; - }; - nn = { - qt4 = callPackage (kdeLocale4 "nn" {}) {}; - qt5 = callPackage (kdeLocale5 "nn" {}) {}; - }; - pa = { - qt4 = callPackage (kdeLocale4 "pa" {}) {}; - qt5 = callPackage (kdeLocale5 "pa" {}) {}; - }; - pl = { - qt4 = callPackage (kdeLocale4 "pl" {}) {}; - qt5 = callPackage (kdeLocale5 "pl" {}) {}; - }; - pt = { - qt4 = callPackage (kdeLocale4 "pt" {}) {}; - qt5 = callPackage (kdeLocale5 "pt" {}) {}; - }; - pt_BR = { - qt4 = callPackage (kdeLocale4 "pt_BR" {}) {}; - qt5 = callPackage (kdeLocale5 "pt_BR" {}) {}; - }; - ro = { - qt4 = callPackage (kdeLocale4 "ro" {}) {}; - qt5 = callPackage (kdeLocale5 "ro" {}) {}; - }; - ru = { - qt4 = callPackage (kdeLocale4 "ru" {}) {}; - qt5 = callPackage (kdeLocale5 "ru" {}) {}; - }; - sk = { - qt4 = callPackage (kdeLocale4 "sk" {}) {}; - qt5 = callPackage (kdeLocale5 "sk" {}) {}; - }; - sl = { - qt4 = callPackage (kdeLocale4 "sl" {}) {}; - qt5 = callPackage (kdeLocale5 "sl" {}) {}; - }; - sr = { - qt4 = callPackage (kdeLocale4 "sr" {}) {}; - qt5 = callPackage (kdeLocale5 "sr" { - preConfigure = '' - sed -e 's/add_subdirectory(kdesdk)//' -i 5/sr/data/CMakeLists.txt - ''; - }) {}; - }; - sv = { - qt4 = callPackage (kdeLocale4 "sv" {}) {}; - qt5 = callPackage (kdeLocale5 "sv" {}) {}; - }; - tr = { - qt4 = callPackage (kdeLocale4 "tr" {}) {}; - qt5 = callPackage (kdeLocale5 "tr" {}) {}; - }; - ug = { - qt4 = callPackage (kdeLocale4 "ug" {}) {}; - qt5 = callPackage (kdeLocale5 "ug" {}) {}; - }; - uk = { - qt4 = callPackage (kdeLocale4 "uk" {}) {}; - qt5 = callPackage (kdeLocale5 "uk" {}) {}; - }; - wa = { - qt4 = callPackage (kdeLocale4 "wa" {}) {}; - qt5 = callPackage (kdeLocale5 "wa" {}) {}; - }; - zh_CN = { - qt4 = callPackage (kdeLocale4 "zh_CN" {}) {}; - qt5 = callPackage (kdeLocale5 "zh_CN" {}) {}; - }; - zh_TW = { - qt4 = callPackage (kdeLocale4 "zh_TW" {}) {}; - qt5 = callPackage (kdeLocale5 "zh_TW" {}) {}; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/libkdcraw.nix b/pkgs/applications/kde-apps-15.08/libkdcraw.nix deleted file mode 100644 index 8b19e9f90c6406f2fb1471f89ac2dc5777f84e89..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/libkdcraw.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, libraw -, kdelibs -}: - -kdeApp { - name = "libkdcraw"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libraw - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/libkexiv2.nix b/pkgs/applications/kde-apps-15.08/libkexiv2.nix deleted file mode 100644 index 8ed842369556bbe7ccf6f7311cf9527fe95b7e67..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/libkexiv2.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, exiv2 -, kdelibs -}: - -kdeApp { - name = "libkexiv2"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - exiv2 - kdelibs - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/libkipi.nix b/pkgs/applications/kde-apps-15.08/libkipi.nix deleted file mode 100644 index a9053b467f93af8f426aadcccc5f467102753701..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/libkipi.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -}: - -kdeApp { - name = "libkipi"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/okular.nix b/pkgs/applications/kde-apps-15.08/okular.nix deleted file mode 100644 index 0691325d7a52ce0d19e0581f41ed22d6c4471337..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/okular.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, qimageblitz -, poppler_qt4 -, libspectre -, libkexiv2 -, djvulibre -, libtiff -, freetype -, ebook_tools -}: - -kdeApp { - name = "okular"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - qimageblitz - poppler_qt4 - libspectre - libkexiv2 - djvulibre - libtiff - freetype - ebook_tools - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/oxygen-icons.nix b/pkgs/applications/kde-apps-15.08/oxygen-icons.nix deleted file mode 100644 index 4f9a92dffdd12078b97965cb96c3c1a9cb48960d..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/oxygen-icons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeApp -, lib -, cmake -}: - -kdeApp { - name = "oxygen-icons"; - nativeBuildInputs = [ cmake ]; - meta = { - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/print-manager.nix b/pkgs/applications/kde-apps-15.08/print-manager.nix deleted file mode 100644 index b4eab372789d68e50b19c7519971b5a24539bc89..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/print-manager.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, qtdeclarative -, cups -, kconfig -, kconfigwidgets -, kdbusaddons -, kiconthemes -, ki18n -, kcmutils -, kio -, knotifications -, plasma-framework -, kwidgetsaddons -, kwindowsystem -, kitemviews -}: - -kdeApp { - name = "print-manager"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - cups - kconfig - kconfigwidgets - kdbusaddons - kiconthemes - kcmutils - knotifications - kwidgetsaddons - kitemviews - ]; - propagatedBuildInputs = [ - ki18n - kio - kwindowsystem - plasma-framework - qtdeclarative - ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.08/srcs.nix b/pkgs/applications/kde-apps-15.08/srcs.nix deleted file mode 100644 index d0187495729870348065db20fbff5231b74376fa..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.08/srcs.nix +++ /dev/null @@ -1,1981 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - akonadi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/akonadi-15.08.3.tar.xz"; - sha256 = "0v7zwvixfpf5fskxlamvmyaagb2vxqkw81fzsb4yiyq8493lm0mf"; - name = "akonadi-15.08.3.tar.xz"; - }; - }; - akonadi-calendar = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/akonadi-calendar-15.08.3.tar.xz"; - sha256 = "11mp32k71pa9f6gkqmm1dkia1ljcr9wdx4iyb9ys8fm580xxk5gv"; - name = "akonadi-calendar-15.08.3.tar.xz"; - }; - }; - akonadi-search = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/akonadi-search-15.08.3.tar.xz"; - sha256 = "10iwmb76yijqpagvsjgwyksq1j3j61ihv2hmi09z44zz4w171vzb"; - name = "akonadi-search-15.08.3.tar.xz"; - }; - }; - amor = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/amor-15.08.3.tar.xz"; - sha256 = "0jci7yvxc1z7kcs1sw85dvsvz2c2ak2szxlf5bz09msgpxgb0xxc"; - name = "amor-15.08.3.tar.xz"; - }; - }; - analitza = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/analitza-15.08.3.tar.xz"; - sha256 = "174s4qd0j6yx4r8vn7ak598d5kiyhqzy2cc4l7iynpyqs28ybpwi"; - name = "analitza-15.08.3.tar.xz"; - }; - }; - ark = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ark-15.08.3.tar.xz"; - sha256 = "0w61ifdwhv6prnxryqsz4ka7508jj4w3zj4c2x34lv2g9q05fw21"; - name = "ark-15.08.3.tar.xz"; - }; - }; - artikulate = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/artikulate-15.08.3.tar.xz"; - sha256 = "0bsdjjr5zyl57iagxd1vb1g5zz1w6k85788pwp1rkvwwv7qmdcng"; - name = "artikulate-15.08.3.tar.xz"; - }; - }; - audiocd-kio = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/audiocd-kio-15.08.3.tar.xz"; - sha256 = "09v5a6r8ks5zaxd1p35wqngnaprfww0wvzkjlxs0j2wf7v4in0kb"; - name = "audiocd-kio-15.08.3.tar.xz"; - }; - }; - baloo-widgets = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/baloo-widgets-15.08.3.tar.xz"; - sha256 = "0lavpqv798cfnfpdxn7ypwh77550kky2ar7l3nsi5jczkk2n0kza"; - name = "baloo-widgets-15.08.3.tar.xz"; - }; - }; - blinken = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/blinken-15.08.3.tar.xz"; - sha256 = "00r2yjvj3g1lj0lzvwf0xjgras8fmqllgdy5d8ij5ihg7bb9l3rq"; - name = "blinken-15.08.3.tar.xz"; - }; - }; - bomber = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/bomber-15.08.3.tar.xz"; - sha256 = "084prrbpc5wscbh4w04r4452fs7zkklmfc1mga1ba2wp1fpf24yc"; - name = "bomber-15.08.3.tar.xz"; - }; - }; - bovo = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/bovo-15.08.3.tar.xz"; - sha256 = "0fzwp9n0fn16z3r60ry9zn1acs76dyzrkrl45jv927zk4x7pk5vi"; - name = "bovo-15.08.3.tar.xz"; - }; - }; - cantor = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/cantor-15.08.3.tar.xz"; - sha256 = "0fyy7wda6cd1vnw8whnadfa4hlw5yjw3npv0wdnxql426ig33dd1"; - name = "cantor-15.08.3.tar.xz"; - }; - }; - cervisia = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/cervisia-15.08.3.tar.xz"; - sha256 = "083cw5yh63lkkgv68hynnkx9b8y9myz5h92vbh17vrza07w94zmi"; - name = "cervisia-15.08.3.tar.xz"; - }; - }; - dolphin = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/dolphin-15.08.3.tar.xz"; - sha256 = "188a7yhk93rw8hhab852357jgygji5g45irs063hg47k1kms5vgm"; - name = "dolphin-15.08.3.tar.xz"; - }; - }; - dolphin-plugins = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/dolphin-plugins-15.08.3.tar.xz"; - sha256 = "1jgq418p72g804kkw10n3rawdky750fpq3wbwbdckxwjybanqd7y"; - name = "dolphin-plugins-15.08.3.tar.xz"; - }; - }; - dragon = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/dragon-15.08.3.tar.xz"; - sha256 = "0agncn4c0dbrrnz1rjmnrz9hxlqpavb9nb6zxzcyn30ssmy553qg"; - name = "dragon-15.08.3.tar.xz"; - }; - }; - ffmpegthumbs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ffmpegthumbs-15.08.3.tar.xz"; - sha256 = "15sbfhirys5qj25ns768agq2nanr6q1zyvmm4mbjqasl5rckxkmk"; - name = "ffmpegthumbs-15.08.3.tar.xz"; - }; - }; - filelight = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/filelight-15.08.3.tar.xz"; - sha256 = "0l6bvpxybcf1y2w12q8c9ixa5hgvs6sxa99hmyjxybj2icylr322"; - name = "filelight-15.08.3.tar.xz"; - }; - }; - gpgmepp = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/gpgmepp-15.08.3.tar.xz"; - sha256 = "03nl1zs9lsba0a9ba4qi5kn7l76g3135g7lbf9vfm9pvgl38bdfs"; - name = "gpgmepp-15.08.3.tar.xz"; - }; - }; - granatier = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/granatier-15.08.3.tar.xz"; - sha256 = "1k0pvvygzw5mzakpnrlwqc4rrdqkdbk5y5bw2r44m4594r5vkyfg"; - name = "granatier-15.08.3.tar.xz"; - }; - }; - gwenview = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/gwenview-15.08.3.tar.xz"; - sha256 = "1fdwh2ksivvliz46hzmha36kx1308ixz7zbmxiwfl0z4g49x28k6"; - name = "gwenview-15.08.3.tar.xz"; - }; - }; - jovie = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/jovie-15.08.3.tar.xz"; - sha256 = "1cxkgxkzj8g75jwbfzfc09fb9y3100yk56951vihifgbhilclh5r"; - name = "jovie-15.08.3.tar.xz"; - }; - }; - kaccessible = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kaccessible-15.08.3.tar.xz"; - sha256 = "16a9jvziq4xlc88ypd7qaqnx4dz5cr61l5gqkl3fhlrfc98aqnsm"; - name = "kaccessible-15.08.3.tar.xz"; - }; - }; - kaccounts-integration = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kaccounts-integration-15.08.3.tar.xz"; - sha256 = "146z5lgfy5gpwmyl7gx0qzv3za84g34rq5fqfj8xkw2ww65ncwgs"; - name = "kaccounts-integration-15.08.3.tar.xz"; - }; - }; - kaccounts-providers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kaccounts-providers-15.08.3.tar.xz"; - sha256 = "1nmdfb630k6bs0qzmzl1cl6xsz60nsk6w5kz5qildwgk6ll36dgx"; - name = "kaccounts-providers-15.08.3.tar.xz"; - }; - }; - kajongg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kajongg-15.08.3.tar.xz"; - sha256 = "1xxqxwri5havnmdncqqpi8q0r69mnkf9qbpjzggxq4ciqc99hg8k"; - name = "kajongg-15.08.3.tar.xz"; - }; - }; - kalarmcal = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kalarmcal-15.08.3.tar.xz"; - sha256 = "0vaz3b8wp02qbx4xjj5wqx9vsy7jibhiwr60gl8nimjnyczxnr01"; - name = "kalarmcal-15.08.3.tar.xz"; - }; - }; - kalgebra = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kalgebra-15.08.3.tar.xz"; - sha256 = "1p1zq9lfwakawgnv99n17qxj7bx390pglk6v3j56l2p3zlsqjil1"; - name = "kalgebra-15.08.3.tar.xz"; - }; - }; - kalzium = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kalzium-15.08.3.tar.xz"; - sha256 = "0bz8qv0nmf7ysh47zmwhvwwi7vnb3kd190ci1sg7xdm342xdzdi1"; - name = "kalzium-15.08.3.tar.xz"; - }; - }; - kamera = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kamera-15.08.3.tar.xz"; - sha256 = "1jlywxbsa52rqlzm0lmq2xbz18r56s0jgwylmwja5rjcm0wp58hz"; - name = "kamera-15.08.3.tar.xz"; - }; - }; - kanagram = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kanagram-15.08.3.tar.xz"; - sha256 = "1nlz18ih95ppc7csqzbiix4my7xin8plf5wn55x7pp8jj6q44l2d"; - name = "kanagram-15.08.3.tar.xz"; - }; - }; - kapman = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kapman-15.08.3.tar.xz"; - sha256 = "1i125fkk9lj2azlhcvjxdli53lay0073f81n9vv3fkjyfkmdch2d"; - name = "kapman-15.08.3.tar.xz"; - }; - }; - kapptemplate = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kapptemplate-15.08.3.tar.xz"; - sha256 = "05hh09h58s4b32njf83viplmafbg4lw8zqp0qsyacdn37cid51a8"; - name = "kapptemplate-15.08.3.tar.xz"; - }; - }; - kate = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kate-15.08.3.tar.xz"; - sha256 = "0d31ph43d83mn806yfpj7w630r7rwsj0js6qp9738865il5c4428"; - name = "kate-15.08.3.tar.xz"; - }; - }; - katomic = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/katomic-15.08.3.tar.xz"; - sha256 = "144vchhis0ngg49h1znabx2kp02jfqyh04lq9sdndaawa729d2f6"; - name = "katomic-15.08.3.tar.xz"; - }; - }; - kblackbox = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kblackbox-15.08.3.tar.xz"; - sha256 = "16h4z8aagx8f161fyzzli0hdyqipsc9bl3pnicnkm9fcxlkrs1hj"; - name = "kblackbox-15.08.3.tar.xz"; - }; - }; - kblocks = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kblocks-15.08.3.tar.xz"; - sha256 = "025zharfv24vvvq0jy7kzmxkif4nix7ck40if5x0hxbkn902mmjf"; - name = "kblocks-15.08.3.tar.xz"; - }; - }; - kblog = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kblog-15.08.3.tar.xz"; - sha256 = "1bbkjg43dflqc3yxg96mphsmqzxrphp43m314cdrpka5pb39kdc9"; - name = "kblog-15.08.3.tar.xz"; - }; - }; - kbounce = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kbounce-15.08.3.tar.xz"; - sha256 = "1rn0irm4by01k6k61iam2m27m5dc8i0fi025h4rwmyfqx9hn6f9i"; - name = "kbounce-15.08.3.tar.xz"; - }; - }; - kbreakout = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kbreakout-15.08.3.tar.xz"; - sha256 = "069y45gyi92zm3hyil7ggm6gnimz7wj4g543lix4fx28kd7m044v"; - name = "kbreakout-15.08.3.tar.xz"; - }; - }; - kbruch = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kbruch-15.08.3.tar.xz"; - sha256 = "0panrkmaid998i276wn3jsvmrhq1f7nj20yh9vva3mrc7y0bvhg3"; - name = "kbruch-15.08.3.tar.xz"; - }; - }; - kcachegrind = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcachegrind-15.08.3.tar.xz"; - sha256 = "0hjv28j5lcdxcmdihnyal03gqjfi8lfwxhdlxbzar9dr7r8azg4p"; - name = "kcachegrind-15.08.3.tar.xz"; - }; - }; - kcalc = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcalc-15.08.3.tar.xz"; - sha256 = "1in0b2i58s6sv6fz9z3bqaxby0d33arwmq4gazvc2kzhfxylq501"; - name = "kcalc-15.08.3.tar.xz"; - }; - }; - kcalcore = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcalcore-15.08.3.tar.xz"; - sha256 = "07wpls28xw3pis9l3fmmn64af3n21nv53b9ip6ycflxn3xcqmap8"; - name = "kcalcore-15.08.3.tar.xz"; - }; - }; - kcalutils = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcalutils-15.08.3.tar.xz"; - sha256 = "12h41bnp6vvqcfy8pm2nhqypaggaj7sgh22by8w75qvimb94ddiz"; - name = "kcalutils-15.08.3.tar.xz"; - }; - }; - kcharselect = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcharselect-15.08.3.tar.xz"; - sha256 = "0iy3n8pb5xa6aj1zhbxqpk278c5k4vs9bw0i8jww3id0cwggardn"; - name = "kcharselect-15.08.3.tar.xz"; - }; - }; - kcolorchooser = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcolorchooser-15.08.3.tar.xz"; - sha256 = "1wyjm4d47xm5lflrd63xgwll6xjpxgnc0h8xjk4rrc6nf43w6bn1"; - name = "kcolorchooser-15.08.3.tar.xz"; - }; - }; - kcontacts = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcontacts-15.08.3.tar.xz"; - sha256 = "0j6ag6knz4z76md7bnizx5fwzsqavxbfz33hdpdw6606m5d66j5p"; - name = "kcontacts-15.08.3.tar.xz"; - }; - }; - kcron = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kcron-15.08.3.tar.xz"; - sha256 = "04z8pq5mc1kjvhnkmzgymzs9inynxdkiddq70hs7y94fbfsq2rf0"; - name = "kcron-15.08.3.tar.xz"; - }; - }; - kdeartwork = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdeartwork-15.08.3.tar.xz"; - sha256 = "031v00f4b1jg5z7qlgycjsjiz1hyn6svm9n4mkiybrida2hf6gzv"; - name = "kdeartwork-15.08.3.tar.xz"; - }; - }; - kde-baseapps = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-baseapps-15.08.3.tar.xz"; - sha256 = "0n010z1b0hdj5rdw8p9y28vkai5knfwkgasrw8knvildcfifp913"; - name = "kde-baseapps-15.08.3.tar.xz"; - }; - }; - kde-base-artwork = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-base-artwork-15.08.3.tar.xz"; - sha256 = "054rc5llv2cxkc0yss8i7rnp6dp10srl0g6sxvwm4w9hvicxp1gg"; - name = "kde-base-artwork-15.08.3.tar.xz"; - }; - }; - kdebugsettings = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdebugsettings-15.08.3.tar.xz"; - sha256 = "0jy8gpydkis8jpb0vax6w41rj2hwwp8jvbiif438bvvfwyakx7dk"; - name = "kdebugsettings-15.08.3.tar.xz"; - }; - }; - kde-dev-scripts = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-dev-scripts-15.08.3.tar.xz"; - sha256 = "1zc75alr7ap8i5njfn00d7rzvzmazyxq44zi7fs1p9zcv3lz3gli"; - name = "kde-dev-scripts-15.08.3.tar.xz"; - }; - }; - kde-dev-utils = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-dev-utils-15.08.3.tar.xz"; - sha256 = "06k6iwgaimryhm0lma5m2nmrj1gf9y0fbxnzswxl3cygsvabffyf"; - name = "kde-dev-utils-15.08.3.tar.xz"; - }; - }; - kdeedu-data = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdeedu-data-15.08.3.tar.xz"; - sha256 = "1x91cqjjxaxdvh5fl3jlhnpj344r0j1qgmyw7x1cq05r3spdk47w"; - name = "kdeedu-data-15.08.3.tar.xz"; - }; - }; - kdegraphics-mobipocket = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdegraphics-mobipocket-15.08.3.tar.xz"; - sha256 = "0p1i57m86r21y8zd9lz6rr28ir0jqwy7nmlxkrkpllgd4r3xalhp"; - name = "kdegraphics-mobipocket-15.08.3.tar.xz"; - }; - }; - kdegraphics-strigi-analyzer = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdegraphics-strigi-analyzer-15.08.3.tar.xz"; - sha256 = "1nsi48i2qpa3gddwy3ib7a59i8a96p49nm48xisn2sym34mi31cq"; - name = "kdegraphics-strigi-analyzer-15.08.3.tar.xz"; - }; - }; - kdegraphics-thumbnailers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdegraphics-thumbnailers-15.08.3.tar.xz"; - sha256 = "1ffs3ck1zl4795w73gjiwc146a6f2iqqiy4grmgnmg89irbqcnv7"; - name = "kdegraphics-thumbnailers-15.08.3.tar.xz"; - }; - }; - kde-l10n-ar = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ar-15.08.3.tar.xz"; - sha256 = "0kp82s1h3rmlizm7kb4f5iyr8ljlysic7vqawzv8qnga00w0r90f"; - name = "kde-l10n-ar-15.08.3.tar.xz"; - }; - }; - kde-l10n-bg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bg-15.08.3.tar.xz"; - sha256 = "1769sr2qh3qblz28m104a3jgc0fg4bwy4annfyr2n48sizyan3qd"; - name = "kde-l10n-bg-15.08.3.tar.xz"; - }; - }; - kde-l10n-bs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bs-15.08.3.tar.xz"; - sha256 = "16lgja0cnf8v4szyb2nhlwzpnrzxhhbvjd7w6j0ryfrnrxfd6x7n"; - name = "kde-l10n-bs-15.08.3.tar.xz"; - }; - }; - kde-l10n-ca = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca-15.08.3.tar.xz"; - sha256 = "03hy9qi1lnwv73vn9phrcwr8m0jcj65d18jci01pvbpaj483pmxk"; - name = "kde-l10n-ca-15.08.3.tar.xz"; - }; - }; - kde-l10n-ca_valencia = { - version = "ca_valencia-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca@valencia-15.08.3.tar.xz"; - sha256 = "0h47xlgmlk527mafs834fswplpb8mrma4li247n1lyabyz6m6vhd"; - name = "kde-l10n-ca_valencia-15.08.3.tar.xz"; - }; - }; - kde-l10n-cs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-cs-15.08.3.tar.xz"; - sha256 = "0w403x63nj27iv0lag691a88q15sf5jq0hqylgijcsl6djf1jd66"; - name = "kde-l10n-cs-15.08.3.tar.xz"; - }; - }; - kde-l10n-da = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-da-15.08.3.tar.xz"; - sha256 = "0v3rqc9mzg748qj0g1qm5g2qzjwlhrspkq4dryj792nj5d81xlmx"; - name = "kde-l10n-da-15.08.3.tar.xz"; - }; - }; - kde-l10n-de = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-de-15.08.3.tar.xz"; - sha256 = "0mvdf3ixc5nfrbv5j84pb668wkckcliswcdgd2laasv3s7a57mrg"; - name = "kde-l10n-de-15.08.3.tar.xz"; - }; - }; - kde-l10n-el = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-el-15.08.3.tar.xz"; - sha256 = "0ywgk884l4kvqgaags7k87pm00241pygx630mc4ssrsw3nplv5lh"; - name = "kde-l10n-el-15.08.3.tar.xz"; - }; - }; - kde-l10n-en_GB = { - version = "en_GB-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-en_GB-15.08.3.tar.xz"; - sha256 = "002apvwkmmjqk0z5zrbbrri2wndg439xiwgkdr110a0hvak5v0nl"; - name = "kde-l10n-en_GB-15.08.3.tar.xz"; - }; - }; - kde-l10n-eo = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eo-15.08.3.tar.xz"; - sha256 = "144lrkjchx4gxzj7isfyrcmbbmpgy4a1v1v9cc4a8hf9c1kxzglk"; - name = "kde-l10n-eo-15.08.3.tar.xz"; - }; - }; - kde-l10n-es = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-es-15.08.3.tar.xz"; - sha256 = "160zsf6gss1ngz7pj4gykba83mwdi2id406plab5xznkqyanmp1v"; - name = "kde-l10n-es-15.08.3.tar.xz"; - }; - }; - kde-l10n-et = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-et-15.08.3.tar.xz"; - sha256 = "19gaswa1l5rlbh2k0b2bvbwafp6rnq3l6h5dv8q4yqhz1wsxcssr"; - name = "kde-l10n-et-15.08.3.tar.xz"; - }; - }; - kde-l10n-eu = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eu-15.08.3.tar.xz"; - sha256 = "1mrq2psh5n8gp1iqz41ilqwalpcyznjjqwmv2grf4ay9ss3ljbq0"; - name = "kde-l10n-eu-15.08.3.tar.xz"; - }; - }; - kde-l10n-fa = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fa-15.08.3.tar.xz"; - sha256 = "0axhz589y8zwl45hgi6wfy7ns50d1d3837j5mbl6ghvgs2bayfrj"; - name = "kde-l10n-fa-15.08.3.tar.xz"; - }; - }; - kde-l10n-fi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fi-15.08.3.tar.xz"; - sha256 = "1xk5isp34xmv6rj2xsfjsjfwzbnc3db7jx2kp0a046n1ysv9g6q5"; - name = "kde-l10n-fi-15.08.3.tar.xz"; - }; - }; - kde-l10n-fr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fr-15.08.3.tar.xz"; - sha256 = "1bwp3d0c9654f7m8670gasba67zrhwggvzz3rrcl2x188a10483x"; - name = "kde-l10n-fr-15.08.3.tar.xz"; - }; - }; - kde-l10n-ga = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ga-15.08.3.tar.xz"; - sha256 = "1zgk73ykybjxpl9zh7g5i86ygfvqiaimhg2nxxnb82maq2ba8p7y"; - name = "kde-l10n-ga-15.08.3.tar.xz"; - }; - }; - kde-l10n-gl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-gl-15.08.3.tar.xz"; - sha256 = "0czfkcki0qd48rhn7nxww8961gn7lw06ydnd7d7a4isq9aw6649q"; - name = "kde-l10n-gl-15.08.3.tar.xz"; - }; - }; - kde-l10n-he = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-he-15.08.3.tar.xz"; - sha256 = "0p89y331kbkkl8pbdsqjpf30qqdgpzrchnmpl3wvkv6zgq0m58i7"; - name = "kde-l10n-he-15.08.3.tar.xz"; - }; - }; - kde-l10n-hi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hi-15.08.3.tar.xz"; - sha256 = "0n7p1vndyfmddcgm182nmbxppjiqpq2agm8dziddxvqsmb2pmrfg"; - name = "kde-l10n-hi-15.08.3.tar.xz"; - }; - }; - kde-l10n-hr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hr-15.08.3.tar.xz"; - sha256 = "0nz0jj90zky4r5zphcy7pyblx00xh2i90fklddz1519afzxjzvc6"; - name = "kde-l10n-hr-15.08.3.tar.xz"; - }; - }; - kde-l10n-hu = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hu-15.08.3.tar.xz"; - sha256 = "0v4273knbz9q0jqwgljhxwwryfp4y5nd791qf4nnci8zngyrkwi4"; - name = "kde-l10n-hu-15.08.3.tar.xz"; - }; - }; - kde-l10n-ia = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ia-15.08.3.tar.xz"; - sha256 = "1h4y8b0pn4a19cnvbgsr6ypcy77b3wfh0jn34rnbnvzmwgbbsdgq"; - name = "kde-l10n-ia-15.08.3.tar.xz"; - }; - }; - kde-l10n-id = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-id-15.08.3.tar.xz"; - sha256 = "1rcrpm05lwn4caaxg9zshvn7wvyjx2a580axyxfaldqbgzr4s4nl"; - name = "kde-l10n-id-15.08.3.tar.xz"; - }; - }; - kde-l10n-is = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-is-15.08.3.tar.xz"; - sha256 = "1g40y3y9v88zi2ikzldi818khh4v1sgwfxajx7g37b8f713d5mk3"; - name = "kde-l10n-is-15.08.3.tar.xz"; - }; - }; - kde-l10n-it = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-it-15.08.3.tar.xz"; - sha256 = "1qb42pkj0b4nl6bf5dq5aiirm58divgz1xacrnrlgmis10rm04w6"; - name = "kde-l10n-it-15.08.3.tar.xz"; - }; - }; - kde-l10n-ja = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ja-15.08.3.tar.xz"; - sha256 = "0d4yd9x6gsabfhz22vbab7m30m31c92azhkchnxf4yhwa7x50aay"; - name = "kde-l10n-ja-15.08.3.tar.xz"; - }; - }; - kde-l10n-kk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-kk-15.08.3.tar.xz"; - sha256 = "00gwacqv00mqm262iard2jbfdwz7m5cap08k0iyw931kccdlg5k4"; - name = "kde-l10n-kk-15.08.3.tar.xz"; - }; - }; - kde-l10n-km = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-km-15.08.3.tar.xz"; - sha256 = "0mc0w39262n00q1l8qkjgfwh7w3kwpfzq1y5qsldg948lppk8i5l"; - name = "kde-l10n-km-15.08.3.tar.xz"; - }; - }; - kde-l10n-ko = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ko-15.08.3.tar.xz"; - sha256 = "1bzkx74ymbwazpwm0pdjgq1pqi3x7wlq9v0h63q53wx89ald7lzj"; - name = "kde-l10n-ko-15.08.3.tar.xz"; - }; - }; - kde-l10n-lt = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lt-15.08.3.tar.xz"; - sha256 = "0xkrxp815pbssb1myfchzjyxxgswznvimxdi29kckprsfhrycss9"; - name = "kde-l10n-lt-15.08.3.tar.xz"; - }; - }; - kde-l10n-lv = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lv-15.08.3.tar.xz"; - sha256 = "0rrnydq93rwg1j19vyw2g8d1zmql8yrdiqar6qsck5jljdhwzynv"; - name = "kde-l10n-lv-15.08.3.tar.xz"; - }; - }; - kde-l10n-mr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-mr-15.08.3.tar.xz"; - sha256 = "1kwypcdd3myw53gd0cwz8v43cfdfqhnnq5qrwcfyv6myv2sf1xg4"; - name = "kde-l10n-mr-15.08.3.tar.xz"; - }; - }; - kde-l10n-nb = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nb-15.08.3.tar.xz"; - sha256 = "0blhr196gi1f3m8big82gf01qghj5f3nd8nzxx7i96lmvdc3k8na"; - name = "kde-l10n-nb-15.08.3.tar.xz"; - }; - }; - kde-l10n-nds = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nds-15.08.3.tar.xz"; - sha256 = "117xh1vh3fb23v7i6n9ljn4va3jvqy55mbz3zc997df79mkq0c02"; - name = "kde-l10n-nds-15.08.3.tar.xz"; - }; - }; - kde-l10n-nl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nl-15.08.3.tar.xz"; - sha256 = "1zjjsq8p5ipj5rn9wl9jsixx1pj0ffdnq2myhb727z5lw07nafy9"; - name = "kde-l10n-nl-15.08.3.tar.xz"; - }; - }; - kde-l10n-nn = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nn-15.08.3.tar.xz"; - sha256 = "198x0kdj7w7iqx43llnwb01wshfzjkv2vdazyh7ip86r8whxrika"; - name = "kde-l10n-nn-15.08.3.tar.xz"; - }; - }; - kde-l10n-pa = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pa-15.08.3.tar.xz"; - sha256 = "0i69lf888p4sahms347r1wadni5zg7d9w9a9vv02g7lk193n3r07"; - name = "kde-l10n-pa-15.08.3.tar.xz"; - }; - }; - kde-l10n-pl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pl-15.08.3.tar.xz"; - sha256 = "13b28slaqgwnqi2vw7mclyrbgrfhbpv5w4wb6l1mk6kv6ksh48a2"; - name = "kde-l10n-pl-15.08.3.tar.xz"; - }; - }; - kde-l10n-pt = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt-15.08.3.tar.xz"; - sha256 = "046v644pqvg6nfc767mpgzn8bsrgakmqs94x55cg1y76q5v7fncs"; - name = "kde-l10n-pt-15.08.3.tar.xz"; - }; - }; - kde-l10n-pt_BR = { - version = "pt_BR-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt_BR-15.08.3.tar.xz"; - sha256 = "0kp71wgyrvbvrrlj46fnbjc7bh04wvqdnrv8grxc7zbn037m1kax"; - name = "kde-l10n-pt_BR-15.08.3.tar.xz"; - }; - }; - kde-l10n-ro = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ro-15.08.3.tar.xz"; - sha256 = "0h3l3yb72v8lg6jzsczm37zilsidihjlfpaxbmjvyka440m3rhgz"; - name = "kde-l10n-ro-15.08.3.tar.xz"; - }; - }; - kde-l10n-ru = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ru-15.08.3.tar.xz"; - sha256 = "0drxf6jpd6gd7wnqz3pa2f3x9ay1bsfycyahsbqny6vkqbas18rn"; - name = "kde-l10n-ru-15.08.3.tar.xz"; - }; - }; - kde-l10n-sk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sk-15.08.3.tar.xz"; - sha256 = "0jv5blx2biwpvazr6cc8kmvgqjp3ixmf547q453wkyrss9sg6n7y"; - name = "kde-l10n-sk-15.08.3.tar.xz"; - }; - }; - kde-l10n-sl = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sl-15.08.3.tar.xz"; - sha256 = "1nnjxwhidfw5iyp1rl5sdqpkk3jn1p4csa7v05qssydplqz86plp"; - name = "kde-l10n-sl-15.08.3.tar.xz"; - }; - }; - kde-l10n-sr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sr-15.08.3.tar.xz"; - sha256 = "0dqca94al2x68jyb7zq52vf2zirqlh6bqcgrnvd2h3gkz8yifgkf"; - name = "kde-l10n-sr-15.08.3.tar.xz"; - }; - }; - kde-l10n-sv = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sv-15.08.3.tar.xz"; - sha256 = "1xa31mdcmlw955ybzfpas7fq38ffh9s00v1jvzpys008hhs5y4mr"; - name = "kde-l10n-sv-15.08.3.tar.xz"; - }; - }; - kde-l10n-tr = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-tr-15.08.3.tar.xz"; - sha256 = "0hfl5jbwkfhwpv1kbbcvinzbp6vks7kfn0s8n6c989icnr4y6p18"; - name = "kde-l10n-tr-15.08.3.tar.xz"; - }; - }; - kde-l10n-ug = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ug-15.08.3.tar.xz"; - sha256 = "0aznwrbzvw4zh20zgrmbyvwg0f639vibsq7vf38z3bn1acw22cyh"; - name = "kde-l10n-ug-15.08.3.tar.xz"; - }; - }; - kde-l10n-uk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-uk-15.08.3.tar.xz"; - sha256 = "01h65ysizlcfbn3iim3pgs17y8l8q7qnsf1skqwh6ryib3z20l7d"; - name = "kde-l10n-uk-15.08.3.tar.xz"; - }; - }; - kde-l10n-wa = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-wa-15.08.3.tar.xz"; - sha256 = "0pm4fcziv3jci6vdggxk1mlhfpppm1pgk035rzg8004yhj84mds1"; - name = "kde-l10n-wa-15.08.3.tar.xz"; - }; - }; - kde-l10n-zh_CN = { - version = "zh_CN-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_CN-15.08.3.tar.xz"; - sha256 = "0cnahayw2nf23r7gks34y3llqsiljxv0v20v26nwarj7dcj4r7zv"; - name = "kde-l10n-zh_CN-15.08.3.tar.xz"; - }; - }; - kde-l10n-zh_TW = { - version = "zh_TW-15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_TW-15.08.3.tar.xz"; - sha256 = "1sbfwwvqr6arckzdhs77ar9yz66f4bv1xndw05lpj899k3vd6mp4"; - name = "kde-l10n-zh_TW-15.08.3.tar.xz"; - }; - }; - kdelibs = { - version = "4.14.14"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdelibs-4.14.14.tar.xz"; - sha256 = "055nq12rgilcb3m8gwjxwpalrj7bv2hjvf2h0axba4bjjl99n6b3"; - name = "kdelibs-4.14.14.tar.xz"; - }; - }; - kdenetwork-filesharing = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdenetwork-filesharing-15.08.3.tar.xz"; - sha256 = "0fh11nrlmariyy1rn1ncsjzydidpfwqhr6r73mi8mqbry7vm1kp5"; - name = "kdenetwork-filesharing-15.08.3.tar.xz"; - }; - }; - kdenetwork-strigi-analyzers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdenetwork-strigi-analyzers-15.08.3.tar.xz"; - sha256 = "0adrr6clw75rqjcw1611xwzxb2ma6c4jcawrl5k3xa46qg37g4gk"; - name = "kdenetwork-strigi-analyzers-15.08.3.tar.xz"; - }; - }; - kdenlive = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdenlive-15.08.3.tar.xz"; - sha256 = "0k8x3wipndrg2d424i16bbnnjfv3b43v48jrid28r9vas4b7xghk"; - name = "kdenlive-15.08.3.tar.xz"; - }; - }; - kdepim = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdepim-15.08.3.tar.xz"; - sha256 = "1rpscplpawlqcya17p27gf25rqrv819xrp6vdk44c9p9jw31q4hz"; - name = "kdepim-15.08.3.tar.xz"; - }; - }; - kdepimlibs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdepimlibs-15.08.3.tar.xz"; - sha256 = "0ad20g2wngf265zflaq8h2s25p911llaknf0ni3r63nb4px4jhlw"; - name = "kdepimlibs-15.08.3.tar.xz"; - }; - }; - kdepim-runtime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdepim-runtime-15.08.3.tar.xz"; - sha256 = "0lrwkkjgw8w5r5wgl5d006ainy5dnkpz8kdvbmbgb4hpvj79zba1"; - name = "kdepim-runtime-15.08.3.tar.xz"; - }; - }; - kde-runtime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-runtime-15.08.3.tar.xz"; - sha256 = "0n9nkbmdyf49aw1d85y8g9mx3rs3xnsy34izrbnwa35q9sjg3bsr"; - name = "kde-runtime-15.08.3.tar.xz"; - }; - }; - kdesdk-kioslaves = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdesdk-kioslaves-15.08.3.tar.xz"; - sha256 = "04kyfham56hzwyqydgplqkmn3888wfxsr4hl1690w61qx8m60x3a"; - name = "kdesdk-kioslaves-15.08.3.tar.xz"; - }; - }; - kdesdk-strigi-analyzers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdesdk-strigi-analyzers-15.08.3.tar.xz"; - sha256 = "0dy60s6idbhy3anxqkk8cjrsnb5p1gizhzrxlq9kv2sk3rld1pxc"; - name = "kdesdk-strigi-analyzers-15.08.3.tar.xz"; - }; - }; - kdesdk-thumbnailers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdesdk-thumbnailers-15.08.3.tar.xz"; - sha256 = "077p0alajih4pq3g6k24a3cmsz61kb32iq1mzlkrbq8myadrkz86"; - name = "kdesdk-thumbnailers-15.08.3.tar.xz"; - }; - }; - kde-wallpapers = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kde-wallpapers-15.08.3.tar.xz"; - sha256 = "14wm02ywncd4n0ppwgzag467vp5h0005csnl6na2bb2qrcplpbjd"; - name = "kde-wallpapers-15.08.3.tar.xz"; - }; - }; - kdewebdev = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdewebdev-15.08.3.tar.xz"; - sha256 = "1nsfmff34wpb9cmrmlj32yqihx4aha0bkn7h0j2jvkhqqnwxr802"; - name = "kdewebdev-15.08.3.tar.xz"; - }; - }; - kdf = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdf-15.08.3.tar.xz"; - sha256 = "05lfhivnj332m7br03pm0jflsdsv2kvzxadiic8gmm05yvx6k442"; - name = "kdf-15.08.3.tar.xz"; - }; - }; - kdiamond = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kdiamond-15.08.3.tar.xz"; - sha256 = "1i2wr0fcqi8sji82m6frknvjd8dyvx9p0a8m2b75a5bl4ww95k0b"; - name = "kdiamond-15.08.3.tar.xz"; - }; - }; - kfloppy = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kfloppy-15.08.3.tar.xz"; - sha256 = "0gbagm6jkjj4gmpq0asjgngn3np5b77hry733krzglawdf4dh7jh"; - name = "kfloppy-15.08.3.tar.xz"; - }; - }; - kfourinline = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kfourinline-15.08.3.tar.xz"; - sha256 = "01d94irpyq3z01yvcffw3h5qm8mbcipb855wi3na2ply8jm1kj1s"; - name = "kfourinline-15.08.3.tar.xz"; - }; - }; - kgeography = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kgeography-15.08.3.tar.xz"; - sha256 = "1wfq98dhs2g1k8gw1p98slgyf3f1amwrkqf4ja4hsm4lcxqhmrh5"; - name = "kgeography-15.08.3.tar.xz"; - }; - }; - kget = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kget-15.08.3.tar.xz"; - sha256 = "1wrpjm2hjhl7bz70ga71xmys7jnwq9xyvdr7glb3032z2w52sld5"; - name = "kget-15.08.3.tar.xz"; - }; - }; - kgoldrunner = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kgoldrunner-15.08.3.tar.xz"; - sha256 = "1xxgj46l3b7a8wmas7wsx8h9bg4hgcgiasx3dz27v870i01wzh7i"; - name = "kgoldrunner-15.08.3.tar.xz"; - }; - }; - kgpg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kgpg-15.08.3.tar.xz"; - sha256 = "09am74pb3hs24z3npml98rsbsxzincn85wgvpym02f4gnc5abd42"; - name = "kgpg-15.08.3.tar.xz"; - }; - }; - khangman = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/khangman-15.08.3.tar.xz"; - sha256 = "0fyy37v0ljv1mvxfd4p6x6lflqfmsh703p9j0mb0bd2f6wswwa1l"; - name = "khangman-15.08.3.tar.xz"; - }; - }; - kholidays = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kholidays-15.08.3.tar.xz"; - sha256 = "0vf7pz6i2raw94mcxfzlk9s5hxnampx5lq5b5iyfad5d5vc24215"; - name = "kholidays-15.08.3.tar.xz"; - }; - }; - kidentitymanagement = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kidentitymanagement-15.08.3.tar.xz"; - sha256 = "0napyckxdv4vnj7n063qgiwa7xgwjab5qnz8rl1g60kidvvz7vw0"; - name = "kidentitymanagement-15.08.3.tar.xz"; - }; - }; - kig = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kig-15.08.3.tar.xz"; - sha256 = "15fws8yrdyz68qik1gf3fchrdfyk0mml9p923dzirb6faaz1sfpx"; - name = "kig-15.08.3.tar.xz"; - }; - }; - kigo = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kigo-15.08.3.tar.xz"; - sha256 = "0h48kqadfhlm2jppld9ima4bbzgxnwcfg0y6zbhsvflavi6cpckn"; - name = "kigo-15.08.3.tar.xz"; - }; - }; - killbots = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/killbots-15.08.3.tar.xz"; - sha256 = "1zp68p83adi1qggs8j3pa5rgfdjqy5c4pmc9kp0ndcpk7hi7nwvz"; - name = "killbots-15.08.3.tar.xz"; - }; - }; - kimap = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kimap-15.08.3.tar.xz"; - sha256 = "1wymg2s8yjckzc6zrb56fslbfbvzg41mi5fvnrf54d92lh4s90p0"; - name = "kimap-15.08.3.tar.xz"; - }; - }; - kio-extras = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kio-extras-15.08.3.tar.xz"; - sha256 = "0psi8hj9s961l9xga92g9amv95h0im3nm12fc6vh184h2by2gddf"; - name = "kio-extras-15.08.3.tar.xz"; - }; - }; - kiriki = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kiriki-15.08.3.tar.xz"; - sha256 = "1w9yb38wwi45f8dfsi7wvaq6l9crjb6v0kp74cmaljgvirs3mmjk"; - name = "kiriki-15.08.3.tar.xz"; - }; - }; - kiten = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kiten-15.08.3.tar.xz"; - sha256 = "0rj4rka4wk3zh0s04ry8r4hqhajsi53qv1ns6ra1mbl1v32bw20g"; - name = "kiten-15.08.3.tar.xz"; - }; - }; - kjumpingcube = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kjumpingcube-15.08.3.tar.xz"; - sha256 = "0ccf3zcc31n78ing87h16rjk5kylz7k36lvgp4c9w6w8ahmgzp8g"; - name = "kjumpingcube-15.08.3.tar.xz"; - }; - }; - kldap = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kldap-15.08.3.tar.xz"; - sha256 = "1rnl40367fxq4cgqrrm27a93k3b6gns47gxv2afvjpq7dn142dc2"; - name = "kldap-15.08.3.tar.xz"; - }; - }; - klettres = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/klettres-15.08.3.tar.xz"; - sha256 = "14bbjx20zn5gmxhkgarh7y75j5806rpzbbh0rj2w2lpav8ggma90"; - name = "klettres-15.08.3.tar.xz"; - }; - }; - klickety = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/klickety-15.08.3.tar.xz"; - sha256 = "1vqflsi4k21qj91z7h6hprswpzr7zpdnpkvwwiw2v2zwi4p8m967"; - name = "klickety-15.08.3.tar.xz"; - }; - }; - klines = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/klines-15.08.3.tar.xz"; - sha256 = "103wws54y0sal9w3ikbmksq0d2ndw34xpr972zjcmw06py4kx4kn"; - name = "klines-15.08.3.tar.xz"; - }; - }; - kmag = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmag-15.08.3.tar.xz"; - sha256 = "1hmyc2n8gspd46k4g3k6jh0cfy7r0v5x17l7xrvj45nmhhhnivc0"; - name = "kmag-15.08.3.tar.xz"; - }; - }; - kmahjongg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmahjongg-15.08.3.tar.xz"; - sha256 = "07xsmd0zh9n01cy0fra2njz2qcgp1y7y5w9v4s2bkj3a4gd35ag8"; - name = "kmahjongg-15.08.3.tar.xz"; - }; - }; - kmailtransport = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmailtransport-15.08.3.tar.xz"; - sha256 = "0g8983wq7x4w19k0fxypsk69hi5nrxldvq0a49jna2g2yfxi8w5l"; - name = "kmailtransport-15.08.3.tar.xz"; - }; - }; - kmbox = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmbox-15.08.3.tar.xz"; - sha256 = "11fsvjmidb9s309wlcchgmb4viambqmw1njy6g5c2zpyfw9ryq8b"; - name = "kmbox-15.08.3.tar.xz"; - }; - }; - kmime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmime-15.08.3.tar.xz"; - sha256 = "16pfzjdiaa9z2nq564bcrb82f50zh1cd8zyx7jzwzzw6cspv5n0q"; - name = "kmime-15.08.3.tar.xz"; - }; - }; - kmines = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmines-15.08.3.tar.xz"; - sha256 = "18ld9y50axz77cspm1rccm0w21h01zihbh0880gf2vjqwcv1ifxc"; - name = "kmines-15.08.3.tar.xz"; - }; - }; - kmix = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmix-15.08.3.tar.xz"; - sha256 = "0mkh7jvn26d6i38zzinx2gh9bl50scis17maj56c9m67i4m0hlk9"; - name = "kmix-15.08.3.tar.xz"; - }; - }; - kmousetool = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmousetool-15.08.3.tar.xz"; - sha256 = "07ddvl9nmigqq12mz27x0gw3lhb8a6ilfmqlx5sm810cp7b4claq"; - name = "kmousetool-15.08.3.tar.xz"; - }; - }; - kmouth = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmouth-15.08.3.tar.xz"; - sha256 = "1m0y8fdyh1glh27azi700zzvdpki0chjphnq5gx9339hbf97bdi4"; - name = "kmouth-15.08.3.tar.xz"; - }; - }; - kmplot = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kmplot-15.08.3.tar.xz"; - sha256 = "1zk8ccl2yhxgi18qkabjzm4ffcyg6flvvh3fy3hz7l1cikb6dza1"; - name = "kmplot-15.08.3.tar.xz"; - }; - }; - knavalbattle = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/knavalbattle-15.08.3.tar.xz"; - sha256 = "1g1dy0a0rvil31rj4s0z8gic9nb9xpx6xl7b91a36wj6cab57434"; - name = "knavalbattle-15.08.3.tar.xz"; - }; - }; - knetwalk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/knetwalk-15.08.3.tar.xz"; - sha256 = "0iapwmdy7i9dps3jf7ski75xdjg4bkp0fhz9njng11yx1g3a64qi"; - name = "knetwalk-15.08.3.tar.xz"; - }; - }; - kolf = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kolf-15.08.3.tar.xz"; - sha256 = "1akvicna1wzjcjdz2nz2mydmv9f39rff6jwcbj6blgdr1q56p4q7"; - name = "kolf-15.08.3.tar.xz"; - }; - }; - kollision = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kollision-15.08.3.tar.xz"; - sha256 = "1r9ijp1bgl20rv76if09695bkc5yrr99sn1s0193fjjh34fpd0w8"; - name = "kollision-15.08.3.tar.xz"; - }; - }; - kolourpaint = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kolourpaint-15.08.3.tar.xz"; - sha256 = "1miq2jvmqkgcwpzh2vzzb2dvmb8ziwr767ss5daqv540gpc8crjr"; - name = "kolourpaint-15.08.3.tar.xz"; - }; - }; - kompare = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kompare-15.08.3.tar.xz"; - sha256 = "067m9xrnx6smscsk7wq9d8j2sv0g7ayfrdjwf4xsfa5jz8fh32s5"; - name = "kompare-15.08.3.tar.xz"; - }; - }; - konquest = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/konquest-15.08.3.tar.xz"; - sha256 = "1v760lh6wx8kqyyrw2vb48n5x0ccl12dr3gy5dxyrs9sn0jpwz4r"; - name = "konquest-15.08.3.tar.xz"; - }; - }; - konsole = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/konsole-15.08.3.tar.xz"; - sha256 = "0kpizwk3vwp25sincqnjrmvrhwv2a7vgacnw4yp2bxvdqqrb4zhr"; - name = "konsole-15.08.3.tar.xz"; - }; - }; - kontactinterface = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kontactinterface-15.08.3.tar.xz"; - sha256 = "1www2daa48r43dii2fb9s0x2ll3bsvhxnllypcs2fy5gzaj6wrff"; - name = "kontactinterface-15.08.3.tar.xz"; - }; - }; - kopete = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kopete-15.08.3.tar.xz"; - sha256 = "1x05w7ls0298shwr10f0vcbxcd0rvfvgfcwz2c5jrgb1zf968k8c"; - name = "kopete-15.08.3.tar.xz"; - }; - }; - kpat = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kpat-15.08.3.tar.xz"; - sha256 = "16lmrlxxl3kibzflw3lvcbp7xmklr4jqwh1aqqxw5lbybkz2vnah"; - name = "kpat-15.08.3.tar.xz"; - }; - }; - kpimtextedit = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kpimtextedit-15.08.3.tar.xz"; - sha256 = "1q1a77wnwny7j777vrhbqlz6z1z7jmil8raii4nbrwjqpdw8fc92"; - name = "kpimtextedit-15.08.3.tar.xz"; - }; - }; - kppp = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kppp-15.08.3.tar.xz"; - sha256 = "0q5542f9aa98w94krib84yrjsk3ialaq43vd9bbdvf0j5wfzb276"; - name = "kppp-15.08.3.tar.xz"; - }; - }; - kqtquickcharts = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kqtquickcharts-15.08.3.tar.xz"; - sha256 = "0ppifqc9bz8hljniw6h5a31k38qbij9ydpwjzpg11m0s8a4havmm"; - name = "kqtquickcharts-15.08.3.tar.xz"; - }; - }; - krdc = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/krdc-15.08.3.tar.xz"; - sha256 = "1vcfx703bniac9l7g6cg031nb18blypxb1i84dwfjavr4ib2im8l"; - name = "krdc-15.08.3.tar.xz"; - }; - }; - kremotecontrol = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kremotecontrol-15.08.3.tar.xz"; - sha256 = "0nxbw1zl8lcc9nvj5damz7m5q6bijm8mjx7isccf7j6mjazdxcin"; - name = "kremotecontrol-15.08.3.tar.xz"; - }; - }; - kreversi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kreversi-15.08.3.tar.xz"; - sha256 = "1806m071wgnjg01lrjii9nh7spiwxm9cf0jl0gib7fk2cw9kw2fa"; - name = "kreversi-15.08.3.tar.xz"; - }; - }; - krfb = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/krfb-15.08.3.tar.xz"; - sha256 = "0dil3qpkf8m9449aqawjrilwvickb3nl3msj2g3svdnfvak7cv61"; - name = "krfb-15.08.3.tar.xz"; - }; - }; - kross-interpreters = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kross-interpreters-15.08.3.tar.xz"; - sha256 = "1msy3xg5n5g2ax074g23j889dadqn4mbqa3r5mlmdaz9bnny1n9r"; - name = "kross-interpreters-15.08.3.tar.xz"; - }; - }; - kruler = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kruler-15.08.3.tar.xz"; - sha256 = "1mr1pzn776a7xgq0rwqdn635s9y2bl0bh53i1c99h32jbxhn6fhb"; - name = "kruler-15.08.3.tar.xz"; - }; - }; - ksaneplugin = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksaneplugin-15.08.3.tar.xz"; - sha256 = "18mpjl21rmbw95zc2b8f9sgi2sh922p0qj8d3jfhs3gggjy5hjfb"; - name = "ksaneplugin-15.08.3.tar.xz"; - }; - }; - kscd = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kscd-15.08.3.tar.xz"; - sha256 = "0pqr342swpbwkqq7qwn7zs97kmbqpmwrlkkk0amaadgsfd9c9j40"; - name = "kscd-15.08.3.tar.xz"; - }; - }; - kshisen = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kshisen-15.08.3.tar.xz"; - sha256 = "0xx8lwxw4zfzwzaqdi1v7g00vzy74arfbfhvkxgs6k1gvhja0ckk"; - name = "kshisen-15.08.3.tar.xz"; - }; - }; - ksirk = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksirk-15.08.3.tar.xz"; - sha256 = "1y6y0dcgvrpflfmircbf3nj7mjgvkbnddlmbxsws4h0737lqkg21"; - name = "ksirk-15.08.3.tar.xz"; - }; - }; - ksnakeduel = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksnakeduel-15.08.3.tar.xz"; - sha256 = "1zpz3fa9lp44iv5kxdwy1sk93bpkin9h64n6qj0lcpjj3f8a5cy5"; - name = "ksnakeduel-15.08.3.tar.xz"; - }; - }; - ksnapshot = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksnapshot-15.08.3.tar.xz"; - sha256 = "1xnbf73dr8z95kwq047zwjl0yml25nbnw5gnc319q2nlcnxk5gc3"; - name = "ksnapshot-15.08.3.tar.xz"; - }; - }; - kspaceduel = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kspaceduel-15.08.3.tar.xz"; - sha256 = "12dbdybqfd5klfg427q48rbv2s63ybanay8c5d44znwk5qi9wwf7"; - name = "kspaceduel-15.08.3.tar.xz"; - }; - }; - ksquares = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksquares-15.08.3.tar.xz"; - sha256 = "1jr7slw9ml01zffj5kjv56fmwq8snz0jxdkczr2crr15cljrsmwj"; - name = "ksquares-15.08.3.tar.xz"; - }; - }; - kstars = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kstars-15.08.3.tar.xz"; - sha256 = "17n2g1a53ps0cx1s62qz1s7yn8nn0sgq0p4ifdyq9rk5iwaq5yp8"; - name = "kstars-15.08.3.tar.xz"; - }; - }; - ksudoku = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksudoku-15.08.3.tar.xz"; - sha256 = "0rw02qdvv132i6gf2n1v37b7rmahzmmz5jx174j1syda4wwpyhgr"; - name = "ksudoku-15.08.3.tar.xz"; - }; - }; - ksystemlog = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ksystemlog-15.08.3.tar.xz"; - sha256 = "12gacxya366rln3q9m2vzv28irrwnsj4lb1pqymxvsfyijfsjd7x"; - name = "ksystemlog-15.08.3.tar.xz"; - }; - }; - kteatime = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kteatime-15.08.3.tar.xz"; - sha256 = "1yij4230wc7qc9wzj5kam6jjv97xdcnz57j0kpa54iw1c3camwlx"; - name = "kteatime-15.08.3.tar.xz"; - }; - }; - ktimer = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktimer-15.08.3.tar.xz"; - sha256 = "06p2dar8ry4xrkn21npxsnfkxq92sg66lmrnhqpkzv3dcvz98n50"; - name = "ktimer-15.08.3.tar.xz"; - }; - }; - ktnef = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktnef-15.08.3.tar.xz"; - sha256 = "1r68cms5hv8drrdl2zhz8q9hsiln63c1rylbv68dxjz44w5jsw84"; - name = "ktnef-15.08.3.tar.xz"; - }; - }; - ktouch = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktouch-15.08.3.tar.xz"; - sha256 = "07piq43fngk7i5568vqpsd0xhfmfbwm4gwbdgvg0qx5cm2np00pp"; - name = "ktouch-15.08.3.tar.xz"; - }; - }; - ktp-accounts-kcm = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-accounts-kcm-15.08.3.tar.xz"; - sha256 = "04q89vay1936rr94g9n54japqml7b40p8qh2nh8wc13vbiiffbq0"; - name = "ktp-accounts-kcm-15.08.3.tar.xz"; - }; - }; - ktp-approver = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-approver-15.08.3.tar.xz"; - sha256 = "131gb9h8pqa2ac4kv8by5wa5f9cdv32413d2039ggkc0zfhyqlbb"; - name = "ktp-approver-15.08.3.tar.xz"; - }; - }; - ktp-auth-handler = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-auth-handler-15.08.3.tar.xz"; - sha256 = "1k9y83miwy77c2pjm8frm6zbkddm463bkdr08lrl3cf9y0azj6xl"; - name = "ktp-auth-handler-15.08.3.tar.xz"; - }; - }; - ktp-common-internals = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-common-internals-15.08.3.tar.xz"; - sha256 = "1p1qg4nkjmly7iilx6nra0qwn7g6kdwn4hw6bs2ikdvsg36kkr72"; - name = "ktp-common-internals-15.08.3.tar.xz"; - }; - }; - ktp-contact-list = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-contact-list-15.08.3.tar.xz"; - sha256 = "15g7nnz8bggscpba74vk6riizv9xn5ndar1lkay77ikfbbyhb0x6"; - name = "ktp-contact-list-15.08.3.tar.xz"; - }; - }; - ktp-contact-runner = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-contact-runner-15.08.3.tar.xz"; - sha256 = "09angbgm877x81wqsbn7cpg75skiv7x4war1lq1yma6nirs7369p"; - name = "ktp-contact-runner-15.08.3.tar.xz"; - }; - }; - ktp-desktop-applets = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-desktop-applets-15.08.3.tar.xz"; - sha256 = "18x08b38s46pz6crd1qg1b6qy7xxfhhp0pk2hsc5v4s7j931q8v9"; - name = "ktp-desktop-applets-15.08.3.tar.xz"; - }; - }; - ktp-filetransfer-handler = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-filetransfer-handler-15.08.3.tar.xz"; - sha256 = "1w7hnhbjmnl7ba1357b6q440266fgh7kyim9cn919i89aah2d11y"; - name = "ktp-filetransfer-handler-15.08.3.tar.xz"; - }; - }; - ktp-kded-module = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-kded-module-15.08.3.tar.xz"; - sha256 = "0s86d0yad758hgzbd9nb9hpq8iglq8bcmy7wdn0ji2nyppprf0jc"; - name = "ktp-kded-module-15.08.3.tar.xz"; - }; - }; - ktp-send-file = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-send-file-15.08.3.tar.xz"; - sha256 = "15pc0p6f87hwh19kwf6wzd04rf96r2z7xj8h89y86xwirn02spgv"; - name = "ktp-send-file-15.08.3.tar.xz"; - }; - }; - ktp-text-ui = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktp-text-ui-15.08.3.tar.xz"; - sha256 = "04lxwq5cm7rg7xras47lngzn0pwfy6yp41lrybl2ywg9rvbdfv4s"; - name = "ktp-text-ui-15.08.3.tar.xz"; - }; - }; - ktuberling = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktuberling-15.08.3.tar.xz"; - sha256 = "0bs41wlriak2087r1q3zlkblcjl504g1dvhrxx3fymmxgxkir6k6"; - name = "ktuberling-15.08.3.tar.xz"; - }; - }; - kturtle = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kturtle-15.08.3.tar.xz"; - sha256 = "0i4n3k2rji85y0x5aacrpab4jxx5skh3c96yfb9190s6ick3s4jg"; - name = "kturtle-15.08.3.tar.xz"; - }; - }; - ktux = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/ktux-15.08.3.tar.xz"; - sha256 = "0dcida7qjwglra7b17hb15dn240nnbsryps49d9k0fmv7y8cdicd"; - name = "ktux-15.08.3.tar.xz"; - }; - }; - kubrick = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kubrick-15.08.3.tar.xz"; - sha256 = "07bq203ds77v41nqjrydlls25whhpmaqq4wvqqnafz6j3122972m"; - name = "kubrick-15.08.3.tar.xz"; - }; - }; - kuser = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kuser-15.08.3.tar.xz"; - sha256 = "1lhrrrfg0zfkxv87kclfz7lw57knhalfclik9g2g84mjd2mrp23c"; - name = "kuser-15.08.3.tar.xz"; - }; - }; - kwalletmanager = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kwalletmanager-15.08.3.tar.xz"; - sha256 = "1wh4gkqyz003qx50q4m35987rabjh80npg1hiqmybz60syq1bash"; - name = "kwalletmanager-15.08.3.tar.xz"; - }; - }; - kwordquiz = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/kwordquiz-15.08.3.tar.xz"; - sha256 = "1fr68aq6f1ilfvfvcxvjg90dpwsig36nxb5v35rbpg1kjz8lxdl3"; - name = "kwordquiz-15.08.3.tar.xz"; - }; - }; - libkcddb = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkcddb-15.08.3.tar.xz"; - sha256 = "0yspqyj11q4l5b0hmy9068hg7kkbqwy5zq72clbf30lys6h9mqb6"; - name = "libkcddb-15.08.3.tar.xz"; - }; - }; - libkcompactdisc = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkcompactdisc-15.08.3.tar.xz"; - sha256 = "1fvf219dj1dbl69nmdyzvyds9c1f77zqzqwv2l87brk5syshsywp"; - name = "libkcompactdisc-15.08.3.tar.xz"; - }; - }; - libkdcraw = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkdcraw-15.08.3.tar.xz"; - sha256 = "0m1zc23k68gm0hrdl18sizw5qnpa216m03lzik92m50msndz34bc"; - name = "libkdcraw-15.08.3.tar.xz"; - }; - }; - libkdeedu = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkdeedu-15.08.3.tar.xz"; - sha256 = "1z8dp47900ybppnkpbfvckjkiib9q0ggqm0m83vbmgwzanx7k7sn"; - name = "libkdeedu-15.08.3.tar.xz"; - }; - }; - libkdegames = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkdegames-15.08.3.tar.xz"; - sha256 = "1jg6z4qfagijkr1b2hd05sr0jdb0qvfn1dphd43ma6gi7bl5khn4"; - name = "libkdegames-15.08.3.tar.xz"; - }; - }; - libkeduvocdocument = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkeduvocdocument-15.08.3.tar.xz"; - sha256 = "1b16p9m14v8w0qg1v9jwiiljvpc2samlrcp6bszrld02ghii5649"; - name = "libkeduvocdocument-15.08.3.tar.xz"; - }; - }; - libkexiv2 = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkexiv2-15.08.3.tar.xz"; - sha256 = "0q44gjhdjiy74q5a40kmmcry0m0pnzw454j5ynrimd3nk8r2l6nl"; - name = "libkexiv2-15.08.3.tar.xz"; - }; - }; - libkface = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkface-15.08.3.tar.xz"; - sha256 = "0jiv41f1mqf4813m882v84vczkyxmbmjf8bf7d5iq13i9xr190wg"; - name = "libkface-15.08.3.tar.xz"; - }; - }; - libkgeomap = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkgeomap-15.08.3.tar.xz"; - sha256 = "1jscbp31q91viv2ym09zal4c0vx8xx3lqd4vg78mr9591y1bgr7l"; - name = "libkgeomap-15.08.3.tar.xz"; - }; - }; - libkipi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkipi-15.08.3.tar.xz"; - sha256 = "1v70k9xx8va0xk3439sqllh9sl9sx56bayl0b24gkdc3ddj8l0rk"; - name = "libkipi-15.08.3.tar.xz"; - }; - }; - libkmahjongg = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkmahjongg-15.08.3.tar.xz"; - sha256 = "05zff791i1jih5abx6ywfagxh1rwc38nblfcfci66pqvknmya2x1"; - name = "libkmahjongg-15.08.3.tar.xz"; - }; - }; - libkomparediff2 = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libkomparediff2-15.08.3.tar.xz"; - sha256 = "03aaz64s6f3xc6kv188p301qivnjh27xd8jpmj6yq98laj3v2xrl"; - name = "libkomparediff2-15.08.3.tar.xz"; - }; - }; - libksane = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/libksane-15.08.3.tar.xz"; - sha256 = "01x24gxk0xj6j9zwyyavklphykgjb3w0wra61ivyrsim1za8y0qa"; - name = "libksane-15.08.3.tar.xz"; - }; - }; - lokalize = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/lokalize-15.08.3.tar.xz"; - sha256 = "1xzxbgiq5q1v578d9w9pir279n05z2dyqlgq98213zhama6df18z"; - name = "lokalize-15.08.3.tar.xz"; - }; - }; - lskat = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/lskat-15.08.3.tar.xz"; - sha256 = "1kag1wqr5m1r7s3i29h8ls2zrva2whmaxjj400zgn9j404dyjmmd"; - name = "lskat-15.08.3.tar.xz"; - }; - }; - marble = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/marble-15.08.3.tar.xz"; - sha256 = "0i18wss2zq3nfaxr9h7bnj3nb4ib07d3rylphhbjpi766z6k2cbl"; - name = "marble-15.08.3.tar.xz"; - }; - }; - mplayerthumbs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/mplayerthumbs-15.08.3.tar.xz"; - sha256 = "03zda3iy20zq42kn51894yzsbmyq92gvrlzs2hm7fyp5lv199ybm"; - name = "mplayerthumbs-15.08.3.tar.xz"; - }; - }; - okteta = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/okteta-15.08.3.tar.xz"; - sha256 = "11540qlv95iwzmwi17ncbgklakywwdj4r4iylnkpw7fv4sx6fhrd"; - name = "okteta-15.08.3.tar.xz"; - }; - }; - okular = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/okular-15.08.3.tar.xz"; - sha256 = "1inbvcyafa8dfy7kignb2ksc984kriax7n2qrz3rxydw9n0r6bi5"; - name = "okular-15.08.3.tar.xz"; - }; - }; - oxygen-icons = { - version = "15.04.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz"; - sha256 = "07npzyrbw2fn1qd04imnv7cz0sisk7yllrwr2y21yr2i1gbncfqk"; - name = "oxygen-icons-15.04.3.tar.xz"; - }; - }; - palapeli = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/palapeli-15.08.3.tar.xz"; - sha256 = "167svcjz7a8x032585jx63m94jy3xza5zb1b61rchn2xxbar7fx9"; - name = "palapeli-15.08.3.tar.xz"; - }; - }; - parley = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/parley-15.08.3.tar.xz"; - sha256 = "07gshvn8c3ifyzfkscakc1x7kgbzgxcxx12f05n56nm60rbq89w5"; - name = "parley-15.08.3.tar.xz"; - }; - }; - picmi = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/picmi-15.08.3.tar.xz"; - sha256 = "0cjj6xrdacvwpc6v6xb88j31m60k4gimc7k4hlmyv102vvagmv8y"; - name = "picmi-15.08.3.tar.xz"; - }; - }; - poxml = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/poxml-15.08.3.tar.xz"; - sha256 = "0vls7kdqswwx9cnn8iw1iwq9jl861cmzjk2avrdllpsa4vbjfxal"; - name = "poxml-15.08.3.tar.xz"; - }; - }; - print-manager = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/print-manager-15.08.3.tar.xz"; - sha256 = "19jw5xpwhblxfdh1kf6dniwy3pqmqaq7cimdn8zrzliclfjdfq2m"; - name = "print-manager-15.08.3.tar.xz"; - }; - }; - rocs = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/rocs-15.08.3.tar.xz"; - sha256 = "0qb0krn9cw5jn9djf3drg7c28lxnb6ih2a6q9a6wdl7snc4cxp5r"; - name = "rocs-15.08.3.tar.xz"; - }; - }; - signon-kwallet-extension = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/signon-kwallet-extension-15.08.3.tar.xz"; - sha256 = "0h7ixsxd2d9x4lqxilrajaxw260gdpj6lp68qgkq2vfv4v2hnfpv"; - name = "signon-kwallet-extension-15.08.3.tar.xz"; - }; - }; - step = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/step-15.08.3.tar.xz"; - sha256 = "092byp3y91ljp91n1qp3clsgi5bvfp9c8q90y14llkk3693nq6qa"; - name = "step-15.08.3.tar.xz"; - }; - }; - superkaramba = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/superkaramba-15.08.3.tar.xz"; - sha256 = "1z9pz9syqlz180hb0imvabag3cmwfix89811vbz9lqwa91a4i199"; - name = "superkaramba-15.08.3.tar.xz"; - }; - }; - svgpart = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/svgpart-15.08.3.tar.xz"; - sha256 = "0pdj8dlxdws7ccafj4nldi3xwdzsmbyi2c079ddq3pbrglm2r16h"; - name = "svgpart-15.08.3.tar.xz"; - }; - }; - sweeper = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/sweeper-15.08.3.tar.xz"; - sha256 = "0mmhw0d63b3m88x9wv2dynp1xm04f0kkhp6iqnm69y91wdgy7kq5"; - name = "sweeper-15.08.3.tar.xz"; - }; - }; - syndication = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/syndication-15.08.3.tar.xz"; - sha256 = "05hjxpfyqd8z4q0142n5f97qcwpfwr131xxpvsj1pzrqrx52im27"; - name = "syndication-15.08.3.tar.xz"; - }; - }; - umbrello = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/umbrello-15.08.3.tar.xz"; - sha256 = "0pk4xc7sn1b1i1waxngrna33lhs2p03ny0vqm159qfhqawb3fpyg"; - name = "umbrello-15.08.3.tar.xz"; - }; - }; - zeroconf-ioslave = { - version = "15.08.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.08.3/src/zeroconf-ioslave-15.08.3.tar.xz"; - sha256 = "1vbag0ajhr1b3psg4232j7y0nnff6gdn32r4212ybfzaxnh51479"; - name = "zeroconf-ioslave-15.08.3.tar.xz"; - }; - }; -} diff --git a/pkgs/applications/kde-apps-15.12/default.nix b/pkgs/applications/kde-apps-15.12/default.nix index 0c8c0780aaf2f6511ddf82b3e3a358ccb5edb6bc..e96c0c2af33171c28f29441cab8f9ef51884477d 100644 --- a/pkgs/applications/kde-apps-15.12/default.nix +++ b/pkgs/applications/kde-apps-15.12/default.nix @@ -21,13 +21,14 @@ let srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; mirror = "mirror://kde"; - kdeApp = import ./kde-app.nix { - inherit stdenv lib; - inherit debug srcs; - }; - packages = self: with self; { - inherit (pkgs.kdeApps_15_08) kdelibs ksnapshot; + + kdeApp = import ./kde-app.nix { + inherit stdenv lib; + inherit debug srcs; + }; + + kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; ark = callPackage ./ark.nix {}; baloo-widgets = callPackage ./baloo-widgets.nix {}; @@ -45,10 +46,9 @@ let libkipi = callPackage ./libkipi.nix {}; okular = callPackage ./okular.nix {}; print-manager = callPackage ./print-manager.nix {}; + spectacle = callPackage ./spectacle.nix {}; l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); }; - newScope = scope: pkgs.kf516.newScope ({ inherit kdeApp; } // scope); - -in lib.makeScope newScope packages +in packages diff --git a/pkgs/applications/kde-apps-15.12/fetchsrcs.sh b/pkgs/applications/kde-apps-15.12/fetchsrcs.sh index a5d568a2b6f768bb34a3eedb2e83568c6e809ab5..1a8c17d4ab56d8e98b67238200fc3a1e94d15588 100755 --- a/pkgs/applications/kde-apps-15.12/fetchsrcs.sh +++ b/pkgs/applications/kde-apps-15.12/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/unstable/applications/15.11.80/ -A *.tar.xz' +WGET_ARGS='http://download.kde.org/stable/applications/15.12.0/ -A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/applications/kde-apps-15.12/kdelibs/0001-old-kde4-cmake-policies.patch similarity index 100% rename from pkgs/applications/kde-apps-15.08/kdelibs/0001-old-kde4-cmake-policies.patch rename to pkgs/applications/kde-apps-15.12/kdelibs/0001-old-kde4-cmake-policies.patch diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0002-polkit-install-path.patch b/pkgs/applications/kde-apps-15.12/kdelibs/0002-polkit-install-path.patch similarity index 100% rename from pkgs/applications/kde-apps-15.08/kdelibs/0002-polkit-install-path.patch rename to pkgs/applications/kde-apps-15.12/kdelibs/0002-polkit-install-path.patch diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/applications/kde-apps-15.12/kdelibs/0003-remove_xdg_impurities.patch similarity index 100% rename from pkgs/applications/kde-apps-15.08/kdelibs/0003-remove_xdg_impurities.patch rename to pkgs/applications/kde-apps-15.12/kdelibs/0003-remove_xdg_impurities.patch diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/default.nix b/pkgs/applications/kde-apps-15.12/kdelibs/default.nix similarity index 100% rename from pkgs/applications/kde-apps-15.08/kdelibs/default.nix rename to pkgs/applications/kde-apps-15.12/kdelibs/default.nix diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/polkit-install.patch b/pkgs/applications/kde-apps-15.12/kdelibs/polkit-install.patch similarity index 100% rename from pkgs/applications/kde-apps-15.08/kdelibs/polkit-install.patch rename to pkgs/applications/kde-apps-15.12/kdelibs/polkit-install.patch diff --git a/pkgs/applications/kde-apps-15.08/kdelibs/setup-hook.sh b/pkgs/applications/kde-apps-15.12/kdelibs/setup-hook.sh similarity index 100% rename from pkgs/applications/kde-apps-15.08/kdelibs/setup-hook.sh rename to pkgs/applications/kde-apps-15.12/kdelibs/setup-hook.sh diff --git a/pkgs/applications/kde-apps-15.12/ksnapshot.nix b/pkgs/applications/kde-apps-15.12/ksnapshot.nix deleted file mode 100644 index b757f4f04037e9ed4773b4cdffaf58f110100f0d..0000000000000000000000000000000000000000 --- a/pkgs/applications/kde-apps-15.12/ksnapshot.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, libkipi -, libXfixes -}: - -kdeApp { - name = "ksnapshot"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - libkipi - libXfixes - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/applications/kde-apps-15.12/spectacle.nix b/pkgs/applications/kde-apps-15.12/spectacle.nix new file mode 100644 index 0000000000000000000000000000000000000000..849334fb73643fd9f781cd177b9d4a80010b9c7c --- /dev/null +++ b/pkgs/applications/kde-apps-15.12/spectacle.nix @@ -0,0 +1,46 @@ +{ kdeApp, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kconfig +, kcoreaddons +, kdbusaddons +, ki18n +, kio +, knotifications +, kscreen +, kwidgetsaddons +, kwindowsystem +, kxmlgui +, libkipi +, xcb-util-cursor +}: + +kdeApp { + name = "spectacle"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kconfig + kcoreaddons + kdbusaddons + ki18n + kio + knotifications + kscreen + kwidgetsaddons + kwindowsystem + kxmlgui + libkipi + xcb-util-cursor + ]; + postFixup = '' + wrapQtProgram "$out/bin/spectacle" + ''; + meta = with lib; { + maintainers = with maintainers; [ ttuegel ]; + }; +} diff --git a/pkgs/applications/kde-apps-15.12/srcs.nix b/pkgs/applications/kde-apps-15.12/srcs.nix index ffd12f9e242ca4d329d10fa52338ff8d89bf18f9..a6f6c1107317f8ebe714f752e11185d66cc80035 100644 --- a/pkgs/applications/kde-apps-15.12/srcs.nix +++ b/pkgs/applications/kde-apps-15.12/srcs.nix @@ -3,1923 +3,1931 @@ { akonadi = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/akonadi-15.11.80.tar.xz"; - sha256 = "02a4j9ydxqvjv5kpp8nlw7j0jil0ryqrv39ibypcfm73hx09xxkn"; - name = "akonadi-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/akonadi-15.12.0.tar.xz"; + sha256 = "0xqas8nbqvs4bvsqi234rwsbi06h5i7a07cjmd3ggrrg9p0nk2i8"; + name = "akonadi-15.12.0.tar.xz"; }; }; akonadi-calendar = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/akonadi-calendar-15.11.80.tar.xz"; - sha256 = "1cdyv10gfc5ygiz726vxzr17s6bk28bla7z8vidn9nkh922wn3k4"; - name = "akonadi-calendar-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/akonadi-calendar-15.12.0.tar.xz"; + sha256 = "1cxz2vrd1b96azs5pkhs6agdamqxya4xsaalfqgl3ii65gm5s6gf"; + name = "akonadi-calendar-15.12.0.tar.xz"; }; }; akonadi-search = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/akonadi-search-15.11.80.tar.xz"; - sha256 = "0749i1hqwyn4l12039vq2ckm72p9ajcmr9mljsn9vcil9cvd8g82"; - name = "akonadi-search-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/akonadi-search-15.12.0.tar.xz"; + sha256 = "180d1591k1c6l0ky6x0clmif1fw7pwikz2pzrh9c7kzmmdrfr3xf"; + name = "akonadi-search-15.12.0.tar.xz"; }; }; analitza = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/analitza-15.11.80.tar.xz"; - sha256 = "1x8l71acmg2fswwlc4pci6681nz7r1qsvbcfdw3alq76l28zmrhp"; - name = "analitza-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/analitza-15.12.0.tar.xz"; + sha256 = "1z2km469f7s3mfvrgsszvffnbnihd0cbs8hp15vrd9jpsl4p7kws"; + name = "analitza-15.12.0.tar.xz"; }; }; ark = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ark-15.11.80.tar.xz"; - sha256 = "1sj6mkzxy4gw19yclps5jn54780is5vpr526bvmbsa2vgj8njxcw"; - name = "ark-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ark-15.12.0.tar.xz"; + sha256 = "0z5xhyyhs3gl7133qpa029b4gp44nql0576wczaqjy9p3hx7r9n3"; + name = "ark-15.12.0.tar.xz"; }; }; artikulate = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/artikulate-15.11.80.tar.xz"; - sha256 = "0qxykga1kyc6viyqdsqngfvnrf0wk81h54ybrlq3bgkirnfmng07"; - name = "artikulate-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/artikulate-15.12.0.tar.xz"; + sha256 = "0w9bbkznxxiriml4kqmswdn02ygassx8rq87k6bhvrbqziwgb8as"; + name = "artikulate-15.12.0.tar.xz"; }; }; audiocd-kio = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/audiocd-kio-15.11.80.tar.xz"; - sha256 = "0l4x2gm1f6qwzvdq57h0z1zw1qkg7dah5zb2gpjz6apggw4iah00"; - name = "audiocd-kio-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/audiocd-kio-15.12.0.tar.xz"; + sha256 = "016bv43b3bfyx15npps7wm1zpkrfzbiyqv48p9wd32fg5blmxnd5"; + name = "audiocd-kio-15.12.0.tar.xz"; }; }; baloo-widgets = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/baloo-widgets-15.11.80.tar.xz"; - sha256 = "11wf2gf64dd8xxyk32kviyxki8f0ddg86nzw5g19l9drspils6jh"; - name = "baloo-widgets-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/baloo-widgets-15.12.0.tar.xz"; + sha256 = "0lbjnwb5k5rwz4jwig7b4cm9di0b6kdr7c35ib3cy34vk2jrfzp1"; + name = "baloo-widgets-15.12.0.tar.xz"; }; }; blinken = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/blinken-15.11.80.tar.xz"; - sha256 = "1lib5mq4xy8xphxfa3ljcdzqp1kd08f1zc7ch6sfb124dv9yzpln"; - name = "blinken-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/blinken-15.12.0.tar.xz"; + sha256 = "1r7wk11gqz1zklpcqb33vkqywad356g7py5967mi21nsflz00a6c"; + name = "blinken-15.12.0.tar.xz"; }; }; bomber = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/bomber-15.11.80.tar.xz"; - sha256 = "1rldcx532llxy22y6r1lvz6y8zh66mby5in59snzp5gv1bj6aq89"; - name = "bomber-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/bomber-15.12.0.tar.xz"; + sha256 = "1rcp2qmazzdsvxzy1zky4jp0vygpab6z9pmpzbjdpki5smkmpdv4"; + name = "bomber-15.12.0.tar.xz"; }; }; bovo = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/bovo-15.11.80.tar.xz"; - sha256 = "1ypna943rq6sidx2zc23r8mm61jfhsc28bdi74v1qg4ishpsjls9"; - name = "bovo-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/bovo-15.12.0.tar.xz"; + sha256 = "026sxcdbvpdq07miw5z107cjaclhsphr7i3w19kw7hx911chaipk"; + name = "bovo-15.12.0.tar.xz"; }; }; cantor = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/cantor-15.11.80.tar.xz"; - sha256 = "0pfksygz9ng1c4vf3wfnw6w9dfr133hn7xnfdd2vymqh6bws8b34"; - name = "cantor-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/cantor-15.12.0.tar.xz"; + sha256 = "09cyf50la3v91vqwiciq7i9c5mcjqlmq9hjrm717bcr9029abqma"; + name = "cantor-15.12.0.tar.xz"; }; }; cervisia = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/cervisia-15.11.80.tar.xz"; - sha256 = "0hrbxd3db71kcnvjv64184c3cqankzdnfyfjj4ar1sznvvl29836"; - name = "cervisia-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/cervisia-15.12.0.tar.xz"; + sha256 = "1gx196x33k4nb3knrfzzksxhcy1vdcgnzx3pwqmz2w7bvsdcl1vx"; + name = "cervisia-15.12.0.tar.xz"; }; }; dolphin = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/dolphin-15.11.80.tar.xz"; - sha256 = "1c7i3akafqhrrv6aq992fl9a9ki2mgs6y9cd6ha320x6npl1f1rj"; - name = "dolphin-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/dolphin-15.12.0.tar.xz"; + sha256 = "19bkrwn842qygv2a0kwf76d5aqfw7wa1348x8vny2hmmbwk7laha"; + name = "dolphin-15.12.0.tar.xz"; }; }; dolphin-plugins = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/dolphin-plugins-15.11.80.tar.xz"; - sha256 = "0vn02bjwch54cg1rfrad12g773r3slhdnl9kpfy1kgjra5p2vdm9"; - name = "dolphin-plugins-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/dolphin-plugins-15.12.0.tar.xz"; + sha256 = "0l74z0v55qki1xnwsdzq68i4qyxb16xw2g1fhlp069c975jlmakv"; + name = "dolphin-plugins-15.12.0.tar.xz"; }; }; dragon = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/dragon-15.11.80.tar.xz"; - sha256 = "1vv8kxrz2444n8ffi4vq99vi7a64ywbhmy4dx6k055hzpcmh5005"; - name = "dragon-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/dragon-15.12.0.tar.xz"; + sha256 = "0afjl9758hb32hmiacx5bwg9paaxpxh1y4nh2r97wzb5krny3ghr"; + name = "dragon-15.12.0.tar.xz"; }; }; ffmpegthumbs = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ffmpegthumbs-15.11.80.tar.xz"; - sha256 = "0zcaz96rd178w22cqmlay3iq2gb3j6snyy2fd0x4xnzmhmwnvxm6"; - name = "ffmpegthumbs-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ffmpegthumbs-15.12.0.tar.xz"; + sha256 = "1i5sci7q4d9dflkgn8h2gsnah6snhlajydlgpknjb5l4dxdqbcg4"; + name = "ffmpegthumbs-15.12.0.tar.xz"; }; }; filelight = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/filelight-15.11.80.tar.xz"; - sha256 = "0i2iwrq83j2jv4kw3nakiprxdk8i9zk700pvcm9p89ls2h91gv0k"; - name = "filelight-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/filelight-15.12.0.tar.xz"; + sha256 = "0q4xwi2nbap5f4fn5ym0azk0knp053qq3ix4vbyg2mkh9r268wd6"; + name = "filelight-15.12.0.tar.xz"; }; }; gpgmepp = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/gpgmepp-15.11.80.tar.xz"; - sha256 = "14igg9kpkv1762q9jjzdc3289swj5l2a21q9xj3smabf7b3mzm3d"; - name = "gpgmepp-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/gpgmepp-15.12.0.tar.xz"; + sha256 = "1480kx5n14ipk7sxpqpwgf2dq6jyp2b3rf7rblkis0jwqrzy61k4"; + name = "gpgmepp-15.12.0.tar.xz"; }; }; granatier = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/granatier-15.11.80.tar.xz"; - sha256 = "11rsgjl9fkdhwwmszj3sx97mmrks77qhj9zfwb4rgd67q6q8vrzm"; - name = "granatier-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/granatier-15.12.0.tar.xz"; + sha256 = "07l4aq2qfk7blmmkpc8w6xkgj7zz6qs4vv2ifpdvkjv621475bcp"; + name = "granatier-15.12.0.tar.xz"; }; }; gwenview = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/gwenview-15.11.80.tar.xz"; - sha256 = "1w67bgbsfykg0lsh7vapimgp3wmlygdq9pcwdrbdscymwhhpirj3"; - name = "gwenview-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/gwenview-15.12.0.tar.xz"; + sha256 = "00rsw57ivicx4j9kyvx92nppxv7m2kr3p2skp5qlidpgygwig4n5"; + name = "gwenview-15.12.0.tar.xz"; }; }; jovie = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/jovie-15.11.80.tar.xz"; - sha256 = "1mlwm31dbph2dzsjg64rbjq7nr3i6fnh5h45xlmbq6fi1906h9kw"; - name = "jovie-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/jovie-15.12.0.tar.xz"; + sha256 = "107ga496j0li1bqmppc96r25iq40yby63qi4hxzr6rvql0sk4vq3"; + name = "jovie-15.12.0.tar.xz"; }; }; juk = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/juk-15.11.80.tar.xz"; - sha256 = "0lc0x5pscqnzi5mhwsdd0qrqi8b8nwsqbqplfrbk4zlg5dvql7nl"; - name = "juk-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/juk-15.12.0.tar.xz"; + sha256 = "0l0l72r6l2xpn7ym3zdvrpjl0qbn3jb4hdy371qn14s1gk1clai5"; + name = "juk-15.12.0.tar.xz"; }; }; kaccessible = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kaccessible-15.11.80.tar.xz"; - sha256 = "0vg684xnr46iipil058vwwa75rigq3hdq2isfzhi5qxxm9n1n6ri"; - name = "kaccessible-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kaccessible-15.12.0.tar.xz"; + sha256 = "0gg90sy5a8kmllcryj7xncbyn4w6rd0f19vnn5vgsdrhgh8b8kf8"; + name = "kaccessible-15.12.0.tar.xz"; }; }; kaccounts-integration = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kaccounts-integration-15.11.80.tar.xz"; - sha256 = "0sbihlzd837q1p52vjc5ym7c5vsms00rl7l5wa72pd8q9haqabz8"; - name = "kaccounts-integration-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kaccounts-integration-15.12.0.tar.xz"; + sha256 = "1g5rbnhl7vfhh9ni2clrkszlns9iiibdpfxgpsjfjlljr8ai8fn8"; + name = "kaccounts-integration-15.12.0.tar.xz"; }; }; kaccounts-providers = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kaccounts-providers-15.11.80.tar.xz"; - sha256 = "12127sk2ki8hxrwap7mazz6ksqn5wf6wh6h3qb5sw1k8ngmqaxqd"; - name = "kaccounts-providers-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kaccounts-providers-15.12.0.tar.xz"; + sha256 = "12hq0rwlqz8pjnm4p0p44q4m4vj4z1r79z5pc5glv3r0rvmn05xk"; + name = "kaccounts-providers-15.12.0.tar.xz"; }; }; kajongg = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kajongg-15.11.80.tar.xz"; - sha256 = "017x84r78kf25hv9xl7ac9hsrkzxdxdzgdxhq74mgw3lsnp9vrvp"; - name = "kajongg-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kajongg-15.12.0.tar.xz"; + sha256 = "0qbyqixvcpn5z07cwv9jzvf0dawlcsgzq776lhh49ds6hh4xgdcw"; + name = "kajongg-15.12.0.tar.xz"; }; }; kalarmcal = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kalarmcal-15.11.80.tar.xz"; - sha256 = "1h11r2j2iw2cpd2javzpsnspjzy6h5bypj29j426m77b00d8jyaw"; - name = "kalarmcal-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kalarmcal-15.12.0.tar.xz"; + sha256 = "10lj01gsg2mr2kq39nih4cv1i48mp8b5i5s01kvaf2mwhwrj2hb5"; + name = "kalarmcal-15.12.0.tar.xz"; }; }; kalgebra = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kalgebra-15.11.80.tar.xz"; - sha256 = "160m1jvfx03dafvzz37jap023p9ap0b2f59r9ayaf1y7ldagdip5"; - name = "kalgebra-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kalgebra-15.12.0.tar.xz"; + sha256 = "11d5yzwv9p5fa9rz06gv3b773kcqmxd9hmkraz6i3ph2z2xdyfmc"; + name = "kalgebra-15.12.0.tar.xz"; }; }; kalzium = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kalzium-15.11.80.tar.xz"; - sha256 = "0hw9a18h3ldvilz6aawnph62mc6v9yggapkyf478d9m7faqdpmll"; - name = "kalzium-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kalzium-15.12.0.tar.xz"; + sha256 = "1p26pz900yl8ig9vh3aa1xkxap4962477rgiysckzvil1b3z9jn4"; + name = "kalzium-15.12.0.tar.xz"; }; }; kamera = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kamera-15.11.80.tar.xz"; - sha256 = "0zhi6aimih3szdph4vn0s7a48bn97glp0kxdy6mfkcmx4hgv59v8"; - name = "kamera-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kamera-15.12.0.tar.xz"; + sha256 = "1wa6ihbbxrdc3axj9g7ayizka2h5hv7890c8s23mrrnigf911s21"; + name = "kamera-15.12.0.tar.xz"; }; }; kanagram = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kanagram-15.11.80.tar.xz"; - sha256 = "1hhpzk4yf9pxmdkydwazdvzm3iayh07wwp1p06nhd91zxgjh696y"; - name = "kanagram-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kanagram-15.12.0.tar.xz"; + sha256 = "03faj636jaf4r7sdp4zlkl0l4v66pdphw4yzw6lp8pg2mp6ydnjl"; + name = "kanagram-15.12.0.tar.xz"; }; }; kapman = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kapman-15.11.80.tar.xz"; - sha256 = "1kdjdngsdm95w8skr21722nmv4h860gaa2zifbzkn387k348n23s"; - name = "kapman-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kapman-15.12.0.tar.xz"; + sha256 = "1m7dzspf7bg4z3v9slp6dr78gcmd6yn44mqx1ycmby85cwh5y39l"; + name = "kapman-15.12.0.tar.xz"; }; }; kapptemplate = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kapptemplate-15.11.80.tar.xz"; - sha256 = "0xs5x6hlsm41axavdr3dbaqhcr5ncjigwxzcvr0d3v58k4w55va5"; - name = "kapptemplate-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kapptemplate-15.12.0.tar.xz"; + sha256 = "1inzkhg6acj2z3jlj04jf46xl6p9zc671j8j8mp8r2qdr6yiy0xa"; + name = "kapptemplate-15.12.0.tar.xz"; }; }; kate = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kate-15.11.80.tar.xz"; - sha256 = "0503hzhys5004d8f72j8q5vifi39shfkdvj3kvs1wy4naipg6906"; - name = "kate-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kate-15.12.0.tar.xz"; + sha256 = "0vsj28xdx58sfyxjb0x03xn3d7hbwzq9rr81jwmdp3f1np1rm5xf"; + name = "kate-15.12.0.tar.xz"; }; }; katomic = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/katomic-15.11.80.tar.xz"; - sha256 = "0brp5zxaaw9ymyvdbw47c72s9ms6q0prgn327qmnzjpcvi1nagiv"; - name = "katomic-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/katomic-15.12.0.tar.xz"; + sha256 = "0sgs46bqq52sy3rym5c7d4vyf20y517iykzk3c8wndg3bkmar18s"; + name = "katomic-15.12.0.tar.xz"; }; }; kblackbox = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kblackbox-15.11.80.tar.xz"; - sha256 = "06qpbivv7jmj900pizs35kivsyz34z6smw3vjmczh5cg6wccjwwc"; - name = "kblackbox-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kblackbox-15.12.0.tar.xz"; + sha256 = "0lphzs5fn7n8z0c0kmfpqfqv8mcgj420254csil9gsp994873hia"; + name = "kblackbox-15.12.0.tar.xz"; }; }; kblocks = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kblocks-15.11.80.tar.xz"; - sha256 = "0rf60pa73kj5zcyvswpx0pwwrkxif2z8gj75cj1qg20nl15xzcv9"; - name = "kblocks-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kblocks-15.12.0.tar.xz"; + sha256 = "1zbs48z358h35vplr32q5nhq9gp3rfmijwg2ird25mjmxwc87bi1"; + name = "kblocks-15.12.0.tar.xz"; }; }; kblog = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kblog-15.11.80.tar.xz"; - sha256 = "09ywpx0pkl518hshlcbqx5g7kfrivz0j440xkp7slzaw5ydslh9w"; - name = "kblog-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kblog-15.12.0.tar.xz"; + sha256 = "0j6kcbzivz6ali3wyg7qyv936pvbjsf0f68xsfgci57hb4lam386"; + name = "kblog-15.12.0.tar.xz"; }; }; kbounce = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kbounce-15.11.80.tar.xz"; - sha256 = "1brgv8zc9zw6hkg2315dhnqpk4s2wdv223pxxp7dqcjg28zmr8fs"; - name = "kbounce-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kbounce-15.12.0.tar.xz"; + sha256 = "0jgdjj7r966j1rm6vdhbdndrbiych4z1ndx5809mpxpg9b1lr427"; + name = "kbounce-15.12.0.tar.xz"; }; }; kbreakout = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kbreakout-15.11.80.tar.xz"; - sha256 = "1rr606dgsj75cy665q94cdqz68glc0n8r59ihmwgjkz2xg06cpnc"; - name = "kbreakout-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kbreakout-15.12.0.tar.xz"; + sha256 = "1h9adxf4v0qb43avbamw73gzc3cij4i2z5z8fcznczb3gbmpp1h9"; + name = "kbreakout-15.12.0.tar.xz"; }; }; kbruch = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kbruch-15.11.80.tar.xz"; - sha256 = "1hqnxj4f005jbhhbhjac5lzpmhbfgmsw4mhqavw79v42nldmaygj"; - name = "kbruch-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kbruch-15.12.0.tar.xz"; + sha256 = "0sr4nx9y15hkf74m86m1ghmw1i4jcvlxhbmh3d404z64yks97hv1"; + name = "kbruch-15.12.0.tar.xz"; }; }; kcachegrind = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcachegrind-15.11.80.tar.xz"; - sha256 = "0rc308n9yrjfmdg8v0fz4qmm9p8vvvihw9mvc7n31kpfwwlymx3n"; - name = "kcachegrind-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcachegrind-15.12.0.tar.xz"; + sha256 = "0gkafyf9980dryvv5mdgnv3fxxxfy5smpd1x8fmgjiyp8izg5nb9"; + name = "kcachegrind-15.12.0.tar.xz"; }; }; kcalc = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcalc-15.11.80.tar.xz"; - sha256 = "1dvnj2fnl6rjcfw373xplchzkkl63lr0h1b1d0h2l36i7j37g0ih"; - name = "kcalc-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcalc-15.12.0.tar.xz"; + sha256 = "0ybs87g6axmp3yip4wip0cf9lvyf37nhywravpk3z3284dl9z6cx"; + name = "kcalc-15.12.0.tar.xz"; }; }; kcalcore = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcalcore-15.11.80.tar.xz"; - sha256 = "1kxw4cvz72flb3587wzx1p8vykwhwjbsw2xq10z6zvk55s8y9g8h"; - name = "kcalcore-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcalcore-15.12.0.tar.xz"; + sha256 = "1zbfcbl8b7vmvzwi8969zcwb4ini3mxdc1q6n47hkmyl2rsradiq"; + name = "kcalcore-15.12.0.tar.xz"; }; }; kcalutils = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcalutils-15.11.80.tar.xz"; - sha256 = "0gnw0j92nk9gf40gn0ikbmij8qd3p8zsqwwcq8rbmrlh6g31cb94"; - name = "kcalutils-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcalutils-15.12.0.tar.xz"; + sha256 = "0ya2wgvv5vkxil6xcibrp0di6k18qfll173rw3h417ykgf11q0ir"; + name = "kcalutils-15.12.0.tar.xz"; }; }; kcharselect = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcharselect-15.11.80.tar.xz"; - sha256 = "0sdq3vwkcjm59gbyq7hz3lhpkwrhb6xv4rrdpw9wfhh50gy1ckif"; - name = "kcharselect-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcharselect-15.12.0.tar.xz"; + sha256 = "0pllisc3p8nlzx8pgfclr28zvnwzgb3yrlbx33l09g7x0spn5whd"; + name = "kcharselect-15.12.0.tar.xz"; }; }; kcolorchooser = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcolorchooser-15.11.80.tar.xz"; - sha256 = "1i2s7ay2r0ymfrhcnmvza627ni2m955c9m7c085h5qchgmljp994"; - name = "kcolorchooser-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcolorchooser-15.12.0.tar.xz"; + sha256 = "0qbl18q41jhra0arfvymhxd27y7hs6bmqwzfls80l9nxa16di57c"; + name = "kcolorchooser-15.12.0.tar.xz"; }; }; kcontacts = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcontacts-15.11.80.tar.xz"; - sha256 = "1wa45vyd7j3zbi1wsz4z0mkhf2ii4qnb7pd8rshvh4z929f1kqg8"; - name = "kcontacts-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcontacts-15.12.0.tar.xz"; + sha256 = "1ijh9brvgqdva168a1inj8p8z837h2sg05smzxk4f56779z43cry"; + name = "kcontacts-15.12.0.tar.xz"; }; }; kcron = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kcron-15.11.80.tar.xz"; - sha256 = "10dndgavnmwagkfylbji23kvyblnj5p7drygds6md0dqmcdnlvg6"; - name = "kcron-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kcron-15.12.0.tar.xz"; + sha256 = "03b9zwa5fm8giynfz993y51cxpchi13k58afd6w4y19733scpc8w"; + name = "kcron-15.12.0.tar.xz"; }; }; kde-baseapps = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-baseapps-15.11.80.tar.xz"; - sha256 = "14d5rx0rl6673h949b0c51pxx0a604wsv1sdwyd44ym6z7p5nvab"; - name = "kde-baseapps-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-baseapps-15.12.0.tar.xz"; + sha256 = "10l7yr9jfmzb4jh59f8mdf36bvbr7da5wacyjpgvamjzcj87l5f3"; + name = "kde-baseapps-15.12.0.tar.xz"; }; }; kdebugsettings = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdebugsettings-15.11.80.tar.xz"; - sha256 = "1z0h2ng4v287bb1pjwfdq2slhy6ph516k458jyjsv2mgkjfi5fhi"; - name = "kdebugsettings-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdebugsettings-15.12.0.tar.xz"; + sha256 = "0n9l6pish25a4wg1bbibfngdzwyy5lyxyjj4aicvcx415j9yzicf"; + name = "kdebugsettings-15.12.0.tar.xz"; }; }; kde-dev-scripts = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-dev-scripts-15.11.80.tar.xz"; - sha256 = "001396pg0jgy3rdk44fi3c2bavqzbfryi75d0ldn33jzhpa2l7sl"; - name = "kde-dev-scripts-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-dev-scripts-15.12.0.tar.xz"; + sha256 = "18xr7763778qmpg38avq23kaqcpyccr802wig5xy6b9dqv6jh894"; + name = "kde-dev-scripts-15.12.0.tar.xz"; }; }; kde-dev-utils = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-dev-utils-15.11.80.tar.xz"; - sha256 = "0jkmgdap3win3znz089nc8znpa001scs0la7rni1a3fh7fm6x1pc"; - name = "kde-dev-utils-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-dev-utils-15.12.0.tar.xz"; + sha256 = "0707skcsnw5bzk7234w6jd1kwwqi010dyq4vnajxg52kmf4592j8"; + name = "kde-dev-utils-15.12.0.tar.xz"; }; }; kdeedu-data = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdeedu-data-15.11.80.tar.xz"; - sha256 = "17mfb3xp5xpbx6wfs88frdqh9732jfliv4kq5nba8mh3h8vrnrrb"; - name = "kdeedu-data-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdeedu-data-15.12.0.tar.xz"; + sha256 = "125rh8wmm5p9q6py1z25s22j1xfpn7dn1czd3l0s7diaygl28li3"; + name = "kdeedu-data-15.12.0.tar.xz"; }; }; kdegraphics-mobipocket = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdegraphics-mobipocket-15.11.80.tar.xz"; - sha256 = "1yydb4g0dd9pfq8lypp245y42zk18f63khp7na61c04k04d6vfwl"; - name = "kdegraphics-mobipocket-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdegraphics-mobipocket-15.12.0.tar.xz"; + sha256 = "0jqz242p20xdwhy9ncxv2njksz4ymz9xh3zvynwljq5ixw6qjayz"; + name = "kdegraphics-mobipocket-15.12.0.tar.xz"; }; }; kdegraphics-strigi-analyzer = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdegraphics-strigi-analyzer-15.11.80.tar.xz"; - sha256 = "0z0gx48rjxad45ar4spppxndpr13zx4lvb8zx2whpdbhf43a8xng"; - name = "kdegraphics-strigi-analyzer-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdegraphics-strigi-analyzer-15.12.0.tar.xz"; + sha256 = "10gqbnpmzlv2rijy6yszr92aq51bsb63ypkxxpw1r9q2yzjb974b"; + name = "kdegraphics-strigi-analyzer-15.12.0.tar.xz"; }; }; kdegraphics-thumbnailers = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdegraphics-thumbnailers-15.11.80.tar.xz"; - sha256 = "0gpwv1d8v2x631p2zdpq5b6wbr5zjvawh04pfajkbi45iby9z156"; - name = "kdegraphics-thumbnailers-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdegraphics-thumbnailers-15.12.0.tar.xz"; + sha256 = "1lns9z65596rwc9899lrkw75lq8yk4hniys4c3q114s8gvqi89i5"; + name = "kdegraphics-thumbnailers-15.12.0.tar.xz"; }; }; kde-l10n-ar = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ar-15.11.80.tar.xz"; - sha256 = "07hdcqm0f5i47g7vzgdc7mhn03hv0nbrww24xqx7kmzxmq8ficik"; - name = "kde-l10n-ar-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ar-15.12.0.tar.xz"; + sha256 = "1mhz3dylhndh3y8qxvmz41jq6rvya8l7bvd58m3lavbj1lx7n2ks"; + name = "kde-l10n-ar-15.12.0.tar.xz"; }; }; kde-l10n-bg = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-bg-15.11.80.tar.xz"; - sha256 = "1cx7vax6n27ai54zpxibi9q2v1ilkzw5vs4zk7y7fr3r8llsn3ci"; - name = "kde-l10n-bg-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bg-15.12.0.tar.xz"; + sha256 = "1lnsz222jv1n3hn6ahyyshrxn33dypfdfxrfb9kqilrlqb147pv3"; + name = "kde-l10n-bg-15.12.0.tar.xz"; }; }; kde-l10n-bs = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-bs-15.11.80.tar.xz"; - sha256 = "1nw5h67j7qis4h127f101c5b5zc82r2pwfb7rhc0jg8fyxrkb0l9"; - name = "kde-l10n-bs-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-bs-15.12.0.tar.xz"; + sha256 = "1qb4axsj4832l0n6k2lrw50jjvc0pv6zs8g0yrnybpgyfmxa8157"; + name = "kde-l10n-bs-15.12.0.tar.xz"; }; }; kde-l10n-ca = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ca-15.11.80.tar.xz"; - sha256 = "1x6p2bklh2qf047ws9jincbgk33c9xsg20xsyfazp7x4iyrsw3lv"; - name = "kde-l10n-ca-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca-15.12.0.tar.xz"; + sha256 = "016kqlllv3chwnryxg72p4g9n455q1xiyy5sqncpa3gw3w65c7s7"; + name = "kde-l10n-ca-15.12.0.tar.xz"; }; }; kde-l10n-ca_valencia = { - version = "ca_valencia-15.11.80"; + version = "ca_valencia-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ca@valencia-15.11.80.tar.xz"; - sha256 = "1n58flzasr0r64pqhh8j7rizz0w3h9xdjhlj8c18mm50xyp011bq"; - name = "kde-l10n-ca_valencia-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ca@valencia-15.12.0.tar.xz"; + sha256 = "1prm8lsfa9a72g9av6yl3zyjbpvfp8a6bwcqs65l98zlysb7qfma"; + name = "kde-l10n-ca_valencia-15.12.0.tar.xz"; }; }; kde-l10n-cs = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-cs-15.11.80.tar.xz"; - sha256 = "0mnwbb9s2x2pl168awxygrah8a8yzn2zlsrh7fp9kbhiypwr8gvl"; - name = "kde-l10n-cs-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-cs-15.12.0.tar.xz"; + sha256 = "1xf1zsmw7c5rvk9557jlrm643x6wxflk3r4zg6ddgk7nxs6l1mg0"; + name = "kde-l10n-cs-15.12.0.tar.xz"; }; }; kde-l10n-da = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-da-15.11.80.tar.xz"; - sha256 = "0igc9dzj7l7n4kznlij0myvqsdcm2a2hf80j23wh810d1fkgg16a"; - name = "kde-l10n-da-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-da-15.12.0.tar.xz"; + sha256 = "033yy4p15994lraadsmhdfmz63cmp8pds65nsrmckbicb2a748id"; + name = "kde-l10n-da-15.12.0.tar.xz"; }; }; kde-l10n-de = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-de-15.11.80.tar.xz"; - sha256 = "1mwaiapzailc644j5qcmac3m3h5jg7swia21gshdpywcjisrrka7"; - name = "kde-l10n-de-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-de-15.12.0.tar.xz"; + sha256 = "1pl0rj1i8zkra27c36bj4qh5vpgb9x71zzx3dszx8pmb0y88mp55"; + name = "kde-l10n-de-15.12.0.tar.xz"; }; }; kde-l10n-el = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-el-15.11.80.tar.xz"; - sha256 = "1f0nj7lh2hgs6yxwxcgmc9ydiy294d2pfxffqg3nvk6r7qxxr62i"; - name = "kde-l10n-el-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-el-15.12.0.tar.xz"; + sha256 = "1mza3kg2jha0c5bm0s9146yispp6rhx8z9lf0bis60ppn3zprmdi"; + name = "kde-l10n-el-15.12.0.tar.xz"; }; }; kde-l10n-en_GB = { - version = "en_GB-15.11.80"; + version = "en_GB-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-en_GB-15.11.80.tar.xz"; - sha256 = "05kxsfmj6p3w10ily3yn3l53zgjib0v10whq8ls5l99aygws90y3"; - name = "kde-l10n-en_GB-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-en_GB-15.12.0.tar.xz"; + sha256 = "07nlriiccl1zaywycg25ai92avy3k7glmxglidkkngjrkg6pfq04"; + name = "kde-l10n-en_GB-15.12.0.tar.xz"; }; }; kde-l10n-eo = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-eo-15.11.80.tar.xz"; - sha256 = "1wial0ky930cg66a5f0a7j7f57m7c8nyj62v6c66irdskfm5gh9d"; - name = "kde-l10n-eo-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eo-15.12.0.tar.xz"; + sha256 = "0rn8vp25s4lza4x6s4i72wkilf043idq6smdn2mndzvff0bcpjy1"; + name = "kde-l10n-eo-15.12.0.tar.xz"; }; }; kde-l10n-es = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-es-15.11.80.tar.xz"; - sha256 = "02jz8lm6rz14vp0abycnyghwz87vc6qca2371p8bnsz4sggqbarj"; - name = "kde-l10n-es-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-es-15.12.0.tar.xz"; + sha256 = "02iamhlj3j4y6j1v7dd6scz4fffq0pn494gy8nvi343y3dbyvqvc"; + name = "kde-l10n-es-15.12.0.tar.xz"; }; }; kde-l10n-et = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-et-15.11.80.tar.xz"; - sha256 = "1da4jz8a8ixkalwvf27mknchrr761a0rifjghjl2wlr463ivba4q"; - name = "kde-l10n-et-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-et-15.12.0.tar.xz"; + sha256 = "1j26ig05xp45g3cbgw80kz6kzi3966wb1hk3lr4w0l80y5f4ygxg"; + name = "kde-l10n-et-15.12.0.tar.xz"; }; }; kde-l10n-eu = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-eu-15.11.80.tar.xz"; - sha256 = "1l0clwn2h6ph6jgnv3vrfx2ww04rm55byrndivm78x1i8vci8jx0"; - name = "kde-l10n-eu-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-eu-15.12.0.tar.xz"; + sha256 = "1y0lzl5y05yv21blkllipzfjcs6k1s1znz7wkk0kcmqrvmwpx1r5"; + name = "kde-l10n-eu-15.12.0.tar.xz"; }; }; kde-l10n-fa = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-fa-15.11.80.tar.xz"; - sha256 = "0v2vcpyvih2xmx69yg1d9wyh988f3439g66vk01wqp2gsa505r1p"; - name = "kde-l10n-fa-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fa-15.12.0.tar.xz"; + sha256 = "09axzs55bnfdjwmlyanljnlcx7zb179hkc7i2179px4iywn4fcw5"; + name = "kde-l10n-fa-15.12.0.tar.xz"; }; }; kde-l10n-fi = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-fi-15.11.80.tar.xz"; - sha256 = "0shxcr6xndxz2136nx1qhm4kbfcgxw3j8fnby1jgjqz8shfjz318"; - name = "kde-l10n-fi-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fi-15.12.0.tar.xz"; + sha256 = "141ikl2q9zhawg6ib6ppdsk03vs6fwlwzlxlg7bphfxr1nc202lw"; + name = "kde-l10n-fi-15.12.0.tar.xz"; }; }; kde-l10n-fr = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-fr-15.11.80.tar.xz"; - sha256 = "1b1cs3fwzknhm3rd2ipbgx63wkn7idck825wvpjbgipg65q6a788"; - name = "kde-l10n-fr-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-fr-15.12.0.tar.xz"; + sha256 = "170ijawwvx6kqdph09w8kb9m7zzs6xya2f73an0qvvwz40aixvnn"; + name = "kde-l10n-fr-15.12.0.tar.xz"; }; }; kde-l10n-ga = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ga-15.11.80.tar.xz"; - sha256 = "05z536w3djr5p89vbyc1rj8d9z4cwgym74fv08jaz816iq1cz8ww"; - name = "kde-l10n-ga-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ga-15.12.0.tar.xz"; + sha256 = "1d3b3wqdn5n9lqdrf63la73hiacm95mbx0x9khc8navrcx17ybmv"; + name = "kde-l10n-ga-15.12.0.tar.xz"; }; }; kde-l10n-gl = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-gl-15.11.80.tar.xz"; - sha256 = "0jrv68qjcrikgpnqsgdgxj6nl0m2prbgj418fjns1c4c4lna43qk"; - name = "kde-l10n-gl-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-gl-15.12.0.tar.xz"; + sha256 = "04d74sdqgdg5rzvzg0pnk1yj4x7x0i0k6ki2npyzd9jymcasckp7"; + name = "kde-l10n-gl-15.12.0.tar.xz"; }; }; kde-l10n-he = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-he-15.11.80.tar.xz"; - sha256 = "0h71g3rqsvfwkvj2rwf6c0mma6qmp2h0nrbc3biqijgjxl8vyd5s"; - name = "kde-l10n-he-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-he-15.12.0.tar.xz"; + sha256 = "1r0j7fjg3k97dhs3q8myywm9n7cn073wy05hwv3zwc8124invgyb"; + name = "kde-l10n-he-15.12.0.tar.xz"; }; }; kde-l10n-hi = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-hi-15.11.80.tar.xz"; - sha256 = "1blwzqk0v9455c1lsvb9q5qf0x2lj0zj5av8vxbicfd35hr6hc6y"; - name = "kde-l10n-hi-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hi-15.12.0.tar.xz"; + sha256 = "1ki2hd2ixvyiqkldhinmidbg9gw1ivrwgynlcjx31c0aasyndbjj"; + name = "kde-l10n-hi-15.12.0.tar.xz"; }; }; kde-l10n-hr = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-hr-15.11.80.tar.xz"; - sha256 = "11zz6zjk13hqd9i409786d6xinkpyaynlza2dkql104kzymbyknf"; - name = "kde-l10n-hr-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hr-15.12.0.tar.xz"; + sha256 = "0skqv67jnwaw2zcnb73w5yfdpqagmx1bm1p6vrbh31ra8gc0v32b"; + name = "kde-l10n-hr-15.12.0.tar.xz"; }; }; kde-l10n-hu = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-hu-15.11.80.tar.xz"; - sha256 = "18hzyyv5ijl29b27q9jfm9sq0w82638yb4gjabq7rkngy0h2v02x"; - name = "kde-l10n-hu-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-hu-15.12.0.tar.xz"; + sha256 = "0hm7lwajgnvqawpabbkb7i8w39xbl8dgnb8bbfxcaz9gilhzy4in"; + name = "kde-l10n-hu-15.12.0.tar.xz"; }; }; kde-l10n-ia = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ia-15.11.80.tar.xz"; - sha256 = "013acls9vqfhpr6yzfpg6c3yn87myrznq2qxm2n4lgmksibw8l38"; - name = "kde-l10n-ia-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ia-15.12.0.tar.xz"; + sha256 = "0kpj2zw1id9l9i9mhjq5wxmvx204aj1yk47yyrw6yca8mlsj3mzl"; + name = "kde-l10n-ia-15.12.0.tar.xz"; }; }; kde-l10n-id = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-id-15.11.80.tar.xz"; - sha256 = "0l1vsa5s6zdiymw67iy28fsarh2lgi4wpcma7nnbj90jf4l7zj0g"; - name = "kde-l10n-id-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-id-15.12.0.tar.xz"; + sha256 = "0xwkfa5dd1bpi345aagrbimy0jkgswjvzq1wgz4n6p3d8kazyvj0"; + name = "kde-l10n-id-15.12.0.tar.xz"; }; }; kde-l10n-is = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-is-15.11.80.tar.xz"; - sha256 = "07rs26zl15qar6pn6mg3ihfx78zakqn5mbvqv7f0zjsfd6fmmkxx"; - name = "kde-l10n-is-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-is-15.12.0.tar.xz"; + sha256 = "0n9ikkni821lsk6l3wvk8nir4rjnyb3pfl9dw1ffqh1q62wn8z7c"; + name = "kde-l10n-is-15.12.0.tar.xz"; }; }; kde-l10n-it = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-it-15.11.80.tar.xz"; - sha256 = "0x7qi9rgma6l7i80r5i37jh35zfi4j6axk6ha1h9dbmyfw9p1fkr"; - name = "kde-l10n-it-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-it-15.12.0.tar.xz"; + sha256 = "0h5bjm754gcls7gnzdvdcggnvbbqx0l16902bygdh3z2gyp76avy"; + name = "kde-l10n-it-15.12.0.tar.xz"; }; }; kde-l10n-ja = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ja-15.11.80.tar.xz"; - sha256 = "0dh8k8gyimzdhmycz8711l2hn0rddprywqz1brs7m43shx8cqxk7"; - name = "kde-l10n-ja-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ja-15.12.0.tar.xz"; + sha256 = "0ga202v7vi262khdwplkljc1hdf9y85dk0g09wb70gc0mm52zzyg"; + name = "kde-l10n-ja-15.12.0.tar.xz"; }; }; kde-l10n-kk = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-kk-15.11.80.tar.xz"; - sha256 = "1r9w4yw3fc4v0pgy130phvapy69p1b7j1gzayg60lakckr3wbpd8"; - name = "kde-l10n-kk-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-kk-15.12.0.tar.xz"; + sha256 = "0334ida4dhm8l6m1kqgksz68ckrfxas5b3vgnm7f4058dqvm1w6b"; + name = "kde-l10n-kk-15.12.0.tar.xz"; }; }; kde-l10n-km = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-km-15.11.80.tar.xz"; - sha256 = "10swsr4zvrv42d2i2w45kqmaqkba7an7w6f519qqsnmp4ykcl0dk"; - name = "kde-l10n-km-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-km-15.12.0.tar.xz"; + sha256 = "18ln6h2fiwspybiripqmglrkq81z0q4llnrqz7c7gzm1jg85k8w2"; + name = "kde-l10n-km-15.12.0.tar.xz"; }; }; kde-l10n-ko = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ko-15.11.80.tar.xz"; - sha256 = "07ly80fbz0kqiam3ykfilv6q4y0pa6nzi9chxas830xzzkygri9k"; - name = "kde-l10n-ko-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ko-15.12.0.tar.xz"; + sha256 = "13a8iik27klxp07m798g66r5a547py2ii914pdbrx65hzgzvxn6l"; + name = "kde-l10n-ko-15.12.0.tar.xz"; }; }; kde-l10n-lt = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-lt-15.11.80.tar.xz"; - sha256 = "11xq8wv3rcg8yz76mnb0052xd6h8l5wis5c9k6lrpqik57kg06ic"; - name = "kde-l10n-lt-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lt-15.12.0.tar.xz"; + sha256 = "1ks9ywlhxzgick1iradagc78xcnfnwmcw49d3pqdjdpw6icz1xs8"; + name = "kde-l10n-lt-15.12.0.tar.xz"; }; }; kde-l10n-lv = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-lv-15.11.80.tar.xz"; - sha256 = "0wxd9cbzgw404zvi94zs71sx65cai8xhks8jb6j5g0086iscar5a"; - name = "kde-l10n-lv-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-lv-15.12.0.tar.xz"; + sha256 = "0l9shh6rg44qgw4lh9kp6b4rs51hn0w04dgrga0hrdm28cr1npl7"; + name = "kde-l10n-lv-15.12.0.tar.xz"; }; }; kde-l10n-mr = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-mr-15.11.80.tar.xz"; - sha256 = "116pk7fzba0k32pl8mdgaq54xxhqg43y7vv1ra0dgilf0znpibyv"; - name = "kde-l10n-mr-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-mr-15.12.0.tar.xz"; + sha256 = "0liivk7bibz125hj1dcq8ilwyzhdlq7bs4adiicc26dp9r1way4c"; + name = "kde-l10n-mr-15.12.0.tar.xz"; }; }; kde-l10n-nb = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nb-15.11.80.tar.xz"; - sha256 = "03y3qbf8nfbqh0c2saznv12igg82bj56i791ksxcphlm5065rlzq"; - name = "kde-l10n-nb-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nb-15.12.0.tar.xz"; + sha256 = "1glnp3qqrhsy7vkmljqzx8ghsl1qyvmdcpdvhnjw8rdfdss5pcx2"; + name = "kde-l10n-nb-15.12.0.tar.xz"; }; }; kde-l10n-nds = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nds-15.11.80.tar.xz"; - sha256 = "0wr842xfclxbx5w30f2aig2rdq5p2vrhd91kr5v9zcidgddms2fj"; - name = "kde-l10n-nds-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nds-15.12.0.tar.xz"; + sha256 = "1p1fm1jkic7gzw2n762yfq6w9laakx831mdgl3gdp0xgx7x8mg1q"; + name = "kde-l10n-nds-15.12.0.tar.xz"; }; }; kde-l10n-nl = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nl-15.11.80.tar.xz"; - sha256 = "110fwbf2b6ss21vrswj3d3d9zlr1n2p44vs3znwcrv9pjds2v8jg"; - name = "kde-l10n-nl-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nl-15.12.0.tar.xz"; + sha256 = "1ki6bhw85zkgl132bf1q677r409sdvf7gfd51cj9p0fy63r87wym"; + name = "kde-l10n-nl-15.12.0.tar.xz"; }; }; kde-l10n-nn = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-nn-15.11.80.tar.xz"; - sha256 = "073zcpwx8acv1hdwkk8w7nzkrg6qfb4w4lvah8gkgjhl2r6h4lkr"; - name = "kde-l10n-nn-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-nn-15.12.0.tar.xz"; + sha256 = "1hrsk4kdk5w2bf0iplhpmajkrzflgxbwdks3vd2q5zrqkzx3ykgd"; + name = "kde-l10n-nn-15.12.0.tar.xz"; }; }; kde-l10n-pa = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pa-15.11.80.tar.xz"; - sha256 = "1x99m4rj99wdlyiqmgl9vs125vdjl2g46nk1q0xb2xz7znn003na"; - name = "kde-l10n-pa-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pa-15.12.0.tar.xz"; + sha256 = "1kyqdz490ix0qm3ck2c9grqkdiqdf7aw659kvdjsh34f818ns5sq"; + name = "kde-l10n-pa-15.12.0.tar.xz"; }; }; kde-l10n-pl = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pl-15.11.80.tar.xz"; - sha256 = "0hxsdbcclgnalkzpvrl948l4yb122lg8bhxg0mkcm23jmvi594cv"; - name = "kde-l10n-pl-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pl-15.12.0.tar.xz"; + sha256 = "1p3z3anik2fh9wi36ag11kyk4mfv6gjx9sgkxxdzkyd2i67jig2y"; + name = "kde-l10n-pl-15.12.0.tar.xz"; }; }; kde-l10n-pt = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pt-15.11.80.tar.xz"; - sha256 = "1wijadwzv119dyx7wpddwiyc4jip1lqwkhb01dvyq1dzzkjf39f4"; - name = "kde-l10n-pt-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt-15.12.0.tar.xz"; + sha256 = "04slrcs6f3bbi73l51lga42srx022x00lzlmn8m2617922kag92f"; + name = "kde-l10n-pt-15.12.0.tar.xz"; }; }; kde-l10n-pt_BR = { - version = "pt_BR-15.11.80"; + version = "pt_BR-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-pt_BR-15.11.80.tar.xz"; - sha256 = "19ki8sf4mj8fjrf2f7a43bj8bnqg9bc0m6982ba558nxdb3lr7fs"; - name = "kde-l10n-pt_BR-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-pt_BR-15.12.0.tar.xz"; + sha256 = "1n38d2p47bavmn248sdpb0w8k9kqxpas7rkh3dgnfwsjgd7bsb6g"; + name = "kde-l10n-pt_BR-15.12.0.tar.xz"; }; }; kde-l10n-ro = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ro-15.11.80.tar.xz"; - sha256 = "1p79xvd49vs81gn18pzmpjz6qy974ryn3ywvqda920nb1wfaqh1k"; - name = "kde-l10n-ro-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ro-15.12.0.tar.xz"; + sha256 = "0m9lx63d0q53c3rxmznmrsyi3kpgflg8giqgspni1pkx3injzdyv"; + name = "kde-l10n-ro-15.12.0.tar.xz"; }; }; kde-l10n-ru = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ru-15.11.80.tar.xz"; - sha256 = "04x6ym1gs1n6krg9k876gfk7d4ljrxvwv5lmagmjadx7dhfvy4ym"; - name = "kde-l10n-ru-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ru-15.12.0.tar.xz"; + sha256 = "0ki1cj9bngzjjqmlsi6rgbvrkxbsr53qdyfxqndbab5r76yzkjnz"; + name = "kde-l10n-ru-15.12.0.tar.xz"; }; }; kde-l10n-sk = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sk-15.11.80.tar.xz"; - sha256 = "0mdy9fhppnm5nkanb7q2myinngmnf6hq3iywvhg66iv6nsmbjdw9"; - name = "kde-l10n-sk-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sk-15.12.0.tar.xz"; + sha256 = "1hsi3simcyc1239rjiybzv7jmcrmmc9js543s1nw9y84jn6kk78k"; + name = "kde-l10n-sk-15.12.0.tar.xz"; }; }; kde-l10n-sl = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sl-15.11.80.tar.xz"; - sha256 = "06nd0wjni4sfmiza6wb8m3mdrbkkvk0k5ymvar396wh8037mjp64"; - name = "kde-l10n-sl-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sl-15.12.0.tar.xz"; + sha256 = "0fld0lgr070w1v9830700182lslm7pmkyrxarwbf11g7a4wzsc1s"; + name = "kde-l10n-sl-15.12.0.tar.xz"; }; }; kde-l10n-sr = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sr-15.11.80.tar.xz"; - sha256 = "1pj9k4j6c5hfzl1lz7vyakggl6p8drrfy5ln7m69s1qy4skraf8x"; - name = "kde-l10n-sr-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sr-15.12.0.tar.xz"; + sha256 = "028frgvzy000l38kpixyfxvcx9skwf9w2x5xl31172icwzyfvj28"; + name = "kde-l10n-sr-15.12.0.tar.xz"; }; }; kde-l10n-sv = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-sv-15.11.80.tar.xz"; - sha256 = "18p880a66iz258lbc8hn3h217qcigi3glzml5r9yq2d8kmr1gfwg"; - name = "kde-l10n-sv-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-sv-15.12.0.tar.xz"; + sha256 = "0i2qkz02nfcxi3s41as65d0m1bcp85j1024vyd0g746dy9d4qq8b"; + name = "kde-l10n-sv-15.12.0.tar.xz"; }; }; kde-l10n-tr = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-tr-15.11.80.tar.xz"; - sha256 = "0r3sb0i1c0zzywsvkxzmhr67592ss6xzdaqmams6qa37znpxwjw3"; - name = "kde-l10n-tr-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-tr-15.12.0.tar.xz"; + sha256 = "1biw08ad87l3bpg39iz42a5chdbmarp7jq9gk6zd1z76iv930may"; + name = "kde-l10n-tr-15.12.0.tar.xz"; }; }; kde-l10n-ug = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-ug-15.11.80.tar.xz"; - sha256 = "0daw8qi6bn26xhvxnz3rs7xxqi5azhmj57ay8p62p84d6wfbswsw"; - name = "kde-l10n-ug-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-ug-15.12.0.tar.xz"; + sha256 = "1lhmxa9k7n0za60c9l4x0k002mzgd5hyjf2y8jwh2788vd6760fq"; + name = "kde-l10n-ug-15.12.0.tar.xz"; }; }; kde-l10n-uk = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-uk-15.11.80.tar.xz"; - sha256 = "0sfgsj4n0v0c99lmzbicjsyysf1n49413509lh0ljgmsr7v4mskw"; - name = "kde-l10n-uk-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-uk-15.12.0.tar.xz"; + sha256 = "0mwmzf5zqda3py1xd6sk3wsz4636h0mg6mvd05raajiz7986bp30"; + name = "kde-l10n-uk-15.12.0.tar.xz"; }; }; kde-l10n-wa = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-wa-15.11.80.tar.xz"; - sha256 = "04v29qq4n48lkql4nyxx4v95jl9v4gh5wxjqrimycw3n2xmrlbnb"; - name = "kde-l10n-wa-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-wa-15.12.0.tar.xz"; + sha256 = "184syr1kydbykyjprpvh1mhhi31snjadjphzapcb1d656rlw99ig"; + name = "kde-l10n-wa-15.12.0.tar.xz"; }; }; kde-l10n-zh_CN = { - version = "zh_CN-15.11.80"; + version = "zh_CN-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-zh_CN-15.11.80.tar.xz"; - sha256 = "15aa0b3bry1x87v9vwsylp06wzirq98jii1qfbkvh4cf17l23yvb"; - name = "kde-l10n-zh_CN-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_CN-15.12.0.tar.xz"; + sha256 = "1jyqcaa1xbgf27bpjwjyks93zj940j4f1i7ngs5d379w2g8jp8d1"; + name = "kde-l10n-zh_CN-15.12.0.tar.xz"; }; }; kde-l10n-zh_TW = { - version = "zh_TW-15.11.80"; + version = "zh_TW-15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-l10n/kde-l10n-zh_TW-15.11.80.tar.xz"; - sha256 = "0llisjlc6w13gqya7qgq9cxrqh8aicpz2q4z4afn770dqm02jbvn"; - name = "kde-l10n-zh_TW-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-l10n/kde-l10n-zh_TW-15.12.0.tar.xz"; + sha256 = "0wpw1shcp2bp55smcx0xxw7g7r1rd5sm9ca9zgx979mddv8gmil3"; + name = "kde-l10n-zh_TW-15.12.0.tar.xz"; + }; + }; + kdelibs = { + version = "4.14.15"; + src = fetchurl { + url = "${mirror}/stable/applications/15.12.0/src/kdelibs-4.14.15.tar.xz"; + sha256 = "0698nbih5sgkr08rrsap64kpc3vil84hzgdyara62v0wmffdr7a7"; + name = "kdelibs-4.14.15.tar.xz"; }; }; kdenetwork-filesharing = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdenetwork-filesharing-15.11.80.tar.xz"; - sha256 = "0rip7k13lfpblg2lbpj6y1dj6j0gmr6ydqdqkcnb37lgrjr1cmn0"; - name = "kdenetwork-filesharing-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdenetwork-filesharing-15.12.0.tar.xz"; + sha256 = "03npxv2p9hy7dl6h7d1yn4f8caycgfxvgq6r8rar3lq8c170bqgj"; + name = "kdenetwork-filesharing-15.12.0.tar.xz"; }; }; kdenetwork-strigi-analyzers = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdenetwork-strigi-analyzers-15.11.80.tar.xz"; - sha256 = "097m04s0vflpfpkbf55k4drbs9w8mp1a80chwyn623mmvg2bdr92"; - name = "kdenetwork-strigi-analyzers-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdenetwork-strigi-analyzers-15.12.0.tar.xz"; + sha256 = "01axll3636r5xqzrwjwqgq8gcnm6dcbmxfr07g81wb4q479py78g"; + name = "kdenetwork-strigi-analyzers-15.12.0.tar.xz"; }; }; kdenlive = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdenlive-15.11.80.tar.xz"; - sha256 = "0ms8q5daq8kklv73yhyh8905766zy6v26gbjcrsj4pvql3r6rbs4"; - name = "kdenlive-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdenlive-15.12.0.tar.xz"; + sha256 = "1y7vhd0i3pw67lh20f52ngcc3japnisqgs7blf84pih7ppj4lvss"; + name = "kdenlive-15.12.0.tar.xz"; }; }; kdepim = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdepim-15.11.80.tar.xz"; - sha256 = "0zjrjlsd49c3zk0l12b9ijl62y8jmgkmllgvxkpzrblpn1mqjjls"; - name = "kdepim-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdepim-15.12.0.tar.xz"; + sha256 = "0qh5iw8w3b2n1zv9c5hh0bcwrfisfk7ks0xmiqc711zc5r9a5nwh"; + name = "kdepim-15.12.0.tar.xz"; }; }; kdepimlibs = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdepimlibs-15.11.80.tar.xz"; - sha256 = "06z926a68b8k02w89qqddlarcnrr8wrpgvgg021xqnykgar3dy7h"; - name = "kdepimlibs-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdepimlibs-15.12.0.tar.xz"; + sha256 = "1zyjsq8fmrs2xy1zxcpkjz70sxx7nvnvgvxnx9q2dc4ikyqf1hqr"; + name = "kdepimlibs-15.12.0.tar.xz"; }; }; kdepim-runtime = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdepim-runtime-15.11.80.tar.xz"; - sha256 = "07xirx1z54xa7r4gcqfp0sz3r0vgi5f75klcmwna21j53hzc387r"; - name = "kdepim-runtime-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdepim-runtime-15.12.0.tar.xz"; + sha256 = "0d9p6wvg05y54mi2aa6x6882rgk6hqr9z85iqmcd4lfsw50lp7v3"; + name = "kdepim-runtime-15.12.0.tar.xz"; }; }; kde-runtime = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kde-runtime-15.11.80.tar.xz"; - sha256 = "1470pp11nc8z1x6wr5b8cpvx6fzflzx2ds06zl2yrq96acl5g8sp"; - name = "kde-runtime-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kde-runtime-15.12.0.tar.xz"; + sha256 = "1qlqqicnysqfl32rpddklv1qhy8wqnhvchl7dm62i94w50w86am6"; + name = "kde-runtime-15.12.0.tar.xz"; }; }; kdesdk-kioslaves = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdesdk-kioslaves-15.11.80.tar.xz"; - sha256 = "1gm8k4xnkija07kssakpli32isf5455hfvq5pnciqlzf7lllmib7"; - name = "kdesdk-kioslaves-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdesdk-kioslaves-15.12.0.tar.xz"; + sha256 = "1rgynw1zzn72sslgkxihrx4swx0sbz72a52smkjjhbykj10nlp54"; + name = "kdesdk-kioslaves-15.12.0.tar.xz"; }; }; kdesdk-strigi-analyzers = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdesdk-strigi-analyzers-15.11.80.tar.xz"; - sha256 = "0h6pnssm3nfnk3fqva3qwbkw82vxrzkg7incg2qzpvk0pwbxgyz9"; - name = "kdesdk-strigi-analyzers-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdesdk-strigi-analyzers-15.12.0.tar.xz"; + sha256 = "0cxrrv6ry4bjhyqw8nlzin4wajqcf0rshaiq4scgb8iy5g2cpfr5"; + name = "kdesdk-strigi-analyzers-15.12.0.tar.xz"; }; }; kdesdk-thumbnailers = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdesdk-thumbnailers-15.11.80.tar.xz"; - sha256 = "0wm4gy020lz7mlgn6naixy4fz72xscdlg1vmpw37p4dmxzphmdxy"; - name = "kdesdk-thumbnailers-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdesdk-thumbnailers-15.12.0.tar.xz"; + sha256 = "0w1lcvv2h4ndv91i4di9v5m6d9df5a8r93cblzm57z3izflpvf89"; + name = "kdesdk-thumbnailers-15.12.0.tar.xz"; }; }; kdewebdev = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdewebdev-15.11.80.tar.xz"; - sha256 = "00qmfas4d2r1gh8w421zmxyfra1xbc76zdisyv48phhw80rpqwyx"; - name = "kdewebdev-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdewebdev-15.12.0.tar.xz"; + sha256 = "1xq0ayrnbskb0g6bmvcayfxkb6sws4vvjhv3s65im1rmsrqnrgly"; + name = "kdewebdev-15.12.0.tar.xz"; }; }; kdf = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdf-15.11.80.tar.xz"; - sha256 = "19gazwf02kzga0980y6ixj5l56hjmzfms51zh0n7wl1cr8dbgg5i"; - name = "kdf-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdf-15.12.0.tar.xz"; + sha256 = "0gahpl2la6xkhbkh607b3p07csja1v43i3m29q47f3gaxj4dxpln"; + name = "kdf-15.12.0.tar.xz"; }; }; kdiamond = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kdiamond-15.11.80.tar.xz"; - sha256 = "0pp01c8n9m208hknigwcq5nvw5anf4621kip232iibw7pkwk8x2i"; - name = "kdiamond-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kdiamond-15.12.0.tar.xz"; + sha256 = "04w7sc22cf1rvgqav2vdj1msbdggq77a8znsqgy0my2mbsqwa175"; + name = "kdiamond-15.12.0.tar.xz"; }; }; kfloppy = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kfloppy-15.11.80.tar.xz"; - sha256 = "1935k4gm32kspjvb05jr24q1b3r31f96vs9g2s6b9s5a63b89w5j"; - name = "kfloppy-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kfloppy-15.12.0.tar.xz"; + sha256 = "1ihbbrrxdhgkh7nk8wmpvibxiw4a7nazw0pi88pxflbjjc4f67sn"; + name = "kfloppy-15.12.0.tar.xz"; }; }; kfourinline = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kfourinline-15.11.80.tar.xz"; - sha256 = "0y5hv4gr0nyilizcd90xka34n6xgqzgh9gh8gy8mw76xklnd1mfd"; - name = "kfourinline-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kfourinline-15.12.0.tar.xz"; + sha256 = "1z8y1q7ij9pc5wzfhpvy16yh6c000gwhas9kq3sjhzz9qynw9bd1"; + name = "kfourinline-15.12.0.tar.xz"; }; }; kgeography = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kgeography-15.11.80.tar.xz"; - sha256 = "01jzl84dc6jf48dx4i6vdv9mgnjvv92ssnamqkgs4jw2iva22s6f"; - name = "kgeography-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kgeography-15.12.0.tar.xz"; + sha256 = "1sj25ijc3n1xl8xmmkg784dxjcwxg4nviw89114qllbiy6q3lczh"; + name = "kgeography-15.12.0.tar.xz"; }; }; kget = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kget-15.11.80.tar.xz"; - sha256 = "17q7vpnx89zrgqgybxc1vjc596vgh82fpanqfbym5n0bxcpap8q5"; - name = "kget-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kget-15.12.0.tar.xz"; + sha256 = "0n9ah65c000x6xm04704pj6gxcgsbjfscw3gccv73vwin54y2ij5"; + name = "kget-15.12.0.tar.xz"; }; }; kgoldrunner = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kgoldrunner-15.11.80.tar.xz"; - sha256 = "0k815mkmd82aa6djyblm71ddl94796b52c0gf6c5dsg42r29w10f"; - name = "kgoldrunner-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kgoldrunner-15.12.0.tar.xz"; + sha256 = "0lril6s1m9frvkac531myg3jsx2xd1pp2ggnx0463hvfzgk73nd7"; + name = "kgoldrunner-15.12.0.tar.xz"; }; }; kgpg = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kgpg-15.11.80.tar.xz"; - sha256 = "0p088fb8mhfgvp0zihdda0554yw8k90f1xkd6hc4c9ngjc7d2pjf"; - name = "kgpg-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kgpg-15.12.0.tar.xz"; + sha256 = "04y6amdjmnqg80zsrwxwixgazr3ar90a7w9mj7fiv1982xcl6wis"; + name = "kgpg-15.12.0.tar.xz"; }; }; khangman = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/khangman-15.11.80.tar.xz"; - sha256 = "1lz2qgqddq18dczs9cax0r5pay9yxqn63j7msch0y99x33hfyidn"; - name = "khangman-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/khangman-15.12.0.tar.xz"; + sha256 = "1d8sf29ib1v06f4apg7g40qbf61zhgpw48pkgwxs01fdax0fahlz"; + name = "khangman-15.12.0.tar.xz"; }; }; kholidays = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kholidays-15.11.80.tar.xz"; - sha256 = "086d0vbzz2xcq6ibd7ia97lz89452gz3cxb879rvqxz3cyhhyfwr"; - name = "kholidays-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kholidays-15.12.0.tar.xz"; + sha256 = "0nclblhfjanvisn8xnis2b5y06cgk5wgqwzakywr74rffsg7nsqh"; + name = "kholidays-15.12.0.tar.xz"; }; }; kidentitymanagement = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kidentitymanagement-15.11.80.tar.xz"; - sha256 = "1j159alnxhvq4mpd2vr7jnj091x58gv47ms1rxk865xc66xv956s"; - name = "kidentitymanagement-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kidentitymanagement-15.12.0.tar.xz"; + sha256 = "04x01w4lvn07nybsivzh0a44cf9axxn7k8m1gdwhynqd4pjlsv4h"; + name = "kidentitymanagement-15.12.0.tar.xz"; }; }; kig = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kig-15.11.80.tar.xz"; - sha256 = "0w19w1bmj2grinq6s7biqqbdv9njdwqsynncb605ldwfvxnyyw7w"; - name = "kig-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kig-15.12.0.tar.xz"; + sha256 = "00163mm6ac3njw1farwm4rml1c9pkxp0583w10siwq7sfz28kx72"; + name = "kig-15.12.0.tar.xz"; }; }; kigo = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kigo-15.11.80.tar.xz"; - sha256 = "169cl12z1mjk4jn3c1ncq2q5adravsqraqxp7zq63yz819mv2mxj"; - name = "kigo-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kigo-15.12.0.tar.xz"; + sha256 = "15r298wxxl2ja6awmsvdxjrkp02hb70q097ry5vg2cmbay96drkj"; + name = "kigo-15.12.0.tar.xz"; }; }; killbots = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/killbots-15.11.80.tar.xz"; - sha256 = "13l02ndf3nyqq2qisfb4ap87z5jf1iplcs7mdj2iswmr57vpc16g"; - name = "killbots-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/killbots-15.12.0.tar.xz"; + sha256 = "1kgs427jxdg7kl7vp7a4ycf2bcpr3dcbyaimyi0c77vcsa9n3jq5"; + name = "killbots-15.12.0.tar.xz"; }; }; kimap = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kimap-15.11.80.tar.xz"; - sha256 = "12wcgjgkg8fk91g7f9g7kw2sp1783kv478m521rhl1cy345250sw"; - name = "kimap-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kimap-15.12.0.tar.xz"; + sha256 = "0xc3dki8qxwax89ic2qxc6kwxxc45fyg6lchm0j0n1b7h2z0d1km"; + name = "kimap-15.12.0.tar.xz"; }; }; kio-extras = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kio-extras-15.11.80.tar.xz"; - sha256 = "19i8dgs5spayilhc7wyn2g5f30yy9dkzn7vzj2fxd3bwvl8agn2a"; - name = "kio-extras-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kio-extras-15.12.0.tar.xz"; + sha256 = "0l697zllgd1myhabsj0sg4yrk1qlhap80r82im7lil48nzj9lh77"; + name = "kio-extras-15.12.0.tar.xz"; }; }; kiriki = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kiriki-15.11.80.tar.xz"; - sha256 = "0zrpvz8av3xcnlmms7akis1897pyqc6j9ysmv36gg4bsjj2g7ng3"; - name = "kiriki-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kiriki-15.12.0.tar.xz"; + sha256 = "0xfg70wd93hqzlvdaarv2nni35641gyp9in9k0fr17q7h8znpmak"; + name = "kiriki-15.12.0.tar.xz"; }; }; kiten = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kiten-15.11.80.tar.xz"; - sha256 = "0ci4wq5hp4dbmrb511m1pz6kyr2knl7aa82sd9pphndfg64l0mpi"; - name = "kiten-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kiten-15.12.0.tar.xz"; + sha256 = "194f85p7kg0z2jd5r229nawzqi091c4giwms99hf0dj9sl0mga3r"; + name = "kiten-15.12.0.tar.xz"; }; }; kjumpingcube = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kjumpingcube-15.11.80.tar.xz"; - sha256 = "121dd6gly5dqr85rvwnqaf9ssbaqlmhlg0crcs3idj9dwag9abvi"; - name = "kjumpingcube-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kjumpingcube-15.12.0.tar.xz"; + sha256 = "0zhl528h38x64r1mq0bjmh67487np3izcfij6d1w603mabhp146n"; + name = "kjumpingcube-15.12.0.tar.xz"; }; }; kldap = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kldap-15.11.80.tar.xz"; - sha256 = "1y5g13amhl14wdbb4sxdndrhcixc9xq0glrz17wz42w2jvsf1nsb"; - name = "kldap-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kldap-15.12.0.tar.xz"; + sha256 = "110pfp650w2ll02xcc0wb7d0fj3bp88k4l1mnyad0xw9acsd2l8r"; + name = "kldap-15.12.0.tar.xz"; }; }; klettres = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/klettres-15.11.80.tar.xz"; - sha256 = "1yiaz0ac9s99blqkb70228k5c575z05flqwmn1g13gdh8cyp41pj"; - name = "klettres-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/klettres-15.12.0.tar.xz"; + sha256 = "016hnl7pihikanapn79qj49q5fc3pgx7pdmqhs8v6kqic20wgrj1"; + name = "klettres-15.12.0.tar.xz"; }; }; klickety = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/klickety-15.11.80.tar.xz"; - sha256 = "09801vm45llrd8h1r9xb4ch1za98scihs655d0g8v938zqm0mzsz"; - name = "klickety-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/klickety-15.12.0.tar.xz"; + sha256 = "092x764bflnwjlmw4mdzpi4q6i206axy711h3fibkdlmnir7yj9w"; + name = "klickety-15.12.0.tar.xz"; }; }; klines = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/klines-15.11.80.tar.xz"; - sha256 = "1ssg07a48ymh3kl7pgd9wvfqf1q4kysl3c2ygiassl2dzk8inn6c"; - name = "klines-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/klines-15.12.0.tar.xz"; + sha256 = "0qs93fl1snsycbzy074xx96p5s29fjs8qwz84jz2qh1p7jb0kdn1"; + name = "klines-15.12.0.tar.xz"; }; }; kmag = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmag-15.11.80.tar.xz"; - sha256 = "0pdm8jj8h0r2xny1aa3nkrbyl4kvmamx49m3cvyv9kcnvabs6hhs"; - name = "kmag-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmag-15.12.0.tar.xz"; + sha256 = "1bx65bz7j4ab3zmc4sl6j9hdp7bmr3287ly66n3bidyc9rn25w02"; + name = "kmag-15.12.0.tar.xz"; }; }; kmahjongg = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmahjongg-15.11.80.tar.xz"; - sha256 = "036wckckjdm1hwpb4lpw5djm41faih22466abmqiw6327dddwysy"; - name = "kmahjongg-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmahjongg-15.12.0.tar.xz"; + sha256 = "1m56qq98f344g9snnpfg1z26xnca6zr6av29i4fnx4p33hcbg9rx"; + name = "kmahjongg-15.12.0.tar.xz"; }; }; kmailtransport = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmailtransport-15.11.80.tar.xz"; - sha256 = "0wl27x4z31lpbphx8bsb8kacpnbgcjds4a6ipdgp2xcxqxfixxdl"; - name = "kmailtransport-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmailtransport-15.12.0.tar.xz"; + sha256 = "1v20v0cy34cpp559zcn5cbbqv6gxy60msmyar5dlyx2xxi7jrzrc"; + name = "kmailtransport-15.12.0.tar.xz"; }; }; kmbox = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmbox-15.11.80.tar.xz"; - sha256 = "0ijdzizjc2vz3w684ny8rj92hpjmcsaqmh9q1vp2ffjfvz5qjppm"; - name = "kmbox-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmbox-15.12.0.tar.xz"; + sha256 = "0kygxv69zcsf3zjdlnxcxbnbv2zdsx8n4z2ai4smdkwm3gp15h34"; + name = "kmbox-15.12.0.tar.xz"; }; }; kmime = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmime-15.11.80.tar.xz"; - sha256 = "1m6n6waap6y9afff5cqldi08dwl5kk002y13m8l8yjxk056qgw06"; - name = "kmime-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmime-15.12.0.tar.xz"; + sha256 = "1gzir5bz2rbd24hwr9v7k6ri86ga5c7l1xgyr15pzdpa4q5nr975"; + name = "kmime-15.12.0.tar.xz"; }; }; kmines = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmines-15.11.80.tar.xz"; - sha256 = "0h29ibkcwlwj3npmkdwii652n5gwhl8xvm31xng93ap98qaawp1b"; - name = "kmines-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmines-15.12.0.tar.xz"; + sha256 = "07pn7k9ls8h8xc4wap3zgrz2z0x4yf9krmb8qgjk7k5basr6bcmy"; + name = "kmines-15.12.0.tar.xz"; }; }; kmix = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmix-15.11.80.tar.xz"; - sha256 = "0vry36l9rjbq44z022q4m1zgdgmhw9n7yr7920zq0wiq64qpm98w"; - name = "kmix-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmix-15.12.0.tar.xz"; + sha256 = "0cfs6xgj1yqv5ig8hx2m43a1yzjmbxkqhwj4gfpzl1anmhywmqz0"; + name = "kmix-15.12.0.tar.xz"; }; }; kmousetool = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmousetool-15.11.80.tar.xz"; - sha256 = "0hby69lj0n5swn4zk8mxiba27g4x8ci1cwcc9pxgbn7yc241zbhb"; - name = "kmousetool-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmousetool-15.12.0.tar.xz"; + sha256 = "08mbjbf4i9xfadblwrviq9l3hfc2l0zpfhv1v6a1piz1cijr3zlz"; + name = "kmousetool-15.12.0.tar.xz"; }; }; kmouth = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmouth-15.11.80.tar.xz"; - sha256 = "1mi0lm725s22nal01w7jzq4lfybk0qdln84q5yficpx13f7917fn"; - name = "kmouth-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmouth-15.12.0.tar.xz"; + sha256 = "1hxy6hk40s4kasv5qwhjhsq5k6lf2cfvvkwmh46rc3z7g6q02i10"; + name = "kmouth-15.12.0.tar.xz"; }; }; kmplot = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kmplot-15.11.80.tar.xz"; - sha256 = "1979nlcgil7qg334944p439nvq4hnc2nlql321s06dp03a8k6cf5"; - name = "kmplot-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kmplot-15.12.0.tar.xz"; + sha256 = "0fs5zvpfb8plpijsibqygcqhwxx9h2aqjkcfha7lpi6wscb33j21"; + name = "kmplot-15.12.0.tar.xz"; }; }; knavalbattle = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/knavalbattle-15.11.80.tar.xz"; - sha256 = "12wbj8nrzjydykvfj1hgpgmwivsipzd5fw5w9k9yi30bgvnryjxw"; - name = "knavalbattle-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/knavalbattle-15.12.0.tar.xz"; + sha256 = "18idqx5nrfp3fwb1xjk1l4pf5wak1pmym87xvnwg4xbiv26gv6v9"; + name = "knavalbattle-15.12.0.tar.xz"; }; }; knetwalk = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/knetwalk-15.11.80.tar.xz"; - sha256 = "15w99pigi8q0282j9sl98lddrivdm510q3pk3pm2mwwc7pi9gpc9"; - name = "knetwalk-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/knetwalk-15.12.0.tar.xz"; + sha256 = "1h7bqh83ykjhmv6xfn2wkq6ki7p1zpf7q18rypbchlkl8qm2q992"; + name = "knetwalk-15.12.0.tar.xz"; }; }; kolf = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kolf-15.11.80.tar.xz"; - sha256 = "1rdj30lyihhn1d64d3k0viw0x1acn3j6cwqjsvzcd50zbhrkcj85"; - name = "kolf-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kolf-15.12.0.tar.xz"; + sha256 = "0xbxvd1zwsqxsdnidizp83fydz42700bh9zp8wr4kymf6rjr43g4"; + name = "kolf-15.12.0.tar.xz"; }; }; kollision = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kollision-15.11.80.tar.xz"; - sha256 = "1hycqsp4j3rargpprfwqshmmr4g4vjd8145a0782ha0cj14ndrr8"; - name = "kollision-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kollision-15.12.0.tar.xz"; + sha256 = "1d4msxppm4f01dmi5lmivx7rzn070clg1gcxknf05i2kdkrfsal0"; + name = "kollision-15.12.0.tar.xz"; }; }; kolourpaint = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kolourpaint-15.11.80.tar.xz"; - sha256 = "1walxy7i9b6anb3sa4nj43m8n4mkcnm87i92fjspb7hm029bj8z1"; - name = "kolourpaint-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kolourpaint-15.12.0.tar.xz"; + sha256 = "0931r80xdwxbqja59qrr9rsmkksyr2dimak2b757klsbnmpyb9kv"; + name = "kolourpaint-15.12.0.tar.xz"; }; }; kompare = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kompare-15.11.80.tar.xz"; - sha256 = "10qvjqvy1dgzw1ywbza8z4ia2hcman0nlha7czy0lr2phf05rw8b"; - name = "kompare-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kompare-15.12.0.tar.xz"; + sha256 = "1cvigjqzzf7jinw69nxhx7n87wv6wf1rchfb0mcq86bhjfc8f5fi"; + name = "kompare-15.12.0.tar.xz"; }; }; konquest = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/konquest-15.11.80.tar.xz"; - sha256 = "0jkjncr5kb5qdqykvc4wksv5kj75fijnb6mzahx6ivcgaxp4jff8"; - name = "konquest-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/konquest-15.12.0.tar.xz"; + sha256 = "1c87d6xjp2dz1s0r6pa7vcn5waw2m21i5z7r3mlcaj0gk4s8wmgj"; + name = "konquest-15.12.0.tar.xz"; }; }; konsole = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/konsole-15.11.80.tar.xz"; - sha256 = "0vgzqnd27ab48rc6mb8hqhr8yk0qf8ygz0mgbhz4aswwk08dm0k0"; - name = "konsole-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/konsole-15.12.0.tar.xz"; + sha256 = "1mabhr3pm59558592gjkp6h1hsrna582lixy6rranrzh6mk9rswh"; + name = "konsole-15.12.0.tar.xz"; }; }; kontactinterface = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kontactinterface-15.11.80.tar.xz"; - sha256 = "0ywjvwx3y007mi1g0r9gq1vrcqdfgipk5jralxb91mzxrml2af8a"; - name = "kontactinterface-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kontactinterface-15.12.0.tar.xz"; + sha256 = "0n934mrm8kn1b8kqf51xv9ax0b7jfi9729rvnjr0mblpj506bnzq"; + name = "kontactinterface-15.12.0.tar.xz"; }; }; kopete = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kopete-15.11.80.tar.xz"; - sha256 = "0jk39agyl9nx4gkwff23aiq3lmnaz4w9xcfbhm906p7072ma82zj"; - name = "kopete-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kopete-15.12.0.tar.xz"; + sha256 = "0c3cydhaa20mcz2g8d3gcsrclfzsfwd6cqajsvh7ns5xjvkkw4g0"; + name = "kopete-15.12.0.tar.xz"; }; }; kpat = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kpat-15.11.80.tar.xz"; - sha256 = "07vchzgf5g92g6zf9slg3x0166fs9s6imysvs2lhin9adwawpbfj"; - name = "kpat-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kpat-15.12.0.tar.xz"; + sha256 = "0nqv8pmarj0lf50f6szn20j05i2c238hk2nvslbazsqjyqcadm5s"; + name = "kpat-15.12.0.tar.xz"; }; }; kpimtextedit = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kpimtextedit-15.11.80.tar.xz"; - sha256 = "1lx2a183p97ixx65f4aqn0k5avb124sm2rzgpj5mjnhqwxfc3fs7"; - name = "kpimtextedit-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kpimtextedit-15.12.0.tar.xz"; + sha256 = "1gvnnfkwj3qayb500xhja1x467j3qrj9bgcjvkdrwbgg3s82pias"; + name = "kpimtextedit-15.12.0.tar.xz"; }; }; kppp = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kppp-15.11.80.tar.xz"; - sha256 = "1j2kyp3jagp2grhbp5hcszq7h3lz43x8k2mfh5cahfkkzn88yqws"; - name = "kppp-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kppp-15.12.0.tar.xz"; + sha256 = "07x1603sfgxjd51dwrdwd1gwwypklbzib9wxi8r6d24f1mgiv9c1"; + name = "kppp-15.12.0.tar.xz"; }; }; kqtquickcharts = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kqtquickcharts-15.11.80.tar.xz"; - sha256 = "1ssbljhwj5idci7z9hd70pv7b7bmrc87x4k0fxpqayclgwi0iijf"; - name = "kqtquickcharts-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kqtquickcharts-15.12.0.tar.xz"; + sha256 = "1rp1kg8mm5p9h4h8n9js5l0xvvhiqbca2hbaywckr1ckwwiy16is"; + name = "kqtquickcharts-15.12.0.tar.xz"; }; }; krdc = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/krdc-15.11.80.tar.xz"; - sha256 = "1vhd01zf8w8555pp6b5d9vn92y0nm4r4cksiwvklqsrlv4p3yscc"; - name = "krdc-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/krdc-15.12.0.tar.xz"; + sha256 = "00q8lddqabbkb5lscsxq7sqny07zi1l449vhrahjxygqjivzrif8"; + name = "krdc-15.12.0.tar.xz"; }; }; kremotecontrol = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kremotecontrol-15.11.80.tar.xz"; - sha256 = "19hmq74nx074h5vhdcxkdqqdz58vkwpspc3dbyk8lypwd28xb09d"; - name = "kremotecontrol-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kremotecontrol-15.12.0.tar.xz"; + sha256 = "1vlzrc9p4icw4rniwhnjqw75h7r43n70rbbjmlir2py7cxybgmip"; + name = "kremotecontrol-15.12.0.tar.xz"; }; }; kreversi = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kreversi-15.11.80.tar.xz"; - sha256 = "1zd3lds1rrvbwxrv7qm2pm4pb0ki8szzv1bxpf18kywvw6kb40cr"; - name = "kreversi-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kreversi-15.12.0.tar.xz"; + sha256 = "09zbbvpllx4q2q1x0c5m1924a7vf8m0x55qb670fnx9cgybygvdm"; + name = "kreversi-15.12.0.tar.xz"; }; }; krfb = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/krfb-15.11.80.tar.xz"; - sha256 = "10873di286pgzadlrz4c96b4j2kajxin2wmys7y2lbv6cf0vya2i"; - name = "krfb-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/krfb-15.12.0.tar.xz"; + sha256 = "1zi84gzy7k7rvn9z5anphgqjnv19sb4kls2gw483isc6dp5xlrm7"; + name = "krfb-15.12.0.tar.xz"; }; }; kross-interpreters = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kross-interpreters-15.11.80.tar.xz"; - sha256 = "0zl0f3gh80inmb2wv1jpsxqd0pqaiaa6hkma756mhgxjb90shz3m"; - name = "kross-interpreters-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kross-interpreters-15.12.0.tar.xz"; + sha256 = "0ycs9agc872l1kcbcbhibyyv8xznww8qazh5z2db1w3c0380g4hv"; + name = "kross-interpreters-15.12.0.tar.xz"; }; }; kruler = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kruler-15.11.80.tar.xz"; - sha256 = "188mya8phcjlp1a8cf2mkkmrg38bwgclgqm36wk181f03cvrqwhi"; - name = "kruler-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kruler-15.12.0.tar.xz"; + sha256 = "1gzbsl6xw5x5kcf52gal8f07rxz2xilr541j14isp5qnl1qlym6p"; + name = "kruler-15.12.0.tar.xz"; }; }; ksaneplugin = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksaneplugin-15.11.80.tar.xz"; - sha256 = "1n42i649vcgmv80vacvf1xwa99ay1sz1csi6jc1y09qk83cwdfpa"; - name = "ksaneplugin-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksaneplugin-15.12.0.tar.xz"; + sha256 = "1zwdxa91j6yh5607aawg1jcn02fnp17ydf2q0fzq5211b0ly6hvf"; + name = "ksaneplugin-15.12.0.tar.xz"; }; }; kscd = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kscd-15.11.80.tar.xz"; - sha256 = "1xgb7qvqhg9mlxi09ggqs2l6ybs6wilabp6hbzk1r1zqf44fvvh1"; - name = "kscd-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kscd-15.12.0.tar.xz"; + sha256 = "1x0pw2cbkm4x9phb0j4ac9kc5w6ikvhz2a4bf5p1asidpcd0vfw0"; + name = "kscd-15.12.0.tar.xz"; }; }; kshisen = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kshisen-15.11.80.tar.xz"; - sha256 = "0wzran4wdb4zjf4qzj08hzzf3mqzi6dds0yhfv2mwwpw59bba2y4"; - name = "kshisen-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kshisen-15.12.0.tar.xz"; + sha256 = "1azqrg8268557wa7y4l4z667pvgk40nzn9cq5h7i2s6spqbirj1a"; + name = "kshisen-15.12.0.tar.xz"; }; }; ksirk = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksirk-15.11.80.tar.xz"; - sha256 = "0ciab5mxqli299x084cig8vrlxsirzjvqxzmvk6pz0jf4g8jl797"; - name = "ksirk-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksirk-15.12.0.tar.xz"; + sha256 = "04pyppz7pnj8ivlv2aqdjawcjlgbra7zxdsmbb1f7x1il0hdwwhy"; + name = "ksirk-15.12.0.tar.xz"; }; }; ksnakeduel = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksnakeduel-15.11.80.tar.xz"; - sha256 = "1p0fcjm06a9klb9hrclxs5jskflfb5c3ix7w3b23ql1798nml4f3"; - name = "ksnakeduel-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksnakeduel-15.12.0.tar.xz"; + sha256 = "1pmk7v8djcq3jkw77g074xi5j7sds6nn0y87vxl7fpldn7xj1msh"; + name = "ksnakeduel-15.12.0.tar.xz"; }; }; kspaceduel = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kspaceduel-15.11.80.tar.xz"; - sha256 = "116bjbp5771p6plvamd8iybnj3cx2xi07qhrd2ky8jbxrbbzvmya"; - name = "kspaceduel-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kspaceduel-15.12.0.tar.xz"; + sha256 = "14z3wgzjdc28a4rkv99r9m4am9qprnf3m8sgdgjcvq478308z2qc"; + name = "kspaceduel-15.12.0.tar.xz"; }; }; ksquares = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksquares-15.11.80.tar.xz"; - sha256 = "0k3h1r5h8bdvs7sk39nh371pdibgl8xmgp3w0xj95q3ya6587zqg"; - name = "ksquares-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksquares-15.12.0.tar.xz"; + sha256 = "1w5z1j99gjizzd3zdym9q6frjfybyk4zjhvv8r788562j3qm1iiz"; + name = "ksquares-15.12.0.tar.xz"; }; }; kstars = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kstars-15.11.80.tar.xz"; - sha256 = "1djzvsk91hpxlnmymn1148lr9kdyvwsn2krfrs8wg3f2wy20shjr"; - name = "kstars-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kstars-15.12.0.tar.xz"; + sha256 = "1qf0ir0s3bw7dxv74w88y4165s87ah8hi1ivwi4391wm1qkijm00"; + name = "kstars-15.12.0.tar.xz"; }; }; ksudoku = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksudoku-15.11.80.tar.xz"; - sha256 = "0cv9ax2iarz5fy46jp53sgmqw58maasnmp8zky8sm0xz4slphcmq"; - name = "ksudoku-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksudoku-15.12.0.tar.xz"; + sha256 = "14m8alqgyc8lc4jmca3lfgw4lhigj7xy7ibyilc7d5ql9fwl8aqm"; + name = "ksudoku-15.12.0.tar.xz"; }; }; ksystemlog = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ksystemlog-15.11.80.tar.xz"; - sha256 = "0iah8676h10y5dlw4n9qxy0kxp7n7wzwkvkgvmxzapzvxly2jpdl"; - name = "ksystemlog-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ksystemlog-15.12.0.tar.xz"; + sha256 = "1gqarafcn6j0ingkdn5mnwcv3y7rw6i564dmwjsncn3jsk4217v2"; + name = "ksystemlog-15.12.0.tar.xz"; }; }; kteatime = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kteatime-15.11.80.tar.xz"; - sha256 = "0ylkhi0i3w7m4jn3bdvnq0wvamj546mk4dggd4ivkwbbf1csbwi2"; - name = "kteatime-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kteatime-15.12.0.tar.xz"; + sha256 = "089gpi9gd0gk5pmikziz8jgzjvm2n60bmiyv13w955dsldqr04bv"; + name = "kteatime-15.12.0.tar.xz"; }; }; ktimer = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktimer-15.11.80.tar.xz"; - sha256 = "0jv5xzpczwz6mrp2dpynq5bfa90my6pdrndjrz7qa09g9zi9k0wk"; - name = "ktimer-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktimer-15.12.0.tar.xz"; + sha256 = "1zjv9nqx8ij66r2ig7ran9wzlffiw13kyjili4mxyvlg1gq2piwc"; + name = "ktimer-15.12.0.tar.xz"; }; }; ktnef = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktnef-15.11.80.tar.xz"; - sha256 = "0s1x877vrzhjyxvm317i0xyc589awkfgyq6cp3yjr3sdyb21bklr"; - name = "ktnef-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktnef-15.12.0.tar.xz"; + sha256 = "15qyvyqww4fhhwb6ms0wakvs7lxi7pgljyjw9vxc73ppmn3i69ps"; + name = "ktnef-15.12.0.tar.xz"; }; }; ktouch = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktouch-15.11.80.tar.xz"; - sha256 = "1ys3flgmwqryvk39b8405gf2v8qdj9prz7iz9kx0ncb353fz1fd0"; - name = "ktouch-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktouch-15.12.0.tar.xz"; + sha256 = "1yh9jdl45vq99ra9lp759c6gh4zs8s9nnb58f3kbhhqn8sphw4qx"; + name = "ktouch-15.12.0.tar.xz"; }; }; ktp-accounts-kcm = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-accounts-kcm-15.11.80.tar.xz"; - sha256 = "0kdc96lxzyp7gc9iva6q0dawcw1naw0rdzmcvr254dvk5pwz8wcq"; - name = "ktp-accounts-kcm-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-accounts-kcm-15.12.0.tar.xz"; + sha256 = "1az0048wzq1kx2c4si4k2470mpskcan904l4biqflqsdy2zfg7rj"; + name = "ktp-accounts-kcm-15.12.0.tar.xz"; }; }; ktp-approver = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-approver-15.11.80.tar.xz"; - sha256 = "03f39h4ppwy92w18wn2n4m5gwiryahj49nmbcsfhvha0va0892fa"; - name = "ktp-approver-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-approver-15.12.0.tar.xz"; + sha256 = "0gcyvkrpj91hvyzvgk4anj51xni6xzp9vb6cb6afp2g72nvhzqsm"; + name = "ktp-approver-15.12.0.tar.xz"; }; }; ktp-auth-handler = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-auth-handler-15.11.80.tar.xz"; - sha256 = "0wcz1wjz2r3r86cfvp2wyfcbnvar0alyil7zv8hizzyickwsb3y7"; - name = "ktp-auth-handler-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-auth-handler-15.12.0.tar.xz"; + sha256 = "00ipr6936j0iwdy9c6r1x57was9f7g17sh5r5nb1fgdk0rfvnpm4"; + name = "ktp-auth-handler-15.12.0.tar.xz"; }; }; ktp-common-internals = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-common-internals-15.11.80.tar.xz"; - sha256 = "1gq6mpa0mrfyiv9kiyy39fh28xvwj9vivn3p8nhx5zmai37l5ds4"; - name = "ktp-common-internals-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-common-internals-15.12.0.tar.xz"; + sha256 = "11ad84y8x4nac9f5bqzwhmwjigdx69z2zfiwfjzxv6fjkf02gz2m"; + name = "ktp-common-internals-15.12.0.tar.xz"; }; }; ktp-contact-list = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-contact-list-15.11.80.tar.xz"; - sha256 = "14az86dv3jmb5x26vgn2wqnys77nz9rjscp6n6hvpqcyp6g5h075"; - name = "ktp-contact-list-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-contact-list-15.12.0.tar.xz"; + sha256 = "0l1k1spnsf8s3h6ivamihl3bfwhy5y4f0jv44nr2qlk370ip404c"; + name = "ktp-contact-list-15.12.0.tar.xz"; }; }; ktp-contact-runner = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-contact-runner-15.11.80.tar.xz"; - sha256 = "0qp7mgn46favlz1a9xv9rv4pbykmc5m5csv3mbrq6pndpihdfbxq"; - name = "ktp-contact-runner-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-contact-runner-15.12.0.tar.xz"; + sha256 = "17vkp9idmywbrxjlrmaxkhv75iv1nqfqvmgisxdi1rv224rayif3"; + name = "ktp-contact-runner-15.12.0.tar.xz"; }; }; ktp-desktop-applets = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-desktop-applets-15.11.80.tar.xz"; - sha256 = "1l6z58g0p5xlc0l9z9xgkw3sv7jx4kdwp8jpx1v8m513r8szfwgg"; - name = "ktp-desktop-applets-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-desktop-applets-15.12.0.tar.xz"; + sha256 = "01pnr2nvlz1hg4s6w1xlxi42k1m53k0zlzzjjw0hzpjyjvvqybpw"; + name = "ktp-desktop-applets-15.12.0.tar.xz"; }; }; ktp-filetransfer-handler = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-filetransfer-handler-15.11.80.tar.xz"; - sha256 = "019h5q83593yg2mgknv8yzfq3bl2vjfkf0dwv7mb6ykf6bsb9630"; - name = "ktp-filetransfer-handler-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-filetransfer-handler-15.12.0.tar.xz"; + sha256 = "0hq1jws3fknl0xsy4j4i72af0s700l065ikfcjlmqfkmr9kvgf3j"; + name = "ktp-filetransfer-handler-15.12.0.tar.xz"; }; }; ktp-kded-module = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-kded-module-15.11.80.tar.xz"; - sha256 = "1mf9mya8r6lrmbr26pdp9d7hdp1irsba46zlr859hjl6pqa10i3b"; - name = "ktp-kded-module-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-kded-module-15.12.0.tar.xz"; + sha256 = "0cmgcfg3aw9dqjf6x0vb040mji4wfp8fxrs89916hhh7icavcab7"; + name = "ktp-kded-module-15.12.0.tar.xz"; }; }; ktp-send-file = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-send-file-15.11.80.tar.xz"; - sha256 = "1d265x89854xvxdxqa9z37r6m13kiplawkxq5l4cy5hlwmvp3ivm"; - name = "ktp-send-file-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-send-file-15.12.0.tar.xz"; + sha256 = "1rasdrdydv5mmq2nkgb5nflklid02pbwb2kff6dfkz45xbsjirqa"; + name = "ktp-send-file-15.12.0.tar.xz"; }; }; ktp-text-ui = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktp-text-ui-15.11.80.tar.xz"; - sha256 = "0mixwwqwx4z8m0kaj0wfn5zczq08w18ascl9r78mvx6p1946m86q"; - name = "ktp-text-ui-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktp-text-ui-15.12.0.tar.xz"; + sha256 = "1hzsgl9rcvqsadvaksiqg6cfrgds2w5pxq4s0i1swqmssxnlvnhl"; + name = "ktp-text-ui-15.12.0.tar.xz"; }; }; ktuberling = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/ktuberling-15.11.80.tar.xz"; - sha256 = "1gpsimdx0l9ml9f8nfqbqm2jmj60w3bni1s23iyc62b96pazx9a4"; - name = "ktuberling-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/ktuberling-15.12.0.tar.xz"; + sha256 = "0sp4hbqi84b2ndavc19jnij76s8x06hz4sg8rjlbk3v86d7gsh7y"; + name = "ktuberling-15.12.0.tar.xz"; }; }; kturtle = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kturtle-15.11.80.tar.xz"; - sha256 = "13z9rsk0ikg1q312wkag8njgw5921nhfmd57bdfa6p0w971wndm4"; - name = "kturtle-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kturtle-15.12.0.tar.xz"; + sha256 = "04xa4rr03gr3qbb45ab1paq4jxq297xdg8gmg47mzl81i803hxcl"; + name = "kturtle-15.12.0.tar.xz"; }; }; kubrick = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kubrick-15.11.80.tar.xz"; - sha256 = "11kccqc8vs6cvwzabq80bwyn4f1qypln807m7xx5g3p07qzplc28"; - name = "kubrick-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kubrick-15.12.0.tar.xz"; + sha256 = "0p4y9q6f7l6hmk8ip84wbm30p1w8mk54i65gqb3qrbqyxgrw3bdp"; + name = "kubrick-15.12.0.tar.xz"; }; }; kuser = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kuser-15.11.80.tar.xz"; - sha256 = "0ima6v48i0cd1kizadla6zm40hdmdp3b4phq8lmai1vqhy9890h8"; - name = "kuser-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kuser-15.12.0.tar.xz"; + sha256 = "1hhglba2jxy56aziyy45d0g5mn2fadn092j6qd81d91qpp41syf5"; + name = "kuser-15.12.0.tar.xz"; }; }; kwalletmanager = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kwalletmanager-15.11.80.tar.xz"; - sha256 = "1fg9qjlb12wnxrdz9f6yvvs4ybwwwp3n73nsmq6igms2rw00ixaf"; - name = "kwalletmanager-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kwalletmanager-15.12.0.tar.xz"; + sha256 = "1sb1dq7ngvy0mmjm2dch05d5iifw49kvvdxqz1xhycy7ld09a9nf"; + name = "kwalletmanager-15.12.0.tar.xz"; }; }; kwordquiz = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/kwordquiz-15.11.80.tar.xz"; - sha256 = "00pv1q2d0ccihwbvsk51hblzc2vvnw81lrla7a77bdgk266b2q3c"; - name = "kwordquiz-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/kwordquiz-15.12.0.tar.xz"; + sha256 = "0mswx58i3zcwzf8m424vsh1rck4vmbjjsy98adyyhhj0szr356sf"; + name = "kwordquiz-15.12.0.tar.xz"; }; }; libkcddb = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkcddb-15.11.80.tar.xz"; - sha256 = "0dm8vi0h84zm84jjqrlgpc5n8shwlipd3dmm3ndl31jx3wmm4cca"; - name = "libkcddb-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkcddb-15.12.0.tar.xz"; + sha256 = "1n40p6byankdwlm2097pnn3lx1hkxhxpr9fw4mjwc40h0185yzl7"; + name = "libkcddb-15.12.0.tar.xz"; }; }; libkcompactdisc = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkcompactdisc-15.11.80.tar.xz"; - sha256 = "0q6yvjzjlkc5pmjqrxphk4n7va6hcr903vkamvnbhn559qv3j11x"; - name = "libkcompactdisc-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkcompactdisc-15.12.0.tar.xz"; + sha256 = "1wpkhm3y499wllifqvbcgfypgkl81m0xbdbmji9drvhw59bj287h"; + name = "libkcompactdisc-15.12.0.tar.xz"; }; }; libkdcraw = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkdcraw-15.11.80.tar.xz"; - sha256 = "1s7cz3wh4066wyixbzvczba94v5fizwmcnl6waazgnabr8djy75r"; - name = "libkdcraw-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkdcraw-15.12.0.tar.xz"; + sha256 = "10l3il1slpwk2djkgv5sh6mfv866mjlv7y799g2qx1kns6pkzf9k"; + name = "libkdcraw-15.12.0.tar.xz"; }; }; libkdeedu = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkdeedu-15.11.80.tar.xz"; - sha256 = "0xmfv692x6s6c350l324mi69512sbmqscx26hv3827sm02lxi3nj"; - name = "libkdeedu-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkdeedu-15.12.0.tar.xz"; + sha256 = "07i5ibd1p0sxqhv4rc6hl88198nvnrxwhkfd36rfg44n3353gdvi"; + name = "libkdeedu-15.12.0.tar.xz"; }; }; libkdegames = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkdegames-15.11.80.tar.xz"; - sha256 = "1pkl30ijnbmzc8gs1ib5l7qvmnb2a59smakaipji2n6pcik5xdi5"; - name = "libkdegames-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkdegames-15.12.0.tar.xz"; + sha256 = "1x3303lpks1bh5bpj4slhlqs1b2ajrdwgsipqxvy96qpdbj00lvv"; + name = "libkdegames-15.12.0.tar.xz"; }; }; libkeduvocdocument = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkeduvocdocument-15.11.80.tar.xz"; - sha256 = "0p7mbw5xm7ywrz36rs8xpcnjm4w844jgjcciv0r4qwbpvcxm38kh"; - name = "libkeduvocdocument-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkeduvocdocument-15.12.0.tar.xz"; + sha256 = "0vpa5f3wgvxw2ib5sfngnl1wj1f8z1xq4qrgxs3qhfcl5ci4mcfz"; + name = "libkeduvocdocument-15.12.0.tar.xz"; }; }; libkexiv2 = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkexiv2-15.11.80.tar.xz"; - sha256 = "0pis24db80l9w62v6axy9137rdgpsdlfrzf9k3yi63x0qs037k5c"; - name = "libkexiv2-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkexiv2-15.12.0.tar.xz"; + sha256 = "0gmaris7jjcq8990ccahs00k9yrik077kppxjh4l41ipr3g3kwn2"; + name = "libkexiv2-15.12.0.tar.xz"; }; }; libkface = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkface-15.11.80.tar.xz"; - sha256 = "0mr52fn3j71y0qaxn4wdz7lrk8ylmlj965jvilgzpnf97jdhy8bc"; - name = "libkface-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkface-15.12.0.tar.xz"; + sha256 = "0zdvwzna9x9d9fdzs7nzrqsfiq6z2f11aj97xl3lhfryqcbwdfyj"; + name = "libkface-15.12.0.tar.xz"; }; }; libkgeomap = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkgeomap-15.11.80.tar.xz"; - sha256 = "1nwzakm5njilqpa7fslgz4gcy02b1kzhnrckm867qavn8qmy0j56"; - name = "libkgeomap-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkgeomap-15.12.0.tar.xz"; + sha256 = "0l4pfv5a2nq4s4m8xp0s08khlvzd97pfjr6ghlx4wrcygnsqwwy7"; + name = "libkgeomap-15.12.0.tar.xz"; }; }; libkipi = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkipi-15.11.80.tar.xz"; - sha256 = "1qmpbrmpm8hbrfwjihpg3gks177cvwc99rmb9bvphi2q8xg49xzn"; - name = "libkipi-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkipi-15.12.0.tar.xz"; + sha256 = "047ga97fapnk39xcz41c4l6hdvxh4f0zjajl9ll116c20whbi8g1"; + name = "libkipi-15.12.0.tar.xz"; }; }; libkmahjongg = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkmahjongg-15.11.80.tar.xz"; - sha256 = "192az0z4hwqcn8j02g17fxc44blv615vn345svrxbmxinr1cc18q"; - name = "libkmahjongg-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkmahjongg-15.12.0.tar.xz"; + sha256 = "0dgvxc2v48j17n0b547h74w9g8v7n975szzr3bgwkxljkcw99zgc"; + name = "libkmahjongg-15.12.0.tar.xz"; }; }; libkomparediff2 = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libkomparediff2-15.11.80.tar.xz"; - sha256 = "1zv6y7j4dna6m51xqs0i3sjd3xxy7bqb8jwrqpjls2fy4x55cnv2"; - name = "libkomparediff2-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libkomparediff2-15.12.0.tar.xz"; + sha256 = "1spxzl7a6blyfwndissf489dixndycwigcpav5qfdav00s20vbdx"; + name = "libkomparediff2-15.12.0.tar.xz"; }; }; libksane = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/libksane-15.11.80.tar.xz"; - sha256 = "1ljqv14x29pqzm7nd7rg3p447q188m1266b2sgvyrpvgg340ynrp"; - name = "libksane-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/libksane-15.12.0.tar.xz"; + sha256 = "1262gvy61a07vgam4ws6vjy7q0d7pz9q05d24bcy0dqi6wvlsbwp"; + name = "libksane-15.12.0.tar.xz"; }; }; lokalize = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/lokalize-15.11.80.tar.xz"; - sha256 = "0n6mg6r3hlm9m19kbw2nrfimjhvf23l33wcfwdb66hq05z5fqacz"; - name = "lokalize-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/lokalize-15.12.0.tar.xz"; + sha256 = "0nmqp78a2amgyiisvhqcpxjrvv1p3ssx4wg3gyqz9rw5x7yzh1v7"; + name = "lokalize-15.12.0.tar.xz"; }; }; lskat = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/lskat-15.11.80.tar.xz"; - sha256 = "0c30dcsydvzc469gxbv0y0g1v9mg745ajng18sv9jrsgrc9594vv"; - name = "lskat-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/lskat-15.12.0.tar.xz"; + sha256 = "0nwbsfz6hi20rv8w1hm4lblwifmnyvdyv9icn5z8hlqf2wz0kn73"; + name = "lskat-15.12.0.tar.xz"; }; }; marble = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/marble-15.11.80.tar.xz"; - sha256 = "1ks031ypb4himg0jiw1vql0isli1hyaz7kmagvby4il7cw4gdgf3"; - name = "marble-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/marble-15.12.0.tar.xz"; + sha256 = "01hdndic1k5f6fr75152adi0ph8q0ypxhj15yr02l7i2lcwzk9va"; + name = "marble-15.12.0.tar.xz"; }; }; mplayerthumbs = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/mplayerthumbs-15.11.80.tar.xz"; - sha256 = "0snn5jmpsyczxxyfp5ka5mkymldy7pjb2jqjc092aci6w1mmkvsd"; - name = "mplayerthumbs-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/mplayerthumbs-15.12.0.tar.xz"; + sha256 = "0ghqfcys8qkr7jm5g7i4753bisg6ah36f0i3bm437r27gf8jy2xk"; + name = "mplayerthumbs-15.12.0.tar.xz"; }; }; okteta = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/okteta-15.11.80.tar.xz"; - sha256 = "06334p934fyajaqg7pz8wqyzcmghymhanfnyz6y1cqaqrkf16n0s"; - name = "okteta-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/okteta-15.12.0.tar.xz"; + sha256 = "01fa1ai0c6ifh8gjzhv9jrmpr43h84bj17m22g8z3aa0yci25mfq"; + name = "okteta-15.12.0.tar.xz"; }; }; okular = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/okular-15.11.80.tar.xz"; - sha256 = "0ny8r7shnl7qjdzb0m9rmcq3y7scpfycxz7rcxv8x52v0vqkqgh8"; - name = "okular-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/okular-15.12.0.tar.xz"; + sha256 = "17bbns5r43h05say0drqyc9w1lfm8vwsqrknaj16cgd2kz23rxwq"; + name = "okular-15.12.0.tar.xz"; }; }; palapeli = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/palapeli-15.11.80.tar.xz"; - sha256 = "02w0m3piw15x0bmkh6ap6il13yj5r0kszwrq47k6ildl96a0zbdd"; - name = "palapeli-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/palapeli-15.12.0.tar.xz"; + sha256 = "18c70brh5gw2rnl4xwxa32avcyv5nmj8q2l826ah9gbx74y0ffjw"; + name = "palapeli-15.12.0.tar.xz"; }; }; parley = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/parley-15.11.80.tar.xz"; - sha256 = "06na0w14f5r322ybn38qal57arrjv3brlbmlb4bw196467cw773i"; - name = "parley-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/parley-15.12.0.tar.xz"; + sha256 = "0sj5mgbj77p0kj1nylnrjr010nw53a0x3lqfbhxmv09bhszpfnqs"; + name = "parley-15.12.0.tar.xz"; }; }; picmi = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/picmi-15.11.80.tar.xz"; - sha256 = "1m5b0ziz0pa7j5awis78brx1dsp8rwpg08lbkjvr09l20xb0n0mj"; - name = "picmi-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/picmi-15.12.0.tar.xz"; + sha256 = "02p2c14bis99f1ylkdclk95awx6b87n2ln555dyy2m3sf7pjdllg"; + name = "picmi-15.12.0.tar.xz"; }; }; poxml = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/poxml-15.11.80.tar.xz"; - sha256 = "1p7h7q0dgynyd1187bgavfbpgn2g8km8rf8gzwya7wn8nz152xff"; - name = "poxml-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/poxml-15.12.0.tar.xz"; + sha256 = "0l5y2a68yikwjp83c65wyb589yf6jxlj3432wcrj3zkx46l8rwd0"; + name = "poxml-15.12.0.tar.xz"; }; }; print-manager = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/print-manager-15.11.80.tar.xz"; - sha256 = "102h4h4qk0hnkak1sh5bmbvhnrr2bhrsqs45j1zyql0na63b5gy1"; - name = "print-manager-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/print-manager-15.12.0.tar.xz"; + sha256 = "09vfs3gj46asyqq1dxwil4rvd7pm0svbq4kfj76s0b4likmwn34b"; + name = "print-manager-15.12.0.tar.xz"; }; }; rocs = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/rocs-15.11.80.tar.xz"; - sha256 = "0i05lsvzbcsxqr70a2xsdgq6j5xcbm54g4jw0ifh3jvpr0yrmgb4"; - name = "rocs-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/rocs-15.12.0.tar.xz"; + sha256 = "1sgf2ppiwj7yn1yc08lvrd0pfrdfyaxjm1hm5c7mbz2bfz48mv6v"; + name = "rocs-15.12.0.tar.xz"; }; }; signon-kwallet-extension = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/signon-kwallet-extension-15.11.80.tar.xz"; - sha256 = "0crq69px0gbcw7h6bgbjad35djh3lm9jniblj6avkz8plj0j16z5"; - name = "signon-kwallet-extension-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/signon-kwallet-extension-15.12.0.tar.xz"; + sha256 = "17wwdxyv7w8y7v6kl23czg1ffbhx9yv5siln923zw52wvfd23gwb"; + name = "signon-kwallet-extension-15.12.0.tar.xz"; }; }; spectacle = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/spectacle-15.11.80.tar.xz"; - sha256 = "1p39qxr67iy6lda2j9ar0aq1sg29gp9ds29aqbs3rx9m56rn8h6q"; - name = "spectacle-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/spectacle-15.12.0.tar.xz"; + sha256 = "0ynffi4k52g1wgdqgswdn4q48zv2z2wa9k7l34m2kqs4qlwlffrh"; + name = "spectacle-15.12.0.tar.xz"; }; }; step = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/step-15.11.80.tar.xz"; - sha256 = "0ggm9rqzjw1aljhmxnc6n428zkp0c1ik3lldaxi576z5ipvvgwnd"; - name = "step-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/step-15.12.0.tar.xz"; + sha256 = "050nk1kqwjl687x2fd1zslpsjibkq6qsjl61naslrp58xsvninnl"; + name = "step-15.12.0.tar.xz"; }; }; svgpart = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/svgpart-15.11.80.tar.xz"; - sha256 = "0fq69li2z2nqj0xrsd010d9gfpc39r8k5fxbzlfravi12big0yhk"; - name = "svgpart-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/svgpart-15.12.0.tar.xz"; + sha256 = "01lib7f7nngypxj3fz367fa4hikfh3v03405idsrqb80fm1jwwjr"; + name = "svgpart-15.12.0.tar.xz"; }; }; sweeper = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/sweeper-15.11.80.tar.xz"; - sha256 = "1yw1f1j2qzzpqzr3iz0fyi8kmd369i94gx0njv2iqm1jakk1hqfc"; - name = "sweeper-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/sweeper-15.12.0.tar.xz"; + sha256 = "0p5lz1zzxsvy0frjzjhn1g8z60qy8ffb69qy6gnkzm5qz2b7c0gc"; + name = "sweeper-15.12.0.tar.xz"; }; }; syndication = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/syndication-15.11.80.tar.xz"; - sha256 = "06y5wz7asa4f1a7j7arhggwyv5cikn52d0h38ybxa9vjcmkn5nw5"; - name = "syndication-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/syndication-15.12.0.tar.xz"; + sha256 = "1awsqsz2603iik7qajv8m19ygyyj16i5iyz24cp2dabxy5zhhn4i"; + name = "syndication-15.12.0.tar.xz"; }; }; umbrello = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/umbrello-15.11.80.tar.xz"; - sha256 = "1kpag8f6r3cfp77z8lb8hbpq2djqg718bs6hs8wi99y2zy85xwr6"; - name = "umbrello-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/umbrello-15.12.0.tar.xz"; + sha256 = "09lkqdialqvx3qgj25gx3wqyz2qfwgy27ahmlac0zg7grjpf0gf9"; + name = "umbrello-15.12.0.tar.xz"; }; }; zeroconf-ioslave = { - version = "15.11.80"; + version = "15.12.0"; src = fetchurl { - url = "${mirror}/unstable/applications/15.11.80/src/zeroconf-ioslave-15.11.80.tar.xz"; - sha256 = "1kpahrs8p9l52hgkm3whryvwcbw9fzn4l4yxq93ijzac0m8gpqwr"; - name = "zeroconf-ioslave-15.11.80.tar.xz"; + url = "${mirror}/stable/applications/15.12.0/src/zeroconf-ioslave-15.12.0.tar.xz"; + sha256 = "1mly8j549yd1azc5g5clglypbadxngzml75wvi2irvwsvmzwshf7"; + name = "zeroconf-ioslave-15.12.0.tar.xz"; }; }; } diff --git a/pkgs/applications/misc/acbuild/default.nix b/pkgs/applications/misc/acbuild/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..3c8f4f335f268231164b692967e5390e09f20cc8 --- /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 de5e4f26534fa78fef8399aab7e578a5296a9130..46b09609d0bfa87297adf54f731f2beae52fbf7a 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -1,16 +1,16 @@ { 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 }: stdenv.mkDerivation rec { - version = "2.45.0"; + version = "2.46.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "1s3wrrvp2d0mczs09g2xkkknvlk3max6ws7awpss5kkdpjvay6ma"; + sha256 = "0ig1pb62w57l6nhwg391mkjhw9dyicix6xigpdyw0320jdw9nlkb"; }; inherit python; @@ -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/cdrtools/cdrtools-2.01-install.patch b/pkgs/applications/misc/cdrtools/cdrtools-2.01-install.patch deleted file mode 100644 index a8d93d3699807ce2e94f8e716afa52d4de6826cf..0000000000000000000000000000000000000000 --- a/pkgs/applications/misc/cdrtools/cdrtools-2.01-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -ruN cdrtools-2.01/DEFAULTS/Defaults.linux cdrtools-2.01.new/DEFAULTS/Defaults.linux ---- cdrtools-2.01/DEFAULTS/Defaults.linux 2003-02-16 01:01:48.000000000 +0100 -+++ cdrtools-2.01.new/DEFAULTS/Defaults.linux 2005-08-30 21:13:55.000000000 +0200 -@@ -27,7 +27,8 @@ - # Installation config stuff - # - ########################################################################### --INS_BASE= /opt/schily -+#INS_BASE= /opt/schily -+INS_BASE= $(out) - INS_KBASE= / - # - DEFUMASK= 002 diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index 14ab69ebd2f1f939291a73d480e2f7e1c7566607..b83857b6045e821b5028c36f0e8b22eacb26a7ee 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -1,23 +1,30 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, acl, libcap }: stdenv.mkDerivation rec { - name = "cdrtools-3.00"; - - configurePhase = "true"; + name = "cdrtools-3.02a03"; src = fetchurl { url = "mirror://sourceforge/cdrtools/${name}.tar.bz2"; - sha256 = "0ga2fdwn3898jas5mabb6cc2al9acqb2yyzph2w76m85414bd73z"; + sha256 = "02gjxib0sgzsdicnb7496x0a175w1sb34v8zc9mdi8cfw7skw996"; }; - patches = [ ./cdrtools-2.01-install.patch ]; + patches = [ ./fix-paths.patch ]; + + buildInputs = [ acl libcap ]; + + configurePhase = "true"; + + GMAKE_NOWARN = true; + + makeFlags = [ "INS_BASE=/" "INS_RBASE=/" "DESTDIR=$(out)" ]; - meta = { + meta = with stdenv.lib; { homepage = http://sourceforge.net/projects/cdrtools/; description = "Highly portable CD/DVD/BluRay command line recording software"; # Licensing issues: This package contains code licensed under CDDL, GPL2 # and LGPL2. There is debate regarding the legality of this licensing. # Marked as unfree to avoid any possible legal issues. - license = stdenv.lib.licenses.unfree; + license = licenses.unfree; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/misc/cdrtools/fix-paths.patch b/pkgs/applications/misc/cdrtools/fix-paths.patch new file mode 100644 index 0000000000000000000000000000000000000000..f4a541210880bbbdafcb8efd2f14f970c760ebd3 --- /dev/null +++ b/pkgs/applications/misc/cdrtools/fix-paths.patch @@ -0,0 +1,32 @@ +diff -ru3 cdrtools-3.01-old/DEFAULTS/Defaults.linux cdrtools-3.01/DEFAULTS/Defaults.linux +--- cdrtools-3.01-old/DEFAULTS/Defaults.linux 2015-12-11 17:37:21.505848835 +0300 ++++ cdrtools-3.01/DEFAULTS/Defaults.linux 2015-12-11 17:37:32.155828925 +0300 +@@ -57,7 +57,8 @@ + # Installation config stuff + # + ########################################################################### +-INS_BASE= /opt/schily ++#INS_BASE= /opt/schily ++INS_BASE= $(out) + INS_KBASE= / + INS_RBASE= / + # +Only in cdrtools-3.01/DEFAULTS: Defaults.linux.orig +diff -ru3 cdrtools-3.01-old/RULES/rules.prg cdrtools-3.01/RULES/rules.prg +--- cdrtools-3.01-old/RULES/rules.prg 2015-12-11 17:37:21.500848844 +0300 ++++ cdrtools-3.01/RULES/rules.prg 2015-12-11 17:38:29.890720987 +0300 +@@ -43,10 +43,10 @@ + # + #SHELL= /bin/sh + +-LN= /bin/ln +-SYMLINK= /bin/ln -s +-RM= /bin/rm +-MV= /bin/mv ++LN= ln ++SYMLINK= ln -s ++RM= rm ++MV= mv + LORDER= lorder + TSORT= tsort + CTAGS= vctags diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..0892f8899324bb4d68d1d15bc3bd62c0f08f981d --- /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 ba3bd5f0f0de493f49503320ad56f9a4c4623d8d..1891c4f21749544289b25ca16c08c6fab693ca59 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/ding/default.nix b/pkgs/applications/misc/ding/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..a044eb1df92075c125df68e75e0b2a77ced46b2d --- /dev/null +++ b/pkgs/applications/misc/ding/default.nix @@ -0,0 +1,53 @@ +{ aspell, aspellDicts_de, aspellDicts_en, buildEnv, fetchurl, fortune, gnugrep, makeWrapper, stdenv, tk, tre }: +let + aspellEnv = buildEnv { + name = "env-ding-aspell"; + paths = [ + aspell + aspellDicts_de + aspellDicts_en + ]; + }; +in +stdenv.mkDerivation rec { + name = "ding-1.8"; + + src = fetchurl { + url = "http://ftp.tu-chemnitz.de/pub/Local/urz/ding/${name}.tar.gz"; + sha256 = "00z97ndwmzsgig9q6y98y8nbxy76pyi9qyj5qfpbbck24gakpz5l"; + }; + + buildInputs = [ aspellEnv fortune gnugrep makeWrapper tk tre ]; + + patches = [ ./dict.patch ]; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/share/dict + mkdir -p $out/share/man/man1 + mkdir -p $out/share/applications + mkdir -p $out/share/pixmaps + + for f in ding ding.1; do + sed -i "s@/usr/share@$out/share@g" "$f" + done + + sed -i "s@/usr/bin/fortune@fortune@g" ding + + cp ding $out/bin/ + cp de-en.txt $out/share/dict/ + cp ding.1 $out/share/man/man1/ + cp ding.png $out/share/pixmaps/ + cp ding.desktop $out/share/applications/ + + wrapProgram $out/bin/ding --prefix PATH : ${gnugrep}/bin:${aspellEnv}/bin:${tk}/bin:${fortune}/bin --prefix ASPELL_CONF : "\"prefix ${aspellEnv};\"" + ''; + + meta = with stdenv.lib; { + description = "Simple and fast dictionary lookup tool"; + homepage = https://www-user.tu-chemnitz.de/~fri/ding/; + license = licenses.gpl2Plus; + platforms = platforms.linux; # homepage says: unix-like except darwin + maintainers = [ maintainers.exi ]; + }; +} diff --git a/pkgs/applications/misc/ding/dict.patch b/pkgs/applications/misc/ding/dict.patch new file mode 100644 index 0000000000000000000000000000000000000000..70ecea10550e068942bf870d0a254425ae434298 --- /dev/null +++ b/pkgs/applications/misc/ding/dict.patch @@ -0,0 +1,26 @@ +Ding persists its settings to $HOME/.dingrc on startup, this sadly includes the path to the dictionary. +On all other distributions, that would be /usr/share/dict/de-en.txt and would hardly ever change. +On nixos, this will indeed change on ever update and would break it for all users. +This just comments out the dictionary path in the .dingrc so the user can still set it if she wants to, but it will not affect normal operations. +--- a/ding ++++ b/ding +@@ -899,7 +899,9 @@ if { ! [info exists ding_version]} { + } + + # Change path of default ger-eng.txt when upgrading from version 1.1 +- if {$searchmeth($i,dictfile) == {/usr/dict/ger-eng.txt} && ++ if {! [info exists searchmeth($i,dictfile)]} { ++ set searchmeth($i,dictfile) $default_searchmeth(0,dictfile) ++ } elseif {$searchmeth($i,dictfile) == {/usr/dict/ger-eng.txt} && + $ding_version == {1.1}} { + set searchmeth($i,dictfile) $default_searchmeth(0,dictfile) + debug 2 "New path and name of ger-eng.txt configured: $default_searchmeth(0,dictfile)" +@@ -5065,7 +5067,7 @@ proc saveOptions {} { + foreach i $searchmpos { + puts $fd "set searchmeth($n,name) {$searchmeth($i,name)}" + puts $fd "set searchmeth($n,type) {$searchmeth($i,type)}" +- puts $fd "set searchmeth($n,dictfile) {$searchmeth($i,dictfile)}" ++ puts $fd "#set searchmeth($n,dictfile) {$searchmeth($i,dictfile)}" + puts $fd "set searchmeth($n,separator) {$searchmeth($i,separator)}" + puts $fd "set searchmeth($n,language1) {$searchmeth($i,language1)}" + puts $fd "set searchmeth($n,language2) {$searchmeth($i,language2)}" diff --git a/pkgs/applications/misc/doomseeker/default.nix b/pkgs/applications/misc/doomseeker/default.nix index 8ceb7f41c4e8f76c25792c6b0a496ebac2e7392d..3e76f6c36e71e9b4dcff33767bdf6600830b232e 100644 --- a/pkgs/applications/misc/doomseeker/default.nix +++ b/pkgs/applications/misc/doomseeker/default.nix @@ -2,16 +2,17 @@ stdenv.mkDerivation rec { name = "doomseeker-1.0"; + src = fetchurl { url = "http://doomseeker.drdteam.org/files/${name}_src.tar.bz2"; sha256 = "172ybxg720r64hp6aah0hqvxklqv1cf8v7kwx0ng5ap0h20jydbw"; }; - cmakeFlags = '' - -DCMAKE_BUILD_TYPE=Release - ''; + cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]; - buildInputs = [ cmake pkgconfig qt4 zlib bzip2 ]; + buildInputs = [ qt4 zlib bzip2 ]; + + nativeBuildInputs = [ cmake pkgconfig ]; enableParallelBuilding = true; @@ -27,4 +28,3 @@ stdenv.mkDerivation rec { maintainers = with stdenv.lib.maintainers; [ MP2E ]; }; } - diff --git a/pkgs/applications/misc/gosmore/default.nix b/pkgs/applications/misc/gosmore/default.nix index 43631ecdb249e9b4740bcdd0a93f3fe1eef64101..e894ace0d45c835f6bbd0f3684258b6c55fdbc70 100644 --- a/pkgs/applications/misc/gosmore/default.nix +++ b/pkgs/applications/misc/gosmore/default.nix @@ -1,14 +1,18 @@ { stdenv, fetchsvn, libxml2, gtk, curl, pkgconfig } : let - version = "30811"; + version = "31801"; 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 = "0d8ddfa0nhz51ambwj9y5jjbizl9y9w44sviisk3ysqvn8q0phds"; + 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 172f1347f6b5caedd8f5b37a824b1cb9ef8f85e7..c21f8bbe814f7c97098835a1f81097fd3c746c9c 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/gpsprune/default.nix b/pkgs/applications/misc/gpsprune/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..dead3b83dcf8b086a01639f309ca6117330a39b3 --- /dev/null +++ b/pkgs/applications/misc/gpsprune/default.nix @@ -0,0 +1,32 @@ +{ fetchurl, stdenv, bash, jre8 }: + +stdenv.mkDerivation rec { + name = "gpsprune-${version}"; + version = "18.2"; + + src = fetchurl { + url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar"; + sha256 = "12zwwiy0jfrwvgrb110flx4b7k3sp3ivx8ijjymdbbk48xil93l2"; + }; + + phases = [ "installPhase" ]; + + buildInputs = [ jre8 ]; + + installPhase = '' + mkdir -p $out/bin $out/share/java + cp -v $src $out/share/java/gpsprune.jar + cat > $out/bin/gpsprune < $out/bin/josm <$out/bin/terminal-notifier < + +- ++// stat ++#include + + typedef struct device_t { + struct udev_device *udevice; diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index a9ecfca494a6c0c2076b5d7d4782045bc50cae6f..e5727e63a100b23a8dc7582ff7c1186ace6df7e5 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -145,6 +145,7 @@ let linux_use_gold_binary = false; linux_use_gold_flags = false; proprietary_codecs = false; + use_sysroot = false; use_gnome_keyring = gnomeKeyringSupport; use_gconf = gnomeSupport; use_gio = gnomeSupport; diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 55facf554382b8bba0983a1c5935320a3cac0c18..dc6f22434db9c940e48d95ff7117c50866dfb665 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -1,21 +1,21 @@ # This file is autogenerated from update.sh in the parent directory. { dev = { - version = "48.0.2564.22"; - sha256 = "18kk8vmv7c8dsxdghvrjl90davm0gc4wdvs5zmsgiymlw1c6qpaj"; - sha256bin32 = "1b10bb83npnn24fxl7jqkrhjzhk211cgf1f2ykx50z3cc41v4rvp"; - sha256bin64 = "0a3w22blkpnk1wdg201ixm8jm7lrn4md64wcllmm69z433flrg1b"; + version = "49.0.2593.0"; + sha256 = "1krkf8dg10xnvxs4zfvy2rkp0v3gxg55418b11kmfywsxjfi09hv"; + sha256bin32 = "0sarfj8r6x28pbmcpd5facm6liifazj744c9qn6ci6xg7f8jlnxi"; + sha256bin64 = "1l5s504mmr4v5y67fsla9hyrk7dm155yc790ld87s1ya03h455gr"; }; beta = { - version = "48.0.2564.23"; - sha256 = "0rhjrvxsxv84jahnph26lbivfa6g48qmv1mw6wysjx8rvfpfx9g9"; - sha256bin32 = "17330cv6zv25z5y6pbfc9hb7vk77yggvcdggknkvvbfd0p6mrf4z"; - sha256bin64 = "0d3r64ipgigjqgnr57lklk5icv2snd2gq9w6aw7apfx61qlbnxly"; + version = "48.0.2564.48"; + sha256 = "1qasdz9rwdqa2if8y4kkk19fspgjpk3q782c8l1p5n2cm25lkfa9"; + sha256bin32 = "0pgc3iy4s7whmckc14r0cvgmk7pqgidd2w0xv53bfq2k504b5ykw"; + sha256bin64 = "1lx6l8s2wdgzldbm8licpf22l6z13mvq05xlbn8ybizhn159nykj"; }; stable = { - version = "47.0.2526.73"; - sha256 = "1xgl2pmvfxnm2pk4p4p4v642ip0cxxjysc1xy4pmdxnzilfd0rkd"; - sha256bin32 = "1y9g14s81xanp70l0s6grszn4q0acn4rgm46i5kigf37s1cbwagy"; - sha256bin64 = "1y00znk5cfd1nvh4dx92b0m8q38849i25a18zg2lhvjqrpq097za"; + version = "47.0.2526.106"; + sha256 = "1rjqkawj7l127cd9s1wxwn4v7dfbrlahml98sam3fg8a6drm0lv4"; + sha256bin32 = "14svd5x8lzfyyigfirxx1q9pg2bsnnb0fdwa7vvh1awq3zzfd38n"; + sha256bin64 = "121289vwaz391b32hp2lihlpaql76y44gdpqkl9a3md0j1zk1nd9"; }; } diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index acbcd0757976fad68d65207448ca9a6a19e9fbc5..57f0550a793d13843b9ef2db46f0d6d1a51657ed 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.2"; 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 = "da9307cb24c75665adc6a5e02d3045eac9babd33c6da778167644d13cc685de2"; } + { locale = "ach"; arch = "linux-x86_64"; sha256 = "1a8f13b44107e9689aa339f19c8247142ce82ef9a63bb4be077c212d4d4ad03c"; } + { locale = "af"; arch = "linux-i686"; sha256 = "b8dcbf287b350becd7a4e1d812a2251bf10861fe6fe3c85ea9b56e4aafa2a156"; } + { locale = "af"; arch = "linux-x86_64"; sha256 = "241a503d4cd2793c538a5cc1ad0990b2a5cd40a584504cf5dde77a28d2f47049"; } + { locale = "an"; arch = "linux-i686"; sha256 = "530f5e4743384e543e4cf829f00e5f37adccf64b4af5067aab1e316aba72c579"; } + { locale = "an"; arch = "linux-x86_64"; sha256 = "1bbde5a3c897ebed7c7820362257626835c1adfafb29a20e80bcc4b1c40407b4"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "f254b2f7117b866e2c8611d5367fc1e2a8e20e1997746204234ae6869c01f6e9"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "bec6a50c9ce11906edb09591ed1f37d94291fb67b2d4ab9a8f5f87b0e837c0be"; } + { locale = "as"; arch = "linux-i686"; sha256 = "b894da79ba753489a3f0509aa54abb9cf67c84e80a73bc00d0e7e7483e1c4ac9"; } + { locale = "as"; arch = "linux-x86_64"; sha256 = "ef435b67eac29cf4024ad8df1d4efd413ea58fd76c0e4ec2f2595e7c90743953"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "96566e2de543bb4b3bba195b99efb8ec1c01f6ec969dc75293ed66033b52a92b"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "29f9ccdfc93a72db314df43564fce754ddc678b89a55035f23582bf4a7c66135"; } + { locale = "az"; arch = "linux-i686"; sha256 = "cc58914388b53df51d5bd78f0e63286166bbf278e691b8589bc7db18257627c5"; } + { locale = "az"; arch = "linux-x86_64"; sha256 = "7f1db3428190e1bbc01506a029df8c81a0ea67b301f161a5bb297c47d5db41d8"; } + { locale = "be"; arch = "linux-i686"; sha256 = "c8bd88c4ffb98d8611d760b144f46ab3cef4f7808f2b1008cd5aa75eadaf02eb"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "1b063e4e4a33b9d29f01d7c98a942446d738b195877a617dd454c2697fd6a539"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "1186851b6a27a2d23572c9fa0a9bfabcfca1925d36e7fa79e5918541892bcda9"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "d185c5eb1640d13ee9fd049db41d267af728de56f833bc32a182f69c4921d1c0"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "fcc0a0c46e913cb7b4d44c502f62ece83ae8d22703419edafd15321b77758625"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "d1e066c2347e109fab28e525b5780edb9c5c063322745d971e4ad79a110568f6"; } + { locale = "bn-IN"; arch = "linux-i686"; sha256 = "3a85767878b840411c57d176af597666aaeaede9a290032f374629eac536eeca"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "a3314e2a9f74d9f2c85e592a74e1353b2f048349ba65bf4cfdf35c72b130cd61"; } + { locale = "br"; arch = "linux-i686"; sha256 = "a6cd3445e65ca3c818856d6a3b9069aa437ea638f11bb8be520db73604150090"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "9c9f5720b568d768933d7d55bfa7853bb7918bcc651b7c2e281ccf3d2a5e2218"; } + { locale = "bs"; arch = "linux-i686"; sha256 = "9c0844cc1dde7712219626148988df642ab10e81494d4794a51a61bb92ddd110"; } + { locale = "bs"; arch = "linux-x86_64"; sha256 = "44d91b25d18aa108adf49677069ebd75236f82c7016ee9d518e2ff3f6ad40ffb"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "5669828dec411832064e790e65203dabd3703a86090e87a931c6bd495fd39bc7"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "1e1cec512fb7038327488ce884e171ecda23ae26f98d39159ca96b8acea2029a"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "a7bdf99153ae8351c3f4f98db5e65d2a0598457dc0774508fc6ebe26c40ff43e"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "16fd46498fa33334a5bd1cf06351b410f7df41526c195de21959bf837ce5d488"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "8a251c77bbdb6a44163285cacb3a78ffe85835cbe0b9156ad300e733c9ee3934"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "61f2b6b13d9ce1066b6207b16865a038cb35c51f61a5bc05503cf948704320f7"; } + { locale = "da"; arch = "linux-i686"; sha256 = "d1e5d20f7b396bb8b823e7a15a6e220fb930601c2df6e9fc5ca588d3ffce1698"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "a5f20fb678a51a526ebd135b149c6769dda46827174259cabbc4912c6f0619d5"; } + { locale = "de"; arch = "linux-i686"; sha256 = "74e9e40b191fd56e99708910c8798d4a8588271a90eef6f7658e042a0765d0e5"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "470781e1debb2085fa538008cd3203c64b534b5a88c6a6ac01418a3ef344216b"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "459e0d6c55ad822bae10a47a7b14004153a3f3363026556568d7108411318104"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "97fd138bb33c80a3213b33d4796573b65d4659b888959730cc02e726bcc65388"; } + { locale = "el"; arch = "linux-i686"; sha256 = "41b684530ed9bd80c03cb0cd8b1e4de8b3af383f611884965e98215ade1dd8c7"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "b1a7f2a4de87510b9630c6cade94b7f628bbf04289119d3912ea0eb5260b55b2"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "3c40217b451bd28dd5f1aebcb9a9f7aafdfa3c9c7fd635d69674912a9e73f77c"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "6aa6cd0945bbe97b30e431fdb09a4deb45a0aba6e1283f881a35732b7403e247"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "dd6c585c24e1e9212b65eabee8e52c5dbc9e4acce4fc51c32aacd82b3c6333e3"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "9c56ff8734eb860a6038f6bd00d98aeabe57037e230c66d551aac451a27efa79"; } + { locale = "en-ZA"; arch = "linux-i686"; sha256 = "0335775eb1a073d1889e8a43f913ea096bbd735a0b98687c75c7fde5eb636f44"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "5ab68e226bfc141167a477779181c48a84cabe80f250c874182ad0364d0c3dd5"; } + { locale = "eo"; arch = "linux-i686"; sha256 = "99a0cf562a067cd30d1047814c1984364b1702e93e638016a4fe8910868cfcdf"; } + { locale = "eo"; arch = "linux-x86_64"; sha256 = "ba0bc0093bf2b0ea82eb958fdf06683f4941bd9a44138c793175a0b9e5a86ad4"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "3adaec2ccb2b1949492c27c466daa5809afc690bf0559418d2d60faae0b5456a"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "67f774442c64d653d624a270eea1202fad389f926c6b7dee56ef965e65311ef0"; } + { locale = "es-CL"; arch = "linux-i686"; sha256 = "ee56546d943795434a6759a55dec6e848f244691dc234f4c62746aa1f73cb85d"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "cdbf12f21efb2e18d23ef9c6322c96469c72140200fa47c554067df3a9f89b8d"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "d3518ffe26d3c21beb009c657b93cf2f01be416f697d89beac497c71044f134a"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "ae34d9f586b28b1063cfebb755edc2a11214085f3a185f31d757c2358493ed13"; } + { locale = "es-MX"; arch = "linux-i686"; sha256 = "09a03624363efba7e5d707c312f58e577019b8b7987d817fe1cf77bf2afa7dfc"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "820c50a0991779f664be8013e10a6db2833caa4b1fed370a7d6a8eb71f5766f3"; } + { locale = "et"; arch = "linux-i686"; sha256 = "bb2d259606836c5d01d149f2735639cad7411efcd5e0e5deacdc3f1bbae8d80d"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "17265f828cb3232cca73b3bf5b806cf361769c77bfef0e6571a16eb73036cccb"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "0bedcadc3b60ecb58af25d5950fe693063eb80f65d6d85e72ff0cdab3e7f2030"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "371d5648c7ffaf325ef34030ad0a9971246bc1df354fc11dd66bc461dce303fc"; } + { locale = "fa"; arch = "linux-i686"; sha256 = "a7c55492f08e5f44d5cccb015d00abf8b8e74dec7da37e937f8d0f76a4c49338"; } + { locale = "fa"; arch = "linux-x86_64"; sha256 = "6fe831c56d96dbed1c4a6859ba58dc20bbdf43efbc2bb225a707df7966f8b9dc"; } + { locale = "ff"; arch = "linux-i686"; sha256 = "5cf4f3235db02c385ffc355e0fa1060b79afd5a8899ff31da1d0dad4d065e4cf"; } + { locale = "ff"; arch = "linux-x86_64"; sha256 = "0576772ddcbdbe3d26ae20dd47b4e635de709c34eb6a797afab7743ac68815bf"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "8edd2e8058fc848456b2dc1bb54f669159b232b5423dcde6638e5d61294f1ffe"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "94bd189308502abea3d6d762378220097d3d743cc42872e6c43cdcd86aa51b4f"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "652f87501ba2a5baf1de865d7a607837a9ed623834c2d796baf4e3891fc78a6b"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "94c3725ea6fc2a7833e9ee60fdcd0ae3a53c80ce7f13ca00634b5d99b12a4607"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "8d9ed839afa148da954acfdca139dbcf9f235c097fc7c562a8ab52f9ece68b4b"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "650c8a50b8473fd09dbcd1c818ca8c3ab0c6618696198124f32e0153307e2aa3"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "a70af727b36bc7d084211a880318f3a9f73977ff75f728b50cc4bfa9398c61d2"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "01d3635c38068facc135fcca979517d729999db52f4a00c0b2ee27cf830df870"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "9763cbe0387cb86f91cdd6b1dfa6e257cc40c4525c753869ee091bfe49f172e8"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "16d3452fdbabada41626d981dee0e48282d672d9d6073b363ede9e86c4ed56ce"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "facde8f17e2f90e49a02b36d016535e1123c7f78ac44ee1110c80dc472e84133"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "b0955c4381f7f0013e9e0b1dcf8d8c53a3bf694af6970638b2e88dc080771ed7"; } + { locale = "gu-IN"; arch = "linux-i686"; sha256 = "cb42e0750736bd14c81bbb76bb05e02c97e798b01d9f41bad091295f9bbb5655"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "c497650eda2e4fc0f99b9d9c1ef0df33b0ea7b6e32d2eb7d4ee109e5ae1f2add"; } + { locale = "he"; arch = "linux-i686"; sha256 = "d4cc561b6ce55f0820e6bd8479de9fd1ed53fd228e7cef28a890aebd687c26aa"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "9294083a0ce8b06cc565c9d643d3e45d50393a5abff230dde8fe42aa29d8b870"; } + { locale = "hi-IN"; arch = "linux-i686"; sha256 = "3493dda678fe94e13d34a62d194b612037f472546b96a94de2390706139636ef"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "db45625e758d3db82705373004cc16176f8376bf087ac11da06c7c22e613dc2a"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "227399d033c4a7877387ac965d84ac265600bc16614de1b99618f39808b92894"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "a4f061ed24c66f936da13f8d93eb311f8fda7cc468d7cc9f71a4c747bbd9af19"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "41bc010d4cca63bc77b8d637e6ca2731e3c5900b6783955335aae0ee3d2eedae"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "4618d03269cad3fe8ca3d618de581d37fef37b9276e72613d2c12b212bb2c894"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "be456ef5df061985f7413fc7af45b4f0b86ac4a99a57d3574d8ad6dba727a8fe"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "c229ca2c9fba2ac98e912e5c5f4500d423b1f2cbf768e539112e97c0f0fe410b"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "0a569d1b8c8d685c3eb5701471420aa47110c737504a105f660dca72a82490af"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "b15c86feb6d69005244f409290489d8f5ffaff0c85ec876ba931be38c7de07b0"; } + { locale = "id"; arch = "linux-i686"; sha256 = "dc8ca98414ccc67087c896c84a0a223026f12ed9fec499eba6203b8ec0b3e6e7"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "6a831ab4c2605fdbac15ac81853a19f5c8633756ad5136f93c3eb76637e2b997"; } + { locale = "is"; arch = "linux-i686"; sha256 = "02e9a2022c0da27e069689d25ba80c1d04dc29e6a045833fa1c5e503b5ca9f9a"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "0ffd2b8f1fdafd91ae4e089c075446f57adcc748bea4994d40207e5cba9a5655"; } + { locale = "it"; arch = "linux-i686"; sha256 = "f84d5304a37e33883322c9c508f4d342f99901c9339d293308ef78bb561a3c40"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "78c5cb912d6c24d5a7636fd400470d298e4f58493ca6fd3e5f6b88e4b8037e77"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "a3d563846ef60176712574a9f66d24a785f749390afde21cbc4823e9d30cc3ba"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "56bdf673d645dff09e96970fc4cb33b1810d57051e7c12f6fe1ba01fa971e293"; } + { locale = "kk"; arch = "linux-i686"; sha256 = "a5b10502bacf265e2157b7246457c33adcf037e4e28291e26a7fdd9f53f94638"; } + { locale = "kk"; arch = "linux-x86_64"; sha256 = "2a7c74168d040653cbc31d6d03846b9165f617cebb74388818d73d681056561d"; } + { locale = "km"; arch = "linux-i686"; sha256 = "26e696f0a03d7d6c3541563f89ba08d06a47039ca93f15d2f1909db7ca1b8d08"; } + { locale = "km"; arch = "linux-x86_64"; sha256 = "18676450680d18631a855dcf91fd4592f8e3e908b04122476ae62d619bfbdd4f"; } + { locale = "kn"; arch = "linux-i686"; sha256 = "cf6c95c0f06381f3aa4eb03c8854a530e63b0b5c6d971dc019a5c6cf81f80b0b"; } + { locale = "kn"; arch = "linux-x86_64"; sha256 = "fabd1b824a4593454f8c9d7c6c47f7244ec9d1800cbe397042fb3bc41a75d09b"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "d3d9ff36de18ca424511df1ddbd4c49c84499491510a064a6f55f15599e1c172"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "e8eef3e4c6201e1d1e936ee6ec53f875b6c2a0496d308b8fbe03b5cbdf229bec"; } + { locale = "lij"; arch = "linux-i686"; sha256 = "de6b35a675539d1bf0ff1c8f3837ba030da64b0e51c30e594515ac13578495f5"; } + { locale = "lij"; arch = "linux-x86_64"; sha256 = "9d2351a7bed09127b618cfd86f2d394fdefcbbf2801da3a60a697982b5bbb9f1"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "5e5c3d5083b8d71a249f9e5009072132c9524063fa0cdb1f47ad0ff5260725c7"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "c57df2ce20d09070514f783a12e179ff05a4ac14e7ec67b0081f284f70079468"; } + { locale = "lv"; arch = "linux-i686"; sha256 = "30267f85939965eab0ec50f4c869a0a42fa0d0775ae516088f9a3ff57f1bf3d2"; } + { locale = "lv"; arch = "linux-x86_64"; sha256 = "c1389231d627df347910d28172a823da18f2ebd5697093035faa499da24755eb"; } + { locale = "mai"; arch = "linux-i686"; sha256 = "6dec829e1ea28f8c4480d0517f72909d2d652fd827693dc919298906b62b47d2"; } + { locale = "mai"; arch = "linux-x86_64"; sha256 = "29ed57ad173243d7cc2460a534c3f63709e235db74810a0d6f12dc460c5f4a52"; } + { locale = "mk"; arch = "linux-i686"; sha256 = "98d4c529ca979e4ba03b3c1640feb0c93ca1ac2a92ac07403a39a07adce8df44"; } + { locale = "mk"; arch = "linux-x86_64"; sha256 = "53d6752d67e3277afe3ea239ceb1f890edc5a15fe078d41bc074246598376603"; } + { locale = "ml"; arch = "linux-i686"; sha256 = "321d682e8e1e42e8e4522d791e7e7ae13d1622d740038f3586813099f0275d96"; } + { locale = "ml"; arch = "linux-x86_64"; sha256 = "f0dfba4cd8fd961ef6c088ef9139b8ce5e33fcefa8cda142c9f51bfae663c092"; } + { locale = "mr"; arch = "linux-i686"; sha256 = "b40b8fbbe5ab56055d57f7b9a67ff00e84b7c7d19afc7bb07b4311ef3fb6c66b"; } + { locale = "mr"; arch = "linux-x86_64"; sha256 = "3bb64e13d59a1c65460282e4236655a0c2997d894e9b897a8dc3b20a4baca3c9"; } + { locale = "ms"; arch = "linux-i686"; sha256 = "15aeda467f0c0c893dd923ee56fcf2547242f0a4089709ce0cbdb27778c71b1b"; } + { locale = "ms"; arch = "linux-x86_64"; sha256 = "32cea21ff68efd7c384746c32c0138464fbae4d25065fe58d6d56e191ee5b082"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "371af3de1ae68ba242cc55cb7c080008ca305c61d5c8c4e687f53568bcb8f416"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "54e17787e0d31893dcba314e98cfb795fd6f85e335a0e84ce35a0f44a56b6e1d"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "92df7a99107ccd938800161e759beb6269a6a30f69c892064e130280a3caa692"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "41c1bfc828917d58cf8f334b8d2b333ddb50dd416faaae41a0c063bd8c23942c"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "ad96e3c670c244d366ce0d600d87a308d95e51309ab86becf1c8c69245dbed0f"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "eee10d92a2bcc32507936c3c2c5c2c220a4de955aa8b48d23f0d923c9b0faa48"; } + { locale = "or"; arch = "linux-i686"; sha256 = "1ddaa000c9b3d5a7dccdddaeb8fda53ba821935bf24ee5c2ca0053e3b2900bd7"; } + { locale = "or"; arch = "linux-x86_64"; sha256 = "0d62ab80bdd5853d8dfae01d9420929d9321d1f6b9f40d372c6241f1345de76a"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "accdde423ac5c518d14b435d00e1f536cd240f31108b58f0b5e1a925637faab4"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "89ae2f460c6fdab846d6b41dba84f63c94a7bfc1f61e3e79da5d643d4c1a1fca"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "d8e043d8ba0c223f0232facef10b6d2e2ee13733bf8670a9101796bfddb3c2f1"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "f6ada91433d48b699c02fddf22e2d8aa36e6b0cc365b73625bf6fb80ed3fb877"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "b2d294d7761cfc3c8a58ee072bb8a0b82cc79724f6b103073632e682fda32f60"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "642c56b5d510f5efc8a365be956789d7760bfe983aa397ae194eef5bd15f601b"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "6bc224414c39047c42040ebaaa7e7d61bb09939a9878ec4a2d7d7e8c31a7ecfc"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "cc00a2fb38fed6ffef5a6a6931b043c65948c18f3d502a0e3ae641a1847203b7"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "2cebf2678e1a469447205a7495f17185259d73a72439f8fd400eee957e571bbc"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "32fe2ef01b0d495476768eff7e4750c2c82196e60f50c2e824adbf611f275289"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "289cef6b438a59bac459c203a6b1b2965b089f1487ea78ff524a6a68f5996862"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "7df67b1a5a12297a214d1f794c84b58ca12a182ee780e2574116214dfc785388"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "65fd6a9a90b4e5c8fc784850dd5bce41901b0d241dae9c37110bf99643d52d32"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "585683dca4c427ecbcc17d42465b6e374a76d5266b908df1b47f4a1ad81e7794"; } + { locale = "si"; arch = "linux-i686"; sha256 = "6567d5ab15a1bd20426569a6480d6e44f2c1917145fa607357f0d3d0502c840a"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "f0aad93013b6070516851a13352d1aabd0d10bd7891eaea878d3632c1b295296"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "c6da9d539302dca6ad8e3165ca595eb80438fb4caea11979c0e07ca215696929"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "236dd9171f471849e8cddb2b8ff0166e41bdedcb0bb3c1662fdffa83c3e89374"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "4b9160bfa7579fc893a40387f0185cb74d7db2cfb0eabd2aa032259ed53b7a97"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "56bc853e4e5e21d08b2ccd04687388473c45ac4403d0b51ed41d8a6a3a26e396"; } + { locale = "son"; arch = "linux-i686"; sha256 = "b73fcee703ce937ec25993da5e09163541fef9eaa4e65ec7d5358f1dfa1b596f"; } + { locale = "son"; arch = "linux-x86_64"; sha256 = "95ef838ac58e82ec435ddf7e2ea0bbf8b8d1bdb34832aa664d1ad8f5abbd9a13"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "370313d2cf543ab3aeaa5de11f748d69a168a82d6e29c27d4c398bb577fdb06d"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "a86a6604169ab6d9bc2657a0d26db0a3f96b2927223c5a43128dcf49bad243f1"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "a7ad2ec678944f37cfee69025871369b658013f77df9df0f1bbfd9cbc03666d2"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "b081bc35064722b4de95f4e29c4ee203bca124ebe0c33bbf91f0e11f904928f7"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "5a6fe1f1c7e1d5bd91a0c82e47ce5b88e31611cf51d6452afde3ef06d2d1a695"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "9a09a020acabfaef4fa25d94723fa437c57761f0dbd9bda880b8ca3acb5248df"; } + { locale = "ta"; arch = "linux-i686"; sha256 = "0e0839d5a899576f3fd796079748dba8612526bd5f855e8718eccb3ed05944c0"; } + { locale = "ta"; arch = "linux-x86_64"; sha256 = "cdcd8e06216289df7cdb4f82f01207a7112fa4f52040bd70c2f497b3d701730a"; } + { locale = "te"; arch = "linux-i686"; sha256 = "e4609f803edb243ba8c8fbfb7ecea2e652a9e94adeec2f6c03af42c2e8bc5b74"; } + { locale = "te"; arch = "linux-x86_64"; sha256 = "b9151a27be6a8de94fa25b53dfb85e765cc2ff823c2de6a0d0583883fc30ea48"; } + { locale = "th"; arch = "linux-i686"; sha256 = "48349866a10948cc0b4f8b6bc2fecd5dcbd4d09ff4ba569f7fb3e569edadd976"; } + { locale = "th"; arch = "linux-x86_64"; sha256 = "ef38e6a99cc8cb9e32e95af0ae7f7c99b82310e28b082b6aa085aa80f180ef60"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "fbad5fa2196dddb5061fec1f47fa7af85c0a824f520588b7446d2740928e34cd"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "c644f251f1e43acc3baa550b540750fb7d11c2f440c7906e1955d34694a0d718"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "9db7dc494734011ed61c5286fcb1f4b4dfb418528792ef92fbfc3734a9618129"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "06cbcceb189bad7174cf46678535cd4bfb1062e5ac878fd313fc341315001106"; } + { locale = "uz"; arch = "linux-i686"; sha256 = "cfa94474277edc7739c11795b2907b894c87f5c573c43aaf5a951a2f13a9c8ef"; } + { locale = "uz"; arch = "linux-x86_64"; sha256 = "e3a581e965fbb3711e6ca6d6d5b378eded8e8ea9767f94993c50632b6f4a7aed"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "ecd4a5b8fa66e78cdb93b04eb2b3a5ac354bd5e231d8f4bcbf2acfb94b5190b5"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "1d52852d973d5d6bea8ef860b216aff4eea59dff576f13ae67aa9b96ef0c9878"; } + { locale = "xh"; arch = "linux-i686"; sha256 = "24befe5e2fe2001ab3827543f97b52ecd15f5cbad89d977584aa4dc08a0e9c11"; } + { locale = "xh"; arch = "linux-x86_64"; sha256 = "4cafc2a6028d8141e47b09a9d8d96404cb4b5806cfaab452566f9a7baff89f25"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "80ec43ed8918fa452271988d53875f184196460b15086fe793af4842458ab790"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "1d3fc933a5b3f4082fac9176f6a802e01f8a26d711c339116799e58629843f27"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "a255ce81f6ac1774ae6c8a5b9208169864a672f22f7037c93f01758c4eaa357b"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "27b048c3df2ff25fd6f7c33cc30016e8a657a2f30ef7b0da9a2f4097c1b5e494"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 168223f1a7efa48807b0f88c9ced69db2bf027c5..6ee926db693d3cca1fe01652b6c8dd9a696a7fb3 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -133,14 +133,14 @@ in { firefox = common { pname = "firefox"; - version = "42.0"; - sha256 = "1bm37p1ydxvnflh7kb52g6wfblxqc0kbgjn09sv7g0i9k5k38jlr"; + version = "43.0"; + sha256 = "1slg5m05z67q29mrpjv0a753c4vy1vxhx7p3f75494yfvi0ngcd5"; }; firefox-esr = common { pname = "firefox-esr"; - version = "38.4.0esr"; - sha256 = "1izj0zi4dhp3957ya1nlh0mp6gyb7gvmwnlfv6q1cc3bw5y1z2h2"; + version = "38.5.0esr"; + sha256 = "086vkhrls9g0cxf50izfzcf2h60syswqrlzyi2z21awhwg7r07ra"; }; } diff --git a/pkgs/applications/networking/browsers/jumanji/default.nix b/pkgs/applications/networking/browsers/jumanji/default.nix index 3555a712cc300b30a0e7220f170e490bc30e2d04..ce9b9440907286a04f7053c47a38444b35b78d76 100644 --- a/pkgs/applications/networking/browsers/jumanji/default.nix +++ b/pkgs/applications/networking/browsers/jumanji/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { version = "20150107"; src = fetchgit { - url = git://pwmt.org/jumanji.git; + url = https://git.pwmt.org/pwmt/jumanji.git; rev = "f8e04e5b5a9fec47d49ca63a096e5d35be281151"; sha256 = "1xq06iabr4y76faf4w1cx6fhwdksfsxggz1ndny7icniwjzk98h9"; }; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh deleted file mode 100644 index b0f8a2638c188407e9e64c88e55bd26d012e7f15..0000000000000000000000000000000000000000 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/builder.sh +++ /dev/null @@ -1,23 +0,0 @@ -source $stdenv/setup - -dontStrip=1 -dontPatchELF=1 -sourceRoot=$TMPDIR - -unpackPhase() { - tar xvzf $src; - for a in *; do - if [ -d $a ]; then - cd $a - break - fi - done -} - -installPhase() { - mkdir -p $out/lib/mozilla/plugins - cp -pv libflashplayer.so $out/lib/mozilla/plugins - patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so -} - -genericBuild 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 fbf8f95a38824f1416fd64b9cdc8242a3445f959..d60ae8ea1dbceef79000e52e47a000630b842c72 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -20,6 +20,7 @@ , atk , gdk_pixbuf , nss +, unzip , debug ? false /* you have to add ~/mm.cfg : @@ -35,45 +36,51 @@ }: let - # -> http://get.adobe.com/flashplayer/ - version = "11.2.202.554"; + arch = + if stdenv.system == "x86_64-linux" then + if debug then throw "no x86_64 debugging version available" + else "64bit" + else if stdenv.system == "i686-linux" then + if debug then "32bit_debug" + else "32bit" + else throw "Flash Player is not supported on this platform"; - src = - if stdenv.system == "x86_64-linux" then - if debug then - # no plans to provide a x86_64 version: - # http://labs.adobe.com/technologies/flashplayer10/faq.html - throw "no x86_64 debugging version available" - else rec { - inherit version; - url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; - sha256 = "15zziclffvsa0wpygkwzbh3v367n73pmzwsnkanhg75rv28dgl3x"; - } - else if stdenv.system == "i686-linux" then - if debug then - throw "flash debugging version is outdated and probably broken" /* { - # The debug version also contains a player - version = "11.1"; - url = http://fpdownload.adobe.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz; - sha256 = "0jn7klq2cyqasj6nxfka2l8nsf7sn7hi6443nv6dd2sb3g7m6x92"; - }*/ - else rec { - inherit version; - url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; - sha256 = "1a26l6lz5l6qbx4lm7266pzk0zr77h6issbnayr6df9qj99bppyz"; - } + 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}"; + version = "11.2.202.554"; -stdenv.mkDerivation { - name = "flashplayer-${src.version}"; + src = fetchurl { + url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; + sha256 = "0pjan07k419pk3lmfdl5vww0ipf5b76cxqhxwjrikb1fc4x993fi"; + }; - builder = ./builder.sh; + buildInputs = [ unzip ]; - src = fetchurl { inherit (src) url sha256; }; + postUnpack = '' + cd */*${arch} + tar -xvzf *${suffix}.tar.gz + ''; - inherit zlib alsaLib; + sourceRoot = "."; + + dontStrip = true; + dontPatchELF = true; + + installPhase = '' + mkdir -p $out/lib/mozilla/plugins + cp -pv libflashplayer.so $out/lib/mozilla/plugins + patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so + ''; passthru = { mozillaPlugin = "/lib/mozilla/plugins"; @@ -85,12 +92,11 @@ stdenv.mkDerivation { libvdpau nss ]; - buildPhase = ":"; - meta = { description = "Adobe Flash Player browser plugin"; homepage = http://www.adobe.com/products/flashplayer/; license = stdenv.lib.licenses.unfree; - maintainers = [ stdenv.lib.maintainers.enolan ]; + 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 267b0871f080314b412e2458fc3fe0f7d73bebba..c1c7a1297ce2bbd64d7b99abc0ee81ae1ac091f4 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/browsers/w3m/RAND_egd.libressl.patch b/pkgs/applications/networking/browsers/w3m/RAND_egd.libressl.patch new file mode 100644 index 0000000000000000000000000000000000000000..49dd417d1c39cb0383591c09a78f116dc12d773e --- /dev/null +++ b/pkgs/applications/networking/browsers/w3m/RAND_egd.libressl.patch @@ -0,0 +1,11 @@ +--- a/url.c 2014-07-14 12:31:30.476563116 +0200 ++++ b/url.c 2014-07-14 12:32:16.364918248 +0200 +@@ -268,7 +268,7 @@ init_PRNG() + if (RAND_status()) + return; + if ((file = RAND_file_name(buffer, sizeof(buffer)))) { +-#ifdef USE_EGD ++#if defined(USE_EGD) && defined(HAVE_SSL_RAND_EGD) + if (RAND_egd(file) > 0) + return; + #endif diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix index bea74f62358add28bf8b8b5c1b35f110628b924a..6f37477c1b37631c96cabe4407c1541ab72f38ac 100644 --- a/pkgs/applications/networking/browsers/w3m/default.nix +++ b/pkgs/applications/networking/browsers/w3m/default.nix @@ -1,9 +1,10 @@ -{ stdenv, fetchurl +{ stdenv, fetchurl, fetchpatch , ncurses, boehmgc, gettext, zlib , sslSupport ? true, openssl ? null , graphicsSupport ? true, imlib2 ? null , x11Support ? graphicsSupport, libX11 ? null , mouseSupport ? !stdenv.isDarwin, gpm-ncurses ? null +, perl, man }: assert sslSupport -> openssl != null; @@ -21,15 +22,49 @@ stdenv.mkDerivation rec { sha256 = "1qx9f0kprf92r1wxl3sacykla0g04qsi0idypzz24b7xy9ix5579"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isSunOS "-lsocket -lnsl"; + NIX_LDFLAGS = optionalString stdenv.isSunOS "-lsocket -lnsl"; - patches = [ ./glibc214.patch ] - # Patch for the newer unstable boehm-gc 7.2alpha. Not all platforms use that - # alpha. At the time of writing this, boehm-gc-7.1 is the last stable. - ++ optional (boehmgc.name != "boehm-gc-7.1") [ ./newgc.patch ] - ++ optional stdenv.isCygwin ./cygwin.patch - # for frame buffer only version - ++ optional (graphicsSupport && !x11Support) [ ./no-x11.patch ]; + # we must set these so that the generated files (e.g. w3mhelp.cgi) contain + # the correct paths. + PERL = "${perl}/bin/perl"; + MAN = "${man}/bin/man"; + + # the Arch patches were pulled from: + # https://aur.archlinux.org/cgit/aur.git/?h=w3m-mouse + patches = [ + ./RAND_egd.libressl.patch + (fetchpatch { + name = "file_handle.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/file_handle.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "0kkqm68ig9d658kf1iwa1dwcf651f6dy2j98gplcks1mn3bdlak4"; + }) + (fetchpatch { + name = "form_unknown.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/form_unknown.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "1mbfclid3bihb1xv7sxcahprn3slzd6ga8rjzlq4rbq80bl053fw"; + }) + (fetchpatch { + name = "gc72.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/gc72.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "1n6anaw17by0s6rn25bwkgj2mck7ffspizpwbijvx1ynk451459a"; + }) + (fetchpatch { + name = "https.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/https.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "08skvaha1hjyapsh8zw5dgfy433mw2hk7qy9yy9avn8rjqj7kjxk"; + }) + (fetchpatch { + name = "perl.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/perl.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "15cq7cwh0d2v64i8by44rgxw48156sgh872921hxrqdakr95p3gy"; + }) + (fetchpatch { + name = "w3m_rgba.patch"; + url = "https://aur.archlinux.org/cgit/aur.git/plain/w3m_rgba.patch?h=w3m-mouse&id=5b5f0fbb59f674575e87dd368fed834641c35f03"; + sha256 = "1dhp1p6z621ayyl9zip9w35x2cxyhhj72jv5dvf0zp4rk6cjm781"; + }) + ] ++ optional (graphicsSupport && !x11Support) [ ./no-x11.patch ] + ++ optional stdenv.isCygwin ./cygwin.patch; buildInputs = [ncurses boehmgc gettext zlib] ++ optional sslSupport openssl @@ -37,6 +72,10 @@ stdenv.mkDerivation rec { ++ optional graphicsSupport imlib2 ++ optional x11Support libX11; + postInstall = optionalString graphicsSupport '' + ln -s $out/libexec/w3m/w3mimgdisplay $out/bin + ''; + configureFlags = "--with-ssl=${openssl} --with-gc=${boehmgc}" + optionalString graphicsSupport " --enable-image=${optionalString x11Support "x11,"}fb"; @@ -48,11 +87,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; # for w3mimgdisplay + # see: https://bbs.archlinux.org/viewtopic.php?id=196093 LIBS = optionalString x11Support "-lX11"; meta = { homepage = http://w3m.sourceforge.net/; description = "A text-mode web browser"; - maintainers = [ maintainers.mornfall ]; + maintainers = [ maintainers.mornfall maintainers.cstrahan ]; }; } diff --git a/pkgs/applications/networking/browsers/w3m/glibc214.patch b/pkgs/applications/networking/browsers/w3m/glibc214.patch deleted file mode 100644 index 37e466e21067e958aa8c16087ca182ae1ddb271d..0000000000000000000000000000000000000000 --- a/pkgs/applications/networking/browsers/w3m/glibc214.patch +++ /dev/null @@ -1,60 +0,0 @@ -http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/www-client/w3m/files/w3m-0.5.3-glibc214.patch?revision=1.1 - ---- a/istream.c.~1.27.~ 2011-01-04 18:22:22.000000000 +0900 -+++ b/istream.c 2011-06-24 08:15:23.522990618 +0900 -@@ -22,8 +22,8 @@ - static void basic_close(int *handle); - static int basic_read(int *handle, char *buf, int len); - --static void file_close(struct file_handle *handle); --static int file_read(struct file_handle *handle, char *buf, int len); -+static void file_close(struct afile_handle *handle); -+static int file_read(struct afile_handle *handle, char *buf, int len); - - static int str_read(Str handle, char *buf, int len); - -@@ -114,7 +114,7 @@ - stream = New(union input_stream); - init_base_stream(&stream->base, STREAM_BUF_SIZE); - stream->file.type = IST_FILE; -- stream->file.handle = New(struct file_handle); -+ stream->file.handle = New(struct afile_handle); - stream->file.handle->f = f; - if (closep) - stream->file.handle->close = closep; -@@ -658,13 +658,13 @@ - } - - static void --file_close(struct file_handle *handle) -+file_close(struct afile_handle *handle) - { - handle->close(handle->f); - } - - static int --file_read(struct file_handle *handle, char *buf, int len) -+file_read(struct afile_handle *handle, char *buf, int len) - { - return fread(buf, 1, len, handle->f); - } ---- a/istream.h.~1.12.~ 2003-10-21 01:41:56.000000000 +0900 -+++ b/istream.h 2011-06-24 08:15:54.392991144 +0900 -@@ -20,7 +20,7 @@ - - typedef struct stream_buffer *StreamBuffer; - --struct file_handle { -+struct afile_handle { - FILE *f; - void (*close) (); - }; -@@ -53,7 +53,7 @@ - - struct file_stream { - struct stream_buffer stream; -- struct file_handle *handle; -+ struct afile_handle *handle; - char type; - char iseos; - int (*read) (); diff --git a/pkgs/applications/networking/browsers/w3m/newgc.patch b/pkgs/applications/networking/browsers/w3m/newgc.patch deleted file mode 100644 index db25e305c8c1f5555ef0254ca2ff5a8a64e09a7c..0000000000000000000000000000000000000000 --- a/pkgs/applications/networking/browsers/w3m/newgc.patch +++ /dev/null @@ -1,15 +0,0 @@ -https://bugzilla.redhat.com/show_bug.cgi?id=555467 - ---- a/main.c.old 2007-05-31 06:49:50.000000000 +0530 -+++ b/main.c 2010-02-16 16:16:24.000000000 +0530 -@@ -842,7 +842,9 @@ - mySignal(SIGPIPE, SigPipe); - #endif - -- orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc); -+ orig_GC_warn_proc = GC_get_warn_proc(); -+ GC_set_warn_proc(wrap_GC_warn_proc); -+ - err_msg = Strnew(); - if (load_argc == 0) { - /* no URL specified */ diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix index 0651f729cdc9ed9751e6a1eda310959e38263a8d..cb6be73ec9bf0e8d62394bf0f2ad1bac8693c745 100644 --- a/pkgs/applications/networking/cluster/mesos/default.nix +++ b/pkgs/applications/networking/cluster/mesos/default.nix @@ -15,7 +15,7 @@ in stdenv.mkDerivation rec { dontDisableStatic = true; src = fetchurl { - url = "http://archive.apache.org/dist/mesos/${version}/${name}.tar.gz"; + url = "mirror://apache/mesos/${version}/${name}.tar.gz"; sha256 = "1v5xpn4wal4vcrvcklchx9slkpa8xlwqkdbnxzy9zkzpq5g3arxr"; }; diff --git a/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh b/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh index 3fafc427bbc974baf3bb4c697100bfdac31372fd..bcdae83839fca0b2bb0bf7af8f36fc200dffb34d 100644 --- a/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh +++ b/pkgs/applications/networking/cluster/mesos/fetch-mesos-deps.sh @@ -9,1235 +9,1292 @@ function fetchArtifact { curl --fail --location --insecure --retry 3 --max-redirs 20 "$url" --output "$out/$repoPath" } +fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar +fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.jar +fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.jar +fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.jar +fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.jar +fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar +fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar +fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar +fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.jar +fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar +fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar +fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar +fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar +fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.jar +fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar +fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar +fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar +fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom +fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 +fetchArtifact asm/asm/3.2/asm-3.2.pom +fetchArtifact asm/asm/3.2/asm-3.2.pom.sha1 +fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar +fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar.sha1 +fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom +fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom.sha1 +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom +fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 +fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom +fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom +fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 +fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom +fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 +fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom +fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 +fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom +fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom +fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 +fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar +fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar.sha1 +fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom +fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom.sha1 +fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom +fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 +fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 +fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.jar +fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom +fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar.sha1 +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom +fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom.sha1 +fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom +fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 +fetchArtifact com/google/google/1/google-1.pom +fetchArtifact com/google/google/1/google-1.pom.sha1 +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar.sha1 +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom +fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom.sha1 +fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom +fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom.sha1 +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar.sha1 +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom +fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom.sha1 +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar.sha1 +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom +fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom.sha1 +fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom +fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom +fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar -fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 -fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 -fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar.sha1 -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom +fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom +fetchArtifact commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom +fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom +fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom +fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom fetchArtifact commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar.sha1 -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom -fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom -fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom fetchArtifact commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.jar.sha1 +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom +fetchArtifact commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +fetchArtifact commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.jar.sha1 +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom +fetchArtifact commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom +fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar.sha1 +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom +fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom +fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 +fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom -fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.jar fetchArtifact commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar -fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 -fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 -fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom -fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 -fetchArtifact commons-cli/commons-cli/1.0/commons-cli-1.0.jar -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom -fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 -fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom -fetchArtifact classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 -fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 -fetchArtifact classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar -fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 +fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom +fetchArtifact commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1 +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom +fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom +fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.jar.sha1 fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom fetchArtifact commons-lang/commons-lang/2.5/commons-lang-2.5.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.jar -fetchArtifact commons-lang/commons-lang/2.4/commons-lang-2.4.pom -fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar +fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.pom -fetchArtifact commons-lang/commons-lang/2.1/commons-lang-2.1.jar.sha1 -fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom -fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom.sha1 -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom -fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar.sha1 +fetchArtifact commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom fetchArtifact commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 -fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar -fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 -fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 +fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +fetchArtifact commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom -fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 -fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom -fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 +fetchArtifact commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar -fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar.sha1 +fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom +fetchArtifact commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 +fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom +fetchArtifact commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom fetchArtifact commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.jar.sha1 -fetchArtifact com/jcraft/jsch/0.1.44-1/jsch-0.1.44-1.pom.sha1 -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom.sha1 -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar.sha1 -fetchArtifact com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.pom -fetchArtifact com/google/google/1/google-1.pom -fetchArtifact com/google/google/1/google-1.pom.sha1 -fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom -fetchArtifact com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom.sha1 -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar.sha1 -fetchArtifact com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar -fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom -fetchArtifact com/google/guava/guava-parent/11.0.2/guava-parent-11.0.2.pom.sha1 -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar.sha1 -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.jar -fetchArtifact com/google/guava/guava/11.0.2/guava-11.0.2.pom.sha1 +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom +fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 +fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar +fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar.sha1 fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.pom.sha1 -fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar.sha1 -fetchArtifact com/thoughtworks/qdox/qdox/1.12/qdox-1.12.jar -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.jar.sha1 -fetchArtifact commons-digester/commons-digester/1.8/commons-digester-1.8.pom -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 -fetchArtifact commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar -fetchArtifact backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 -fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom -fetchArtifact asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 -fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom -fetchArtifact asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.pom -fetchArtifact asm/asm-analysis/3.2/asm-analysis-3.2.jar -fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom -fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar -fetchArtifact asm/asm/3.3.1/asm-3.3.1.pom.sha1 -fetchArtifact asm/asm/3.3.1/asm-3.3.1.jar.sha1 -fetchArtifact asm/asm/3.2/asm-3.2.pom -fetchArtifact asm/asm/3.2/asm-3.2.pom.sha1 -fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar.sha1 -fetchArtifact asm/asm-util/3.2/asm-util-3.2.jar -fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom.sha1 -fetchArtifact asm/asm-util/3.2/asm-util-3.2.pom -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.pom -fetchArtifact asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 -fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom -fetchArtifact asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.jar -fetchArtifact asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 -fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 -fetchArtifact asm/asm-commons/3.2/asm-commons-3.2.pom -fetchArtifact velocity/velocity/1.5/velocity-1.5.jar.sha1 -fetchArtifact velocity/velocity/1.5/velocity-1.5.pom.sha1 -fetchArtifact velocity/velocity/1.5/velocity-1.5.jar -fetchArtifact velocity/velocity/1.5/velocity-1.5.pom -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar -fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 -fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom -fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 -fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.pom -fetchArtifact commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 -fetchArtifact commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 -fetchArtifact commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar -fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar.sha1 -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar -fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom.sha1 -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar.sha1 -fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom.sha1 -fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 -fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom -fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 -fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar -fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom -fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 -fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom -fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom +fetchArtifact dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 +fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom +fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom.sha1 +fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom +fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom.sha1 +fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar +fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar.sha1 +fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom +fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom.sha1 +fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom +fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom.sha1 +fetchArtifact junit/junit/4.10/junit-4.10.pom +fetchArtifact junit/junit/4.10/junit-4.10.pom.sha1 +fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom +fetchArtifact log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.jar.sha1 +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom +fetchArtifact log4j/log4j/1.2.14/log4j-1.2.14.pom.sha1 +fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom +fetchArtifact logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 +fetchArtifact org/apache/apache/10/apache-10.pom +fetchArtifact org/apache/apache/10/apache-10.pom.sha1 +fetchArtifact org/apache/apache/11/apache-11.pom +fetchArtifact org/apache/apache/11/apache-11.pom.sha1 +fetchArtifact org/apache/apache/13/apache-13.pom +fetchArtifact org/apache/apache/13/apache-13.pom.sha1 +fetchArtifact org/apache/apache/2/apache-2.pom +fetchArtifact org/apache/apache/2/apache-2.pom.sha1 +fetchArtifact org/apache/apache/3/apache-3.pom +fetchArtifact org/apache/apache/3/apache-3.pom.sha1 +fetchArtifact org/apache/apache/4/apache-4.pom +fetchArtifact org/apache/apache/4/apache-4.pom.sha1 +fetchArtifact org/apache/apache/5/apache-5.pom +fetchArtifact org/apache/apache/5/apache-5.pom.sha1 +fetchArtifact org/apache/apache/6/apache-6.pom +fetchArtifact org/apache/apache/6/apache-6.pom.sha1 +fetchArtifact org/apache/apache/7/apache-7.pom +fetchArtifact org/apache/apache/7/apache-7.pom.sha1 +fetchArtifact org/apache/apache/9/apache-9.pom +fetchArtifact org/apache/apache/9/apache-9.pom.sha1 +fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar +fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar.sha1 +fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom +fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom +fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom +fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom +fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom +fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 +fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom +fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 +fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 -fetchArtifact org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar -fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom -fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +fetchArtifact org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +fetchArtifact org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom +fetchArtifact org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom fetchArtifact org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 -fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom.sha1 -fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom -fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar -fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom -fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar -fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 -fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom -fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar.sha1 -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom.sha1 -fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar -fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar -fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar -fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom -fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom -fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom.sha1 -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar.sha1 -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom -fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar -fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom -fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom -fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom -fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom -fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom -fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar -fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom -fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar -fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom -fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar -fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar.sha1 -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom.sha1 -fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar.sha1 -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom -fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom -fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom -fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom -fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom -fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar.sha1 +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom +fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom +fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom +fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom +fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom +fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom +fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom +fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom +fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom +fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom +fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom +fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom +fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom.sha1 fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom.sha1 fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.3/maven-archiver-2.3.jar.sha1 +fetchArtifact org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.pom.sha1 fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar +fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar.sha1 fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar.sha1 fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar -fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1 -fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom -fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom -fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom -fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom -fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom -fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom -fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom -fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom -fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom -fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom -fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom -fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom -fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom -fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom -fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom -fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom -fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom -fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom -fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom -fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom -fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom -fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom.sha1 -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar.sha1 -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom -fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom.sha1 -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom.sha1 -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar.sha1 -fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar.sha1 -fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom.sha1 -fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom -fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom -fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom -fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom -fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.5/maven-2.0.5.pom -fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven/2.2.0/maven-2.2.0.pom -fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven/3.0/maven-3.0.pom -fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.6/maven-2.0.6.pom -fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.1/maven-2.0.1.pom -fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.8/maven-2.0.8.pom -fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom -fetchArtifact org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom -fetchArtifact org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom -fetchArtifact org/apache/maven/maven/2.0/maven-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom -fetchArtifact org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom +fetchArtifact org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom fetchArtifact org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom -fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom fetchArtifact org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar +fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom +fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom +fetchArtifact org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom.sha1 fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom fetchArtifact org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom -fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom -fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom -fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom -fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom -fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom -fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom -fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom -fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +fetchArtifact org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom +fetchArtifact org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom fetchArtifact org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar +fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +fetchArtifact org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar +fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +fetchArtifact org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom +fetchArtifact org/apache/maven/maven-core/2.0/maven-core-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom +fetchArtifact org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom +fetchArtifact org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom +fetchArtifact org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar +fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +fetchArtifact org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom +fetchArtifact org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar +fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +fetchArtifact org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom +fetchArtifact org/apache/maven/maven-model/2.0/maven-model-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom +fetchArtifact org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom +fetchArtifact org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom +fetchArtifact org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom -fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom -fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 +fetchArtifact org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar +fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +fetchArtifact org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar +fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +fetchArtifact org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom +fetchArtifact org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom +fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom +fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom +fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom +fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom fetchArtifact org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom fetchArtifact org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom.sha1 fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom -fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom -fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/13/maven-parent-13.pom -fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom -fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom +fetchArtifact org/apache/maven/maven-parent/20/maven-parent-20.pom.sha1 fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom fetchArtifact org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom -fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom +fetchArtifact org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom +fetchArtifact org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom +fetchArtifact org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom -fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/15/maven-parent-15.pom -fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 -fetchArtifact org/apache/maven/maven-parent/11/maven-parent-11.pom -fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom -fetchArtifact org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar -fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom -fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar.sha1 -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom -fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom.sha1 -fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom -fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom -fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 +fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom +fetchArtifact org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom.sha1 -fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom -fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.1/maven-plugin-api-2.0.1.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom +fetchArtifact org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +fetchArtifact org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom +fetchArtifact org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom +fetchArtifact org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar +fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +fetchArtifact org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom +fetchArtifact org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar +fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +fetchArtifact org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom +fetchArtifact org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom +fetchArtifact org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom +fetchArtifact org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar +fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +fetchArtifact org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom +fetchArtifact org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar +fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +fetchArtifact org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom +fetchArtifact org/apache/maven/maven-project/2.0/maven-project-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom +fetchArtifact org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom +fetchArtifact org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +fetchArtifact org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom +fetchArtifact org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar +fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +fetchArtifact org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom +fetchArtifact org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar +fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +fetchArtifact org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom +fetchArtifact org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom +fetchArtifact org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +fetchArtifact org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +fetchArtifact org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 +fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom fetchArtifact org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom +fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.jar fetchArtifact org/apache/maven/maven-toolchain/2.0.9/maven-toolchain-2.0.9.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-modules/1.3/doxia-modules-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.3/doxia-module-xdoc-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.3/doxia-decoration-model-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.3/doxia-module-fml-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.3/doxia-module-apt-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.3/doxia-sitetools-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-core/1.3/doxia-core-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.3/doxia-logging-api-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.3/doxia-sink-api-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.3/doxia-module-xhtml-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom -fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia/1.3/doxia-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom -fetchArtifact org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom.sha1 -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.pom -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.3/doxia-site-renderer-1.3.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar.sha1 -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar -fetchArtifact org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom.sha1 -fetchArtifact org/apache/apache/7/apache-7.pom -fetchArtifact org/apache/apache/7/apache-7.pom.sha1 -fetchArtifact org/apache/apache/2/apache-2.pom -fetchArtifact org/apache/apache/2/apache-2.pom.sha1 -fetchArtifact org/apache/apache/4/apache-4.pom -fetchArtifact org/apache/apache/4/apache-4.pom.sha1 -fetchArtifact org/apache/apache/9/apache-9.pom -fetchArtifact org/apache/apache/9/apache-9.pom.sha1 -fetchArtifact org/apache/apache/13/apache-13.pom -fetchArtifact org/apache/apache/13/apache-13.pom.sha1 -fetchArtifact org/apache/apache/3/apache-3.pom -fetchArtifact org/apache/apache/3/apache-3.pom.sha1 -fetchArtifact org/apache/apache/5/apache-5.pom -fetchArtifact org/apache/apache/5/apache-5.pom.sha1 -fetchArtifact org/apache/apache/6/apache-6.pom.sha1 -fetchArtifact org/apache/apache/6/apache-6.pom -fetchArtifact org/apache/apache/11/apache-11.pom -fetchArtifact org/apache/apache/11/apache-11.pom.sha1 -fetchArtifact org/apache/apache/10/apache-10.pom -fetchArtifact org/apache/apache/10/apache-10.pom.sha1 -fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar -fetchArtifact org/apache/apache-jar-resource-bundle/1.4/apache-jar-resource-bundle-1.4.jar.sha1 -fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/7/commons-parent-7.pom -fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/9/commons-parent-9.pom -fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom -fetchArtifact org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/17/commons-parent-17.pom -fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom -fetchArtifact org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 -fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom -fetchArtifact org/apache/commons/commons-parent/12/commons-parent-12.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom -fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom -fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom.sha1 -fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom -fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom.sha1 -fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom.sha1 -fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom.sha1 -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar.sha1 -fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom -fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom -fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom +fetchArtifact org/apache/maven/plugins/maven-clean-plugin/2.5/maven-clean-plugin-2.5.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom +fetchArtifact org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom +fetchArtifact org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom +fetchArtifact org/apache/maven/plugins/maven-gpg-plugin/1.4/maven-gpg-plugin-1.4.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom +fetchArtifact org/apache/maven/plugins/maven-jar-plugin/2.4/maven-jar-plugin-2.4.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom +fetchArtifact org/apache/maven/plugins/maven-javadoc-plugin/2.8.1/maven-javadoc-plugin-2.8.1.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/22/maven-plugins-22.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom +fetchArtifact org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom +fetchArtifact org/apache/maven/plugins/maven-remote-resources-plugin/1.3/maven-remote-resources-plugin-1.3.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom +fetchArtifact org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom +fetchArtifact org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom +fetchArtifact org/apache/maven/plugins/maven-site-plugin/3.1/maven-site-plugin-3.1.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom +fetchArtifact org/apache/maven/plugins/maven-source-plugin/2.1.2/maven-source-plugin-2.1.2.pom.sha1 +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.jar.sha1 +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom +fetchArtifact org/apache/maven/plugins/maven-surefire-plugin/2.12/maven-surefire-plugin-2.12.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom +fetchArtifact org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-exec/1.0.2/maven-reporting-exec-1.0.2.pom.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar.sha1 +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom +fetchArtifact org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom.sha1 +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom +fetchArtifact org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom +fetchArtifact org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.0/maven-common-artifact-filters-1.0.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.3/maven-common-artifact-filters-1.3.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom +fetchArtifact org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom +fetchArtifact org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom +fetchArtifact org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom +fetchArtifact org/apache/maven/shared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom +fetchArtifact org/apache/maven/shared/maven-filtering/1.0/maven-filtering-1.0.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom +fetchArtifact org/apache/maven/shared/maven-invoker/2.0.9/maven-invoker-2.0.9.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom +fetchArtifact org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/16/maven-shared-components-16.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom +fetchArtifact org/apache/maven/shared/maven-shared-components/9/maven-shared-components-9.pom.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom +fetchArtifact org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.jar.sha1 +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom +fetchArtifact org/apache/maven/surefire/maven-surefire-common/2.12/maven-surefire-common-2.12.pom.sha1 +fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom +fetchArtifact org/apache/maven/surefire/surefire/2.12/surefire-2.12.pom.sha1 +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.jar.sha1 +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom +fetchArtifact org/apache/maven/surefire/surefire-api/2.12/surefire-api-2.12.pom.sha1 +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.jar.sha1 +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom +fetchArtifact org/apache/maven/surefire/surefire-booter/2.12/surefire-booter-2.12.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom +fetchArtifact org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom +fetchArtifact org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon/1.0/wagon-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-providers/1.0/wagon-providers-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.jar.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-ssh/1.0/wagon-ssh-1.0.pom.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.jar.sha1 +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom +fetchArtifact org/apache/maven/wagon/wagon-ssh-common/1.0/wagon-ssh-common-1.0.pom.sha1 +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +fetchArtifact org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 +fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom +fetchArtifact org/apache/struts/struts-master/4/struts-master-4.pom.sha1 +fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +fetchArtifact org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +fetchArtifact org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +fetchArtifact org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom +fetchArtifact org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 +fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +fetchArtifact org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.jar.sha1 +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom +fetchArtifact org/apache/velocity/velocity/1.7/velocity-1.7.pom.sha1 +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +fetchArtifact org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 +fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom +fetchArtifact org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 +fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom +fetchArtifact org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 +fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom +fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom.sha1 +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom +fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom.sha1 +fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.jar.sha1 -fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom.sha1 +fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom +fetchArtifact org/codehaus/mojo/build-helper-maven-plugin/1.8/build-helper-maven-plugin-1.8.pom.sha1 fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom -fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom -fetchArtifact org/codehaus/codehaus-parent/4/codehaus-parent-4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom -fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom -fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom -fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom -fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar -fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom +fetchArtifact org/codehaus/mojo/mojo-parent/30/mojo-parent-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom +fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom +fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom +fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom +fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom fetchArtifact org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom fetchArtifact org/codehaus/plexus/plexus-archiver/2.0.1/plexus-archiver-2.0.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-9/plexus-archiver-1.0-alpha-9.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar -fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1 fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.jar.sha1 fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/2.1/plexus-archiver-2.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom +fetchArtifact org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler-javac/1.9.1/plexus-compiler-javac-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom +fetchArtifact org/codehaus/plexus/plexus-compilers/1.9.1/plexus-compilers-1.9.1.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom +fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom +fetchArtifact org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.17/plexus-components-1.1.17.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.19/plexus-components-1.1.19.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom +fetchArtifact org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom +fetchArtifact org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom +fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar fetchArtifact org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.jar -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar -fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom +fetchArtifact org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom +fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom +fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom +fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom +fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom +fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom +fetchArtifact org/codehaus/plexus/plexus-resources/1.0-alpha-5/plexus-resources-1.0-alpha-5.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom fetchArtifact org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom -fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar -fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom fetchArtifact org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom fetchArtifact org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom fetchArtifact org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom -fetchArtifact org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom -fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.jar -fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom -fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-api/1.9.1/plexus-compiler-api-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0/plexus-io-1.0.pom -fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom -fetchArtifact org/codehaus/plexus/plexus-io/2.0.1/plexus-io-2.0.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.pom -fetchArtifact org/codehaus/plexus/plexus-io/1.0-alpha-1/plexus-io-1.0-alpha-1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar -fetchArtifact org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.pom -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar -fetchArtifact org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler-manager/1.9.1/plexus-compiler-manager-1.9.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.3/plexus-3.3.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom -fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom -fetchArtifact org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom -fetchArtifact org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.1/plexus-3.1.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom -fetchArtifact org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom -fetchArtifact org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom -fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom -fetchArtifact org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom -fetchArtifact org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar.sha1 -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +fetchArtifact org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +fetchArtifact org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom +fetchArtifact org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom +fetchArtifact org/codehaus/plexus/plexus-utils/3.0/plexus-utils-3.0.pom.sha1 fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar -fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom -fetchArtifact org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 -fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom -fetchArtifact org/codehaus/plexus/plexus-compiler/1.9.1/plexus-compiler-1.9.1.pom.sha1 -fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 -fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar.sha1 +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom +fetchArtifact org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.pom.sha1 +fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 -fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 -fetchArtifact org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +fetchArtifact org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom fetchArtifact org/eclipse/jetty/jetty-parent/14/jetty-parent-14.pom.sha1 -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 -fetchArtifact org/beanshell/bsh/2.0b4/bsh-2.0b4.pom.sha1 -fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom.sha1 -fetchArtifact org/beanshell/beanshell/2.0b4/beanshell-2.0b4.pom +fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar +fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar.sha1 fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.pom.sha1 -fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar.sha1 -fetchArtifact org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar -fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom.sha1 fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom -fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 -fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom -fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom.sha1 -fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom -fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 +fetchArtifact org/hamcrest/hamcrest-parent/1.1/hamcrest-parent-1.1.pom.sha1 +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.jar.sha1 +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom +fetchArtifact org/jdom/jdom/1.1/jdom-1.1.pom.sha1 +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.jar.sha1 +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom +fetchArtifact org/mockito/mockito-core/1.8.5/mockito-core-1.8.5.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom +fetchArtifact org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom +fetchArtifact org/mortbay/jetty/jetty-parent/10/jetty-parent-10.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom +fetchArtifact org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom.sha1 +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom +fetchArtifact org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.pom.sha1 +fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom +fetchArtifact org/mortbay/jetty/project/6.1.25/project-6.1.25.pom.sha1 +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar.sha1 +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom +fetchArtifact org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom.sha1 +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar.sha1 +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom +fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom.sha1 +fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 +fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 +fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +fetchArtifact org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 -fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom -fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 -fetchArtifact org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom -fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 -fetchArtifact org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom -fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom -fetchArtifact org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom -fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 +fetchArtifact org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom +fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom +fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom +fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom +fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 +fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom +fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 +fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom +fetchArtifact org/sonatype/oss/oss-parent/6/oss-parent-6.pom.sha1 +fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom +fetchArtifact org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 +fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar +fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 +fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 +fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 +fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 +fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar +fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 +fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom fetchArtifact org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 -fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom -fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 +fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +fetchArtifact org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar -fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom -fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 +fetchArtifact org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar +fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom fetchArtifact org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 +fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +fetchArtifact org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 +fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom +fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 +fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom +fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom fetchArtifact org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom -fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom -fetchArtifact org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 -fetchArtifact org/sonatype/spice/spice-parent/10/spice-parent-10.pom -fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar -fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 -fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom -fetchArtifact org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 -fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 -fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar -fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom -fetchArtifact org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 -fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 -fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 -fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar -fetchArtifact org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom -fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/4/forge-parent-4.pom -fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom -fetchArtifact org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/5/forge-parent-5.pom -fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/6/forge-parent-6.pom -fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 -fetchArtifact org/sonatype/forge/forge-parent/10/forge-parent-10.pom -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar.sha1 -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom.sha1 -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.pom -fetchArtifact org/objenesis/objenesis/1.0/objenesis-1.0.jar -fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom -fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar -fetchArtifact junit/junit/3.8.1/junit-3.8.1.jar.sha1 -fetchArtifact junit/junit/3.8.1/junit-3.8.1.pom.sha1 -fetchArtifact junit/junit/4.10/junit-4.10.pom.sha1 -fetchArtifact junit/junit/4.10/junit-4.10.pom -fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom -fetchArtifact junit/junit/3.8.2/junit-3.8.2.pom.sha1 -fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 -fetchArtifact avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar -fetchArtifact antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom -fetchArtifact commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 -fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom -fetchArtifact commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 -fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom.sha1 -fetchArtifact doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom -fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom -fetchArtifact javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom.sha1 -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.jar -fetchArtifact javax/servlet/servlet-api/2.5/servlet-api-2.5.pom -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar -fetchArtifact commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 -fetchArtifact commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 -fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom +fetchArtifact org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom +fetchArtifact org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 +fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar.sha1 +fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom fetchArtifact oro/oro/2.0.8/oro-2.0.8.pom.sha1 -fetchArtifact oro/oro/2.0.8/oro-2.0.8.jar +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom +fetchArtifact sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 +fetchArtifact velocity/velocity/1.5/velocity-1.5.jar +fetchArtifact velocity/velocity/1.5/velocity-1.5.jar.sha1 +fetchArtifact velocity/velocity/1.5/velocity-1.5.pom +fetchArtifact velocity/velocity/1.5/velocity-1.5.pom.sha1 +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom +fetchArtifact xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +fetchArtifact xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom +fetchArtifact xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 +fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom +fetchArtifact xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 stopNest diff --git a/pkgs/applications/networking/cluster/mesos/mesos-deps.nix b/pkgs/applications/networking/cluster/mesos/mesos-deps.nix index 7f60dab2defc3685edcc5e25e66ee92b9d744922..f8d5dd2c9d6f6f7a1f11756d959011105b85d95f 100644 --- a/pkgs/applications/networking/cluster/mesos/mesos-deps.nix +++ b/pkgs/applications/networking/cluster/mesos/mesos-deps.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { outputHashAlgo = "sha256"; outputHashMode = "recursive"; - outputHash = "03qjq481ly5ajynlr9iqvrjra5fvv2jz4wp2f3in5vnxa61inrrk"; + outputHash = "12c6z5yvp60v57f6nijifp14i56bb5614hac1qg528s9liaf8vml"; buildInputs = [ curl ]; diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 7a615277d2cabf2ac1cef512bbd8df490043c53a..8030ab313a81d8e017566d6d95a12eafb045984f 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 = @@ -45,10 +45,11 @@ let desktopItem = makeDesktopItem { name = "dropbox"; exec = "dropbox"; - comment = "Online directories"; + comment = "Sync your files across computers and to the web"; desktopName = "Dropbox"; - genericName = "Online storage"; - categories = "Application;Internet;"; + genericName = "File Synchronizer"; + categories = "Network;FileTransfer;"; + startupNotify = "false"; }; in stdenv.mkDerivation { diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 233eb38ae86e32ba6ebe5efbf7d0a533a887ccb4..ebb63967b0081866fcaf841c83532740fc5adf4e 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -3,11 +3,11 @@ pythonPackages.buildPythonPackage rec { name = "blink-${version}"; - version = "1.4.1"; + version = "1.4.2"; src = fetchurl { url = "http://download.ag-projects.com/BlinkQt/${name}.tar.gz"; - sha256 = "0lpc3gm0hk55m7i2hlmk2p76akcfvnqxg0hyamfhha90nv6fk7sf"; + sha256 = "0ia5hgwyg6cm393ik4ggzhcmc957ncswycs07ilwj6vrrzraxfk7"; }; patches = [ ./pythonpath.patch ]; diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 170702e44d13ae08fa7faadad424bc1e394669e1..0a7b44ba8cbcedc2b303cf6d968d2147d17a6973 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/ratox/default.nix b/pkgs/applications/networking/instant-messengers/ratox/default.nix index 9f107559551f7c7830cfd3733a1a7a7ba8ad1490..053e8a9c97399a812f3f644c749f20c679d4b971 100644 --- a/pkgs/applications/networking/instant-messengers/ratox/default.nix +++ b/pkgs/applications/networking/instant-messengers/ratox/default.nix @@ -7,8 +7,8 @@ stdenv.mkDerivation rec { name = "ratox-0.2.1"; src = fetchurl { - url = "nix-prefetch-url http://git.2f30.org/ratox/snapshot/${name}.tar.gz"; - sha256 = "1fm9b3clvnc2nf0pd1z8g08kfszwhk1ij1lyx57wl8vd51z4xsi5"; + url = "http://git.2f30.org/ratox/snapshot/${name}.tar.gz"; + sha256 = "0xnw3zcz9frmcxqhwg38hhnsy1g5xl9yc19nl0vwi5awz8wqqy19"; }; buildInputs = [ libtoxcore ]; diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index a18ffac5d63dc68bb25aa0cebd9dc5fa14227c8c..7eedd997c1b4d449ad70b4a0d6a2341361529f00 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 new file mode 100644 index 0000000000000000000000000000000000000000..26a7eb49279baa2af2fc28d62ce18b42eb20e04b --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub +, qtbase, qtquick1, qtmultimedia, qtquickcontrols, qtgraphicaleffects, makeQtWrapper +, telegram-qml, libqtelegram-aseman-edition }: + +stdenv.mkDerivation rec { + name = "cutegram-${version}"; + version = "2.7.0-stable"; + + src = fetchFromGitHub { + owner = "Aseman-Land"; + repo = "Cutegram"; + rev = "v${version}"; + sha256 = "0qhy30gb8zdrphz1b7zcnv8hmm5fd5qwlvrg7wpsh3hk5niz3zxk"; + }; + # TODO appindicator, for system tray plugin + buildInputs = [ qtbase qtquick1 qtmultimedia qtquickcontrols qtgraphicaleffects telegram-qml libqtelegram-aseman-edition ]; + nativeBuildInputs = [ makeQtWrapper ]; + enableParallelBuild = true; + + fixupPhase = "wrapQtProgram $out/bin/cutegram"; + + configurePhase = "qmake -r PREFIX=$out"; + + meta = with stdenv.lib; { + description = "Telegram client forked from sigram"; + homepage = "http://aseman.co/en/products/cutegram/"; + license = licenses.gpl3; + maintainer = [ maintainers.profpatsch ]; + }; + +} diff --git a/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..3149ac3279af3eaa3867a8d3ce616dca771fed17 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/telegram/libqtelegram-aseman-edition/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub +, qtbase, qtmultimedia, qtquick1 }: + +stdenv.mkDerivation rec { + name = "libqtelegram-aseman-edition-${version}"; + version = "6.0"; + + src = fetchFromGitHub { + owner = "Aseman-Land"; + repo = "libqtelegram-aseman-edition"; + rev = "v${version}"; + sha256 = "17hlxf43xwic8m06q3gwbxjpvz31ks6laffjw6ny98d45zfnfwra"; + }; + + buildInputs = [ qtbase qtmultimedia qtquick1 ]; + enableParallelBuild = true; + + patchPhase = '' + substituteInPlace libqtelegram-ae.pro --replace "/libqtelegram-ae" "" + substituteInPlace libqtelegram-ae.pro --replace "/\$\$LIB_PATH" "" + ''; + + configurePhase = '' + qmake -r PREFIX=$out + ''; + + meta = with stdenv.lib; { + description = "A fork of libqtelegram by Aseman, using qmake"; + homepage = src.meta.homepage; + license = stdenv.lib.licenses.gpl3; + maintainer = [ maintainers.profpatsch ]; + }; + +} diff --git a/pkgs/applications/networking/instant-messengers/telegram-cli/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix similarity index 100% rename from pkgs/applications/networking/instant-messengers/telegram-cli/default.nix rename to pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..b51f8435ce13dffe36177d21e17da6cf33b5b35a --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-qml/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub +, qtbase, qtmultimedia, qtquick1 +, libqtelegram-aseman-edition }: + +stdenv.mkDerivation rec { + name = "telegram-qml-${version}"; + version = "0.9.1-stable"; + + src = fetchFromGitHub { + owner = "Aseman-Land"; + repo = "TelegramQML"; + rev = "v${version}"; + sha256 = "077j06lfr6qccqv664hn0ln023xlh5cfm50kapjc2inapxj2yqmn"; + }; + + buildInputs = [ qtbase qtmultimedia qtquick1 libqtelegram-aseman-edition ]; + enableParallelBuild = true; + + patchPhase = '' + substituteInPlace telegramqml.pro --replace "/\$\$LIB_PATH" "" + substituteInPlace telegramqml.pro --replace "INSTALL_HEADERS_PREFIX/telegramqml" "INSTALL_HEADERS_PREFIX" + ''; + + configurePhase = '' + qmake -r PREFIX=$out BUILD_MODE+=lib + ''; + + meta = with stdenv.lib; { + description = "Telegram API tools for QtQml and Qml"; + homepage = src.meta.homepage; + license = stdenv.lib.licenses.gpl3; + maintainer = [ maintainers.profpatsch ]; + }; + +} diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index 369010f41b52185583e323a88d7d878ae2fd56fc..76de1d208cc00249027ccf22bbe432d22b88897f 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 beb21546c0c9e3da849367eff317fe819c8fb959..5b3eb2326c5a7a828615fb724b89e61484ce745e 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -13,7 +13,7 @@ # python requires python , enableLdap ? false , enableNetworkManager ? false -, enablePgp ? false +, enablePgp ? true , enablePluginArchive ? false , enablePluginFancy ? false , enablePluginNotificationDialogs ? true @@ -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 ]; @@ -57,7 +57,7 @@ stdenv.mkDerivation { buildInputs = [ curl dbus dbus_glib gtk gnutls gsettings_desktop_schemas hicolor_icon_theme - libetpan perl pkgconfig python wrapGAppsHook + libetpan perl pkgconfig python wrapGAppsHook glib_networking ] ++ optional enableSpellcheck enchant ++ optionals (enablePgp || enablePluginSmime) [ gnupg gpgme ] @@ -92,8 +92,9 @@ stdenv.mkDerivation { enableParallelBuilding = true; - wrapPrefixVariables = [ "GIO_EXTRA_MODULES" ]; - GIO_EXTRA_MODULES = "${glib_networking}/lib/gio/modules"; + preFixup = '' + gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share") + ''; postInstall = '' mkdir -p $out/share/applications diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix index 4dd734ed04308c9a165c95e068e25e44fc32f461..388fc418de15ce57c800c3e7183e5c2c6e91c611 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 308e0b71c05a6502c4553baf1437b55fe4e075c1..1bf623a4b77c80ce38b53b3a5bf17a672617d93b 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" +base_path = "archive.mozilla.org/pub/thunderbird/releases" -Source = Struct.new(:hash, :arch, :locale, :filename) +arches = ["linux-i686", "linux-x86_64"] -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] +arches.each do |arch| + system("wget", "--recursive", "--continue", "--no-parent", "--reject-regex", ".*\\?.*", "--reject", "xpi", "http://#{base_path}/#{version}/#{arch}/") end -real_version = sources[0].filename.match(/thunderbird-([0-9.]*)\.tar\.bz2/)[1] +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 -arches = ["linux-i686", "linux-x86_64"] 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 bdc989fea2206a8b7a237429492e768f808930a9..8b06d083dc0ea0eb583836e802f1bed3b3b68e0e 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.5.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 = "29237bd1fff3790d891fcfa18959b808afa88c35b9c7036cc3cf79737560c3a5"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "480120055452c284eef26329419faa176cc5abff90c3dd986ea1d3478b869984"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "e659e19bc053a95bb4d753ff452637a29f792e61247fd1b70f70e90f62e8a268"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "1755ad5c097b92342224f7d659fc1c0db899b15f6874fcd256f76fac1bf27488"; } + { locale = "be"; arch = "linux-i686"; sha256 = "3682652d2aae978ceef32b4dccb2e20c4dc5584b6840df823664c214495e89bd"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "99a5e05ea1cd5a302b24b0bf8a87e495de1bd044d7335609016fbae49786a6b0"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "cd0b6cf8b620d619040a64f8692f78fcacf5500b5c092a6a40552397f56e2757"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "4001a26df6cee9182b85370e51d9e54284a066e8f8002c6dafc2ca872153ca36"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "bcdc5791b3a95c12e8cb19f92d57191360fff12ddf116d92b8ca1b32aa977827"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "037459abe2bf39d0ca05b0abfb18d112b9e56b4888b64ae956a6317800cc0047"; } + { locale = "br"; arch = "linux-i686"; sha256 = "1c907debf9f9c9a949bd1c7e7329ebc2fbdd6ff19ecf9411a67ce27079dae1ee"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "ace19a987e0a5fb10cf73d1b031e96c9333054083ab380e9a602f00b3347f334"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "5553dcde7e432643516405f465a981f52d5eaf3e53f7cec7d179034778d74122"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "1d3ee5b1487ff62243147aaaa1ba984976a969ddc0c7697b1f361db6a5d66023"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "d22a52c3e5d66a4cb8d084e7127f0acf79a36fbc1e96cccbb66adb205a4eb7a6"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "f75b81a8a984ef52bd5a11fbd98f00b16a1696c5dca9b2315ca35d23ed6ad4b9"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "0cae8f5bcff66cea0ea7a92f4503039078402eb149bca9a1bbbb170423a9625f"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "e4d5c5d920489ad73ceb2a0582285d35bc9fdf2e817a14a20d563b3f36dca71b"; } + { locale = "da"; arch = "linux-i686"; sha256 = "7cdbc0622b71ead86d7d180fab328b4346bba324f43381680cb9e4cad026667d"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "95cb578a1b9d271c7597852be14c18bd057eae01ef62429197ea47cb97f367b7"; } + { locale = "de"; arch = "linux-i686"; sha256 = "5e7a7d84bba7e3ce06a31678e2b97439597b5185866586c69f61d3eeaead7bf8"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "6d221dc885188ae683eb0c103b8551d25f2c26a82456abfcaea695b4555c83e1"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "d5cc9990acc678c483bc19649d67af96dda0308f66eea61f5917fcb40db13a4f"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "01ad8dbd1b9fac2dfe269ed171ab6fe32751892147f136f9ab8c8d023ed0fe11"; } + { locale = "el"; arch = "linux-i686"; sha256 = "7040a9d0c51ce310e74e9d3b1c04f5088ba688212100700f78e1c7b4f8722739"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "e2a3b0f3b022c320b0b7b372442cb85ac716f85e757cdf107246a6b7d4715835"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "c7258c7864087eb90d59f763ed0b23ee99f2a6a45c433d97e89583ea37ccdb32"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "af32ae7ba6d7b61d46c074ec0086fce4150b5b6255eb43c3c17c97f597b688d1"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "c7794f3e1d51fa7e0935d689078b348114d3abf010a0525b22e5375950b6098e"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "01bb4a3bd43aa5dde30197178cb50ac35ac62cde637227aca8bdd410c9f62546"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "f89e5f28d792161cd5b791ad68eb64c6a55a5de15dc00d5b042153b8fe549ab4"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "a7c3102c5c5c6999723fa889af88f1d14630867334db8703ca9b5f5368359127"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "a01fc84e9ce676f9b163e882cee5b6ca70b98a43b2937c6f5298f800b7ee3d78"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "030840e14241776d60cbd1ce9d0790df4e4f7b1fd5f554df9a3a51c9421af573"; } + { locale = "et"; arch = "linux-i686"; sha256 = "f6da6a171f4a00afaf5af2fbcc6cdd7504e00cc38f62baad1f9aad51467ef191"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "8fed1407c48e0f7f39c888f08001ec0705c09b587a6921b2644e91020e8f2763"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "0f1c30b2e5c6d1a2359a1714605ab382c617a00fb2a3ab9aa0570c27df6bc1a6"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "5192b9230659a8ec35abf4353201d6f2ac66c1ffce33d0dd68c38dbb1302029c"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "5812be19808c789c6f36484aad72ead4a5b75ce52d91047794da0c5919a4f68f"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "64243724356329e81f8754f4bc1d3e848a6544f598ceec44ac63a69d52003944"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "63117d10a3fa00b86eaf9023d562ca817ea44b89788de190d7870c22df6ee5b1"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "22715532882458ff60ccf52c5502eddb5f7a9ef646a22915c3928ff6ca244bdf"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "9be2f10d9f5dcddc7b5119609ac9b864aa61b2e1839e3bdce3f4e742f5e94c12"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "a71900daca5ac832240fa27c15ad76afca75b8b86c101899c58f6ee20bd33fc2"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "4426fcb698d40fc796a3affafda1f142e4f252e3861354915a8ba4db41e28754"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "a7533879eda14dd1b6e8ce4e68006fd1d1fff9b7fec12c14f30871084625581c"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "82593c88c14b6ac518d0da17aced0ffe4a78e06faf4275508218fd09da535f4b"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "3ec0a23d6ac098dd97dec52778202d6dc24cd76d7f142a452b4309be32d9cc29"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "64cd467c054da7506b5e72e159c0829a6d41db1482d9343a8cdd5b0bf7166d0f"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "a9ec09c8cbc54f071f80226bb203f4f5823f71cf376978d0e69cefc5562cd5bf"; } + { locale = "he"; arch = "linux-i686"; sha256 = "bb21099de57446c1a9284fa54ed491bbd1d104b64f9c479b8d0ded607fb79c7d"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "4397b52af2d90e0642b7e66fc39b60987dbba94737666e205df8b1b0b4c280de"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "65164ae7e551458bcb8afef5da13d1a632c7ddb181e112833b1fe0a0ab391c17"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "e026eae7e0eb85558ad58616a90240e14bd9011bbe6ed5bcf68788ad21d182eb"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "c2bd24db8c46a11108241a3aa6f57f234aa52e982af013e081c4b45621878b7b"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "b01690e94a2f8b5d8049ac62061206fc296b6a7e2c609d3368facefa246f06e5"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "7ea9be32fc7b198e300273a973162364a4dbe17bfa6b7e5fe39bd01fbd93c79e"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "d9ca99cb52265fe8cf89c9b48469479dcb9e251f8c3f3527540c19f44439234b"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "899906072114caaab0e7f48a7b67f77dbeca7d2130171a2277c98116479951ea"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "6a636b312c1a38474cd26700b0419e2cb174c440e4ac652a6d29bf6837a2bdd1"; } + { locale = "id"; arch = "linux-i686"; sha256 = "9827c378de89d3eed6bd297233c934fa7a84796efb02d82a4be1f8235c2dbe6c"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "23075b98ac7a1674cd1189806680062eb0eb35cbe08d7d0592242295184932bc"; } + { locale = "is"; arch = "linux-i686"; sha256 = "e64f2b7dfa4654bb681bfa5c34adc9d64400c3c7dfb1f9dd7ab0c04d998c6784"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "2049e8c19e3a58f1f0f08926e786c3a2d81292d94eb0346b54ae86edba35bf3b"; } + { locale = "it"; arch = "linux-i686"; sha256 = "12941cb1feec8beacc8cf62b94f902ddacadc424abe511226be2e85248496a60"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "9da22cef1e8b5d92c048c8bee59ca88b9801f95073083c218412de0406af6dc4"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "bdd5fee3bc2d807b1b6329f0f8f14bed85f8eacfc1210f4a5204687b7c0e250b"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "c48477523b11d7ec6314f54c2d0d62b35c6474b06bbd7c0bd0317971303a1073"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "d887a32f4073231856522ba034c4e952eb56d7ed06895e0d26dfc3d3a7488b0f"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "c02ff12289d32d5d3ad5f88a5c851f46f8d31c66ce8013622959f537cae1101b"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "99095f5f55c3ce6d0bb485d25eff1afdadb63e8f41caaddacceced71a92bbb9e"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "a4de32255d7334bf1eabda06332f8665a9d60bdf667a43c219ba2de08865f1e8"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "8b547faa6f76d1aa1f0f33235380e5379663c5d6e66e55ea0baa61a62f37e272"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "17873b2664d665d1d53fe69c4041aa6474f58a18cf5dc0f86b739d95d193bb48"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "ba36cb5c4b008f878b181ed3ff56198cd83739fb9d2018d6710288daafa6df7a"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "04afe1c59bfdfb9573623e9e84165863465356ec7872f1afc448c841c4e9392d"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "2fa6cc0e585574d3460597b25c6549b2aebd2b2af203edef960dea2b81bae954"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "ca8bdb92d16a89f7baca59e0c11662d2dfead62eb209746d738fbccbea8d00c5"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "79575806b00f77adae3b2ad794c2e268436e2b4b2904186ea88caa2bbcc5e232"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "2220b6bc45f98f088c653ee255718613b43e93691173441f0825c39e3ea8c263"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "829788db6afdb0f09b23d0230abf176153a252a76964ae4ad6df161568e03b6b"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "89792685c6ff26bae9d42326dbe0ca77b6a651df51ba02bd76a85692c83aba5a"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "b7898b8fde2c32c8d7fe105ab88751fb9acaa756f3826dfaab3fa33fa7bfd5a4"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "691e722d24695960574fb5423d2d5713d3729a0cf3bbffdbe3f550b1b0a8a91b"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "06e9c005c45b6d71e4f4957ae0d92578baf2b0ff783f38dca4a5018f84319bfd"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "5422bf1e694a462864759374bc3afdf9f0033121b879413a3edc18a20d406b4e"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "54c0f6dfc40b748f74ab9fd79dd4b0987ce17eced23b293cf83b1867f38d7c53"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "a164dfa18736b3f84ce2a80fea1f6441bbd3de113c26eab503ab7710866f7555"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "3135adfb8c2b674545d3e80a8f3d77a89332dbe4cdff0f05817d5ae2edac8025"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "7a95f8853d5776267ab62fcc208214a7a4f2a7d82350ac7967ca90ab2178e737"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "df9cb429c6fe10e7aeae06d49329fed27cf9cd84b3b28e7fef82008399dfe453"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "aa97b360bd5cfd0686b0d75df21500249e0f7ab1586e37774d60040abdd2ecd8"; } + { locale = "si"; arch = "linux-i686"; sha256 = "ba1ef9b8576589a9bf8523f26fe42416f14f4c38b74b4519792aff6896a4c34b"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "bcd73d4a1187d8e43dcbfd7bb4df3c0f7893175785d633113b0a5b526bb718d8"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "004423ed395fcc4cba02e703f5086f9255758edd2bd3125adeb8fb006a4f769e"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "9abb27a35c2076fc3c85e18b20f909ba41b4618afda51f2adbb0ef960b67483f"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "ff2dca954720bcb1947c18b1013666c6568f6638b204adf5a0277e6bff64f468"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "a334a65d54efaacdafcddad336f313d24b594c14bfc874159cd9a4ca9ded2b03"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "b5e53cd682a8b4494074c1c0c7e4d4fb94a36a06e81522cb4b7289b4ed6bd486"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "747174de108fcf0a7201e22df90f613846a0b66384b007ccddeb51b6dc651aca"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "fa53bfe3c00878b462e6aa3a0bf76a6e1e4dc6d9095f2104a355ac5b773e936c"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "308965f1b97405e7c6db95e7cffae69fe6a899539782c06b1446ab97ddb19d45"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "0b2e6e13cd30b46b81c8fb9fd195d27ce96c40f03d17ba0f8095d4ddd226ff45"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "dc47f9c38a845461db14a08d67f143c8b5ba04aa441aeecae8bd8f3cbf79fca6"; } + { locale = "ta-LK"; arch = "linux-i686"; sha256 = "3f5afc0975aebe8981202927fe5507065c47ccd64f1ddd8adb426c0032ee267e"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "8a9b241836c0b495865e9d64d2e89cb054a01e8e3fb55ee8a1cbbd0def7d5a93"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "c104cbdfaee89946ab11b3bc0de6cfaf5d88f5e18a6be400dc573e7b1c10319d"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "717c460478cdb986fbfcd5fcd16f7fb66af930e3ca2826176b7158ff865d51a5"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "dcfbdd8ba1897bdfcb26b0ec1c50a88808c2ca988418cca56eab74e1f870ba1c"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "648764a8aad2ea954416f2293023598cd26d4bae1bb44da1406868d1286c3f58"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "2b938e4c4614de013b9e0f7d4bdde0353cea42c7651491f2d92323a25d9157d6"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "82571f95eaf3a88c7cc7fc056779ed4f4ea5664333c5e015ccd4995fc48ca0a7"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "db6a5619c7fcd9487ecd5518590a7ad28ee4a9fd12348c950ce1b12de5232dfe"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "36ac3599d3bba4a4e982df6cbb355becc0e0e237b127c3b2afea3618754fafbe"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "269dccd617074567654a053186d6830fff38503431156db5a00d70bef093bf0e"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "c78e2ad7df58f86a26bb81c13a27a8722884573278a1dd179ffba577902c92e5"; } ]; } diff --git a/pkgs/applications/networking/newsreaders/liferea/default.nix b/pkgs/applications/networking/newsreaders/liferea/default.nix index f2844edd4f034f0a8506bf29dfae961167b83f03..fecc88d36bfcac806ab5799dfa15d1fd4685c34c 100644 --- a/pkgs/applications/networking/newsreaders/liferea/default.nix +++ b/pkgs/applications/networking/newsreaders/liferea/default.nix @@ -6,14 +6,14 @@ }: let pname = "liferea"; - version = "1.10.16"; + version = "1.10.17"; in stdenv.mkDerivation rec { name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${name}.tar.bz2"; - sha256 = "0b8cvlyiamc4hwjcxzs0h3mk3gxnmnwyi79mjv36601xgfjs5f9j"; + sha256 = "0svgl50w3hai31n5sm42sl0cd86c32cka0xzfy4r8gi0lyjdjxyx"; }; buildInputs = with gst_all_1; [ @@ -37,12 +37,12 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with stdenv.lib; { description = "A GTK-based news feed agregator"; homepage = http://lzone.de/liferea/; - license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [ vcunat romildo ]; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ vcunat romildo ]; + platforms = platforms.linux; longDescription = '' Liferea (Linux Feed Reader) is an RSS/RDF feed reader. diff --git a/pkgs/applications/networking/p2p/firestr/default.nix b/pkgs/applications/networking/p2p/firestr/default.nix index 6b1a1fc945405f531e0544f221baafde489338d4..e216ede9a392732f6cd9b0614e0a99ecc9509b84 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 775da905ea9158206a42b20da5614149ae151e52..b190b05e28918fa4e8c492333b1cc0c3d7f3ae1c 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/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix index 5e09beb4c476eb981bf1cf7177acd93c9ff915ac..c13bb1b329df0882c48e0652d9957c2960b06fdb 100644 --- a/pkgs/applications/networking/sync/rsync/default.nix +++ b/pkgs/applications/networking/sync/rsync/default.nix @@ -7,18 +7,18 @@ assert enableACLs -> acl != null; stdenv.mkDerivation rec { name = "rsync-${version}"; - version = "3.1.1"; + version = "3.1.2"; mainSrc = fetchurl { # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 url = "mirror://samba/rsync/src/rsync-${version}.tar.gz"; - sha256 = "0896iah6w72q5izpxgkai75bn40dqkqifi2ivcxjzr2zrx7kdr3x"; + sha256 = "1hm1q04hz15509f0p9bflw4d6jzfvpm1d36dxjwihk1wzakn5ypc"; }; patchesSrc = fetchurl { # signed with key 0048 C8B0 26D4 C96F 0E58 9C2F 6C85 9FB1 4B96 A8C5 url = "mirror://samba/rsync/rsync-patches-${version}.tar.gz"; - sha256 = "0iij996xbyn20yr4w3kv3rw3cx4jwkg2k85x6w5hb5xlgsis8zjl"; + sha256 = "09i3dcl37p22dp75vlnsvx7bm05ggafnrf1zwhf2kbij4ngvxvpd"; }; srcs = [mainSrc] ++ stdenv.lib.optional enableCopyDevicesPatch patchesSrc; diff --git a/pkgs/applications/networking/vnstat/default.nix b/pkgs/applications/networking/vnstat/default.nix index b2cba633db846cb87b927993889d8e1c16c7548c..a553de8abb268a6d1a061f84a07cfcd92f24314b 100644 --- a/pkgs/applications/networking/vnstat/default.nix +++ b/pkgs/applications/networking/vnstat/default.nix @@ -1,29 +1,32 @@ -{stdenv, fetchurl, ncurses}: +{ stdenv, fetchurl, gd, ncurses }: -let version = "1.14"; in +let version = "1.15"; in stdenv.mkDerivation rec { name = "vnstat-${version}"; src = fetchurl { - sha256 = "11l39qqv5pgli9zzn0xilld67bi5qzxymsn97m4r022xv13jlipq"; + sha256 = "0fdw3nbrfm4acv48r0934ls6ld5lwkff3gyym2c72qlbm9dlp0f3"; url = "http://humdi.net/vnstat/${name}.tar.gz"; }; - installPhase = '' - mkdir -p $out/{bin,sbin} $out/share/man/{man1,man5} - cp src/vnstat $out/bin - cp src/vnstatd $out/sbin - cp man/vnstat.1 man/vnstatd.1 $out/share/man/man1 - cp man/vnstat.conf.5 $out/share/man/man5 - ''; + buildInputs = [ gd ncurses ]; - buildInputs = [ncurses]; + postPatch = '' + substituteInPlace src/cfg.c --replace /usr/local $out + ''; meta = with stdenv.lib; { inherit version; + description = "Console-based network statistics utility for Linux"; + longDescription = '' + vnStat is a console-based network traffic monitor for Linux and BSD that + keeps a log of network traffic for the selected interface(s). It uses the + network interface statistics provided by the kernel as information source. + This means that vnStat won't actually be sniffing any traffic and also + ensures light use of system resources. + ''; homepage = http://humdi.net/vnstat/; license = licenses.gpl2Plus; - description = "Console-based network statistics utility for Linux"; maintainers = with maintainers; [ nckx ]; platforms = platforms.linux; }; diff --git a/pkgs/applications/science/electronics/fritzing/default.nix b/pkgs/applications/science/electronics/fritzing/default.nix index 1fa0a0d97b50ed9c7f1a7476873555dbc9d2a138..302c6a318e656b9b27c25cf979e64b0455f81ea6 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/electronics/geda/default.nix b/pkgs/applications/science/electronics/geda/default.nix index 03ddf835343d5c8c4baf689991b959a25b281a69..25934c71e8ebe2d8a2e1cfcc0253f6b6e11098c6 100644 --- a/pkgs/applications/science/electronics/geda/default.nix +++ b/pkgs/applications/science/electronics/geda/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, guile, gtk, flex, gawk }: +{ stdenv, fetchurl, pkgconfig, guile, gtk, flex, gawk, perl }: stdenv.mkDerivation rec { name = "geda-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; configureFlags = "--disable-update-xdg-database"; - buildInputs = [ pkgconfig guile gtk flex gawk ]; + buildInputs = [ pkgconfig guile gtk flex gawk perl ]; meta = with stdenv.lib; { description = "Full GPL'd suite of Electronic Design Automation tools"; diff --git a/pkgs/applications/science/electronics/gerbv/default.nix b/pkgs/applications/science/electronics/gerbv/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..5a86ff3e5f83da36c0e99d0a1083ee272002e73a --- /dev/null +++ b/pkgs/applications/science/electronics/gerbv/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchgit, pkgconfig, gettext, libtool, automake, autoconf, cairo, gtk, autoreconfHook }: + +stdenv.mkDerivation rec { + name = "gerbv-${version}"; + version = "2015-10-08"; + + src = fetchgit { + url = git://git.geda-project.org/gerbv.git; + rev = "76b8b67bfa10823ce98f1c4c3b49a2afcadf7659"; + sha256 = "1l2x8sb1c3gq00i71fdndkqwa7148mrranayafqw9pq63869l92w"; + }; + + buildInputs = [ pkgconfig gettext libtool automake autoconf cairo gtk autoreconfHook ]; + + configureFlags = ["--disable-update-desktop-database"]; + + meta = with stdenv.lib; { + description = "A Gerber (RS-274X) viewer"; + homepage = http://gerbv.geda-project.org/; + maintainers = with maintainers; [ mog ]; + platforms = platforms.linux; + license = licenses.gpl2; + }; +} diff --git a/pkgs/applications/science/electronics/pcb/default.nix b/pkgs/applications/science/electronics/pcb/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..257d6993ff59f702cf9fc8d8e03eca0e24f8d93e --- /dev/null +++ b/pkgs/applications/science/electronics/pcb/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, gtk, bison, intltool, flex, netpbm, imagemagick, dbus, xlibsWrapper, mesa, shared_mime_info, tcl, tk, gnome, pangox_compat, gd, xorg }: + +stdenv.mkDerivation rec { + name = "pcb-${version}"; + version = "20140316"; + + src = fetchurl { + url = "http://ftp.geda-project.org/pcb/pcb-20140316/${name}.tar.gz"; + sha256 = "0l6944hq79qsyp60i5ai02xwyp8l47q7xdm3js0jfkpf72ag7i42"; + }; + + buildInputs = [ pkgconfig gtk bison intltool flex netpbm imagemagick dbus xlibsWrapper mesa tcl shared_mime_info tk gnome.gtkglext pangox_compat gd xorg.libXmu ]; + + configureFlags = ["--disable-update-desktop-database"]; + + meta = with stdenv.lib; { + description = "Printed Circuit Board editor"; + homepage = http://pcb.geda-project.org/; + maintainers = with maintainers; [ mog ]; + platforms = platforms.linux; + license = licenses.gpl2; + }; +} diff --git a/pkgs/applications/science/logic/coq/8.5.nix b/pkgs/applications/science/logic/coq/8.5.nix index 2afa18d40a4b48fc45e15e68cbd88bc8e4d5127d..df888cf5c793d673f1313d2a346c9671fe73b9d9 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/cvs2svn/default.nix b/pkgs/applications/version-management/cvs2svn/default.nix index 65c2c84d0da1f0d8d9398c7e3e2be88d6d26bc02..870248ed75d25cae01e7f5cd9a3d9db1d846227d 100644 --- a/pkgs/applications/version-management/cvs2svn/default.nix +++ b/pkgs/applications/version-management/cvs2svn/default.nix @@ -1,11 +1,11 @@ -{stdenv, fetchurl, python, makeWrapper}: +{stdenv, lib, fetchurl, python, cvs, makeWrapper}: -stdenv.mkDerivation { - name = "cvs2svn-2.0.1"; +stdenv.mkDerivation rec { + name = "cvs2svn-2.4.0"; src = fetchurl { - url = http://cvs2svn.tigris.org/files/documents/1462/39919/cvs2svn-2.0.1.tar.gz; - sha256 = "1pgbyxzgn22lnw3h5c2nd8z46pkk863jg3fgh9pqa1jihsx1cg1j"; + url = "http://cvs2svn.tigris.org/files/documents/1462/49237/${name}.tar.gz"; + sha256 = "05piyrcp81a1jgjm66xhq7h1sscx42ccjqaw30h40dxlwz1pyrx6"; }; buildInputs = [python makeWrapper]; @@ -13,8 +13,11 @@ stdenv.mkDerivation { buildPhase = "true"; installPhase = '' python ./setup.py install --prefix=$out - wrapProgram $out/bin/cvs2svn \ - --set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH" + for i in bzr svn git; do + wrapProgram $out/bin/cvs2$i \ + --prefix PATH : "${lib.makeSearchPath "bin" [ cvs ]}" \ + --set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH" + done ''; /* !!! maybe we should absolutise the program names in @@ -23,5 +26,6 @@ stdenv.mkDerivation { meta = { description = "A tool to convert CVS repositories to Subversion repositories"; homepage = http://cvs2svn.tigris.org/; + maintainers = [ lib.maintainers.makefu ]; }; } diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 6d832f9778f0a05effa59e224c7f78aa42a6c55a..4d3c31b4f9149bad341de9c56b51733d6ab17838 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -94,6 +94,8 @@ rec { svn2git_kde = callPackage ./svn2git-kde { }; + subgit = callPackage ./subgit { }; + darcsToGit = callPackage ./darcs-to-git { }; gitflow = callPackage ./gitflow { }; 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 c0acb13740a841a23456b8b4a852698a3722e9cc..8e537c32313c967ad6883d305f5bf95d5fe3df8c 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 d060acef53ed98a47efe425eed6ce67cd932487b..84b033f981fc37d7b230f83283e368cab530c262 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/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index 0a119624227a803b4b36e10f0f26eb641e9245a6..af08aac066ddbe2c664a882b9b76d8ac1d38fd6b 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "hub-${version}"; - version = "2.2.1"; + version = "2.2.2"; src = fetchgit { url = https://github.com/github/hub.git; rev = "refs/tags/v${version}"; - sha256 = "1rklqm5b0n5rcbdsr6kvk24cw7dc505ylb1608fva7qman49vlls"; + sha256 = "147rsh8zkqv6iqx3q7wzszfqlv65qj3hm3264ma042g7naf8hkwr"; }; diff --git a/pkgs/applications/version-management/git-and-tools/subgit/default.nix b/pkgs/applications/version-management/git-and-tools/subgit/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..0774bbc9a624525b7a89536810f611c84a979446 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/subgit/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, unzip, makeWrapper, jre }: + +stdenv.mkDerivation { + name = "subgit-3.1.0"; + + meta = { + description = "A tool for a smooth, stress-free SVN to Git migration"; + longDescription = "Create writable Git mirror of a local or remote Subversion repository and use both Subversion and Git as long as you like. You may also do a fast one-time import from Subversion to Git."; + homepage = http://subgit.com; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.all; + }; + + buildInputs = [ unzip makeWrapper ]; + + installPhase = '' + mkdir $out; + cp -r bin lib $out; + wrapProgram $out/bin/subgit --set JAVA_HOME ${jre}; + ''; + + src = fetchurl { + url = http://old.subgit.com/download/subgit-3.1.0.zip; + sha256 = "08qhpg6y2ziwplm0z1ghh1wfp607sw4hyb53a7qzfn759j5kcdrg"; + }; +} \ No newline at end of file diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 30af36b4880fff491374c77a7d51af2ad9431f2b..f18184162fe77111f0e1949c04175570052cc159 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -8,7 +8,6 @@ , stdenv, fetchurl, apr, aprutil, zlib, sqlite , apacheHttpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null , sasl ? null, serf ? null -, branch ? "1.9" }: assert bdbSupport -> aprutil.bdbSupport; @@ -17,90 +16,94 @@ assert pythonBindings -> swig != null && python != null; assert javahlBindings -> jdk != null && perl != null; let - config = { - "1.9".ver_min = "2"; - "1.9".sha1 = "fb9db3b7ddf48ae37aa8785872301b59bfcc7017"; - "1.8".ver_min = "14"; - "1.8".sha1 = "0698efc58373e7657f6dd3ce13cab7b002ffb497"; - }; -in -assert builtins.hasAttr branch config; - -stdenv.mkDerivation (rec { - - version = "${branch}." + config.${branch}.ver_min; + common = { version, sha1 }: stdenv.mkDerivation (rec { + inherit version; + name = "subversion-${version}"; - name = "subversion-${version}"; - - src = fetchurl { - url = "mirror://apache/subversion/${name}.tar.bz2"; - inherit (config.${branch}) sha1; - }; + src = fetchurl { + url = "mirror://apache/subversion/${name}.tar.bz2"; + inherit sha1; + }; # Can't do separate $lib and $bin, as libs reference bins outputs = [ "dev" "out" "man" ]; - buildInputs = [ zlib apr aprutil sqlite ] - ++ stdenv.lib.optional httpSupport serf - ++ stdenv.lib.optional pythonBindings python - ++ stdenv.lib.optional perlBindings perl - ++ stdenv.lib.optional saslSupport sasl; - - configureFlags = '' - ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"} - ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"} - ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"} - ${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""} - --disable-keychain - ${if saslSupport then "--with-sasl=${sasl}" else "--without-sasl"} - ${if httpSupport then "--with-serf=${serf}" else "--without-serf"} - --with-zlib=${zlib} - --with-sqlite=${sqlite} - ''; - - preBuild = '' - makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules) - ''; - - postInstall = '' - if test -n "$pythonBindings"; then - make swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn - make install-swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn - fi - - if test -n "$perlBindings"; then - make swig-pl-lib - make install-swig-pl-lib - cd subversion/bindings/swig/perl/native - perl Makefile.PL PREFIX=$out - make install - cd - - fi - - mkdir -p $out/share/bash-completion/completions - cp tools/client-side/bash_completion $out/share/bash-completion/completions/subversion + buildInputs = [ zlib apr aprutil sqlite ] + ++ stdenv.lib.optional httpSupport serf + ++ stdenv.lib.optional pythonBindings python + ++ stdenv.lib.optional perlBindings perl + ++ stdenv.lib.optional saslSupport sasl; + + configureFlags = '' + ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"} + ${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"} + ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"} + ${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""} + --disable-keychain + ${if saslSupport then "--with-sasl=${sasl}" else "--without-sasl"} + ${if httpSupport then "--with-serf=${serf}" else "--without-serf"} + --with-zlib=${zlib} + --with-sqlite=${sqlite} + ''; + + preBuild = '' + makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules) + ''; + + postInstall = '' + if test -n "$pythonBindings"; then + make swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn + make install-swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn + fi + + if test -n "$perlBindings"; then + make swig-pl-lib + make install-swig-pl-lib + cd subversion/bindings/swig/perl/native + perl Makefile.PL PREFIX=$out + make install + cd - + fi + + mkdir -p $out/share/bash-completion/completions + cp tools/client-side/bash_completion $out/share/bash-completion/completions/subversion for f in $out/lib/*.la; do substituteInPlace $f --replace "${expat.dev}/lib" "${expat.out}/lib" substituteInPlace $f --replace "${zlib.dev}/lib" "${zlib.out}/lib" substituteInPlace $f --replace "${sqlite.dev}/lib" "${sqlite.out}/lib" done - ''; + ''; + + inherit perlBindings pythonBindings; - inherit perlBindings pythonBindings; + enableParallelBuilding = true; - enableParallelBuilding = true; + meta = { + description = "A version control system intended to be a compelling replacement for CVS in the open source community"; + homepage = http://subversion.apache.org/; + maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; + hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; + }; - meta = { - description = "A version control system intended to be a compelling replacement for CVS in the open source community"; - homepage = http://subversion.apache.org/; - maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; - hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; + } // stdenv.lib.optionalAttrs stdenv.isDarwin { + CXX = "clang++"; + CC = "clang"; + CPP = "clang -E"; + CXXCPP = "clang++ -E"; + }); + +in { + + subversion18 = common { + version = "1.8.15"; + sha1 = "680acf88f0db978fbbeac89ed63776d805b918ef"; }; -} // stdenv.lib.optionalAttrs stdenv.isDarwin { - CXX = "clang++"; - CC = "clang"; - CPP = "clang -E"; - CXXCPP = "clang++ -E"; -}) + + subversion19 = common { + version = "1.9.3"; + sha1 = "27e8df191c92095f48314a415194ec37c682cbcf"; + }; + +} diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix index da07458f4f64691fbd464fcb41716914e2eee70c..36da9d3207215acee7e55db4bb39bb7e9f8d0161 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 5bd2087b3458e49ed79786197177aeb020a2ed5a..1cb2baeeee6a52a118ea42bd6a16462fae691020 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.6"; in stdenv.mkDerivation rec { name = "clipgrab-${version}"; src = fetchurl { - sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r"; + sha256 = "0wm6hqaq6ydbvvd0fqkfydxd5h7gf4di7lvq63xgxl4z40jqc25n"; # 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 0bd0263005f575bbad88c9e2002462970e36bccc..2c2a26cc972c26bec6b943e64db26589aec85a62 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 0000000000000000000000000000000000000000..95c06d54d6e6676f7e8a71e20f00c8c791331212 --- /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 c0458748c96c6b974907307c61c0a4f41a66a229..74f9c1604b22b6b5e8cf9219130ef261f47f170a 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 aed5363100be26391d98380e304b759457ee7210..13c654222275a31bf09ffc265e19a07a8a9dd6ca 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 79dbf5764724601de584e8a69ecaa0d49ce40d6b..bc55f943a889a92acd3767bd6fbd22d25a784a4c 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 063420751823413b20f96ddcb3e61cd057c6a99e..b7f95fccda323c6e868c97051bb1486933ff728c 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 d66ce67ca8dff9a529c0d525743a0fbd58d6c2ba..410e25353d271ff2b1dc668c53b16fe6a98a1f3c 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/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index 13cb7df3479523467e33a3b4059166386ff83391..77903aa95897563008fe84b6c07dca812a620753 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, python, zlib, pkgconfig, glib, ncurses, perl, pixman , attr, libcap, vde2, alsaLib, texinfo, libuuid, flex, bison, lzo, snappy -, libseccomp, libaio, libcap_ng, gnutls, nettle +, libseccomp, libaio, libcap_ng, gnutls, nettle, numactl , makeWrapper , pulseSupport ? true, libpulseaudio , sdlSupport ? true, SDL @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { buildInputs = [ python zlib pkgconfig glib ncurses perl pixman attr libcap vde2 texinfo libuuid flex bison makeWrapper lzo snappy libseccomp - libcap_ng gnutls nettle + libcap_ng gnutls nettle numactl ] ++ optionals pulseSupport [ libpulseaudio ] ++ optionals sdlSupport [ SDL ] @@ -42,6 +42,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-seccomp" + "--enable-numa" "--smbd=smbd" # use `smbd' from $PATH "--audio-drv-list=${audio}" "--sysconfdir=/etc" diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 6b3eb079f9870dba6bcbd2a6f29137c72c9d2dcc..eb2a5d737a3e619b4e9f8b94d4f491b4ce2a1822 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.12.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 = "1qwj3a4780lqra2c6ncw86lskzqnh59fxk577hgqym4jgxxk4bbv"; + 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/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index 0d54489a18934f1e01b095030784263d3a9b4727..d22072f1095f60757f1613dc6c38ce78ca9904c0 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -9,12 +9,12 @@ with pythonPackages; buildPythonPackage rec { name = "virt-manager-${version}"; - version = "1.2.1"; + version = "1.3.1"; namePrefix = ""; src = fetchurl { url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz"; - sha256 = "1gp6ijrwl6kjs54l395002pc9sblp08p4nqx9zcb9qg5f87aifvl"; + sha256 = "0lqd9ix7k4jswqzxarnvxfbq6rvpcm8rrc1if86nw67ms1dh2i36"; }; propagatedBuildInputs = diff --git a/pkgs/applications/virtualization/virt-viewer/default.nix b/pkgs/applications/virtualization/virt-viewer/default.nix index 2fe7e0bcc23256532127f6c3930022bafed83212..f63eeb6030686152250d6bf2c55e1ebd71881f0f 100644 --- a/pkgs/applications/virtualization/virt-viewer/default.nix +++ b/pkgs/applications/virtualization/virt-viewer/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, intltool, glib, libxml2, gtk3, gtkvnc, gmp , libgcrypt, gnupg, cyrus_sasl, shared_mime_info, libvirt, libcap_ng, yajl -, gsettings_desktop_schemas, makeWrapper +, gsettings_desktop_schemas, makeWrapper, xen, numactl , spiceSupport ? true, spice_gtk ? null, spice_protocol ? null, libcap ? null, gdbm ? null }: @@ -9,25 +9,20 @@ assert spiceSupport -> with stdenv.lib; -let sourceInfo = rec { - baseName="virt-viewer"; - version="2.0"; - name="${baseName}-${version}"; - url="http://virt-manager.org/download/sources/${baseName}/${name}.tar.gz"; - hash="0dylhpk5rq9jz0l1cxs50q2s74z0wingygm1m33bmnmcnny87ig9"; -}; in - -stdenv.mkDerivation { - inherit (sourceInfo) name version; +stdenv.mkDerivation rec { + baseName = "virt-viewer"; + version = "2.0"; + name = "${baseName}-${version}"; src = fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.hash; + url = "http://virt-manager.org/download/sources/${baseName}/${name}.tar.gz"; + sha256 = "0dylhpk5rq9jz0l1cxs50q2s74z0wingygm1m33bmnmcnny87ig9"; }; - buildInputs = [ + buildInputs = [ pkgconfig intltool glib libxml2 gtk3 gtkvnc gmp libgcrypt gnupg cyrus_sasl shared_mime_info libvirt libcap_ng yajl gsettings_desktop_schemas makeWrapper + xen numactl ] ++ optionals spiceSupport [ spice_gtk spice_protocol libcap gdbm ]; postInstall = '' diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix index aa95080ac52d52c6f861e7ba5bd0bcd3b34cc81f..54ce3e768975b7050021b2915e40282165435f3a 100644 --- a/pkgs/build-support/build-fhs-userenv/default.nix +++ b/pkgs/build-support/build-fhs-userenv/default.nix @@ -1,8 +1,9 @@ -{ runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : -{ env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "" } : +{ runCommand, lib, writeText, writeScriptBin, stdenv, bash, ruby } : +{ env, runScript ? "${bash}/bin/bash", extraBindMounts ? [], extraInstallCommands ? "" } : let name = env.pname; + bash' = "${bash}/bin/bash"; # Sandboxing script chroot-user = writeScriptBin "chroot-user" '' @@ -29,7 +30,7 @@ in runCommand name { runCommand "${name}-shell-env" { shellHook = '' export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS" - exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)" + exec ${chroot-user}/bin/chroot-user ${env} ${bash'} -l ${init bash'} "$(pwd)" ''; } '' echo >&2 "" @@ -42,7 +43,7 @@ in runCommand name { cat <$out/bin/${name} #! ${stdenv.shell} export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:\$CHROOTENV_EXTRA_BINDS" - exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init runScript} "\$(pwd)" "\$@" + exec ${chroot-user}/bin/chroot-user ${env} ${bash'} -l ${init runScript} "\$(pwd)" "\$@" EOF chmod +x $out/bin/${name} ${extraInstallCommands} diff --git a/pkgs/build-support/emacs/melpa.nix b/pkgs/build-support/emacs/melpa.nix index 5eaa995b4126dd3577e736e52c40bc98aecd7f8d..8fd2a00b50a85ba972dff2af67450a09a6b92f5f 100644 --- a/pkgs/build-support/emacs/melpa.nix +++ b/pkgs/build-support/emacs/melpa.nix @@ -8,6 +8,8 @@ with lib; { pname , version +, recipeFile ? null + , files ? null , fileSpecs ? [ "*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" @@ -22,8 +24,8 @@ with lib; let packageBuild = fetchurl { - url = https://raw.githubusercontent.com/milkypostman/melpa/12a862e5c5c62ce627dab83d7cf2cca6e8b56c47/package-build.el; - sha256 = "1nviyyprypz7nmam9rwli4yv3kxh170glfbznryrp4czxkrjjdhk"; + url = https://raw.githubusercontent.com/milkypostman/melpa/2b3eb31c077fcaff94b74b757c1ce17650333943/package-build.el; + sha256 = "1biwg2pqmmdz5iwqbjdszljazqymvgyyjcnc255nr6qz8mhnx67j"; }; fname = "${pname}-${version}"; @@ -43,8 +45,17 @@ import ./generic.nix { inherit lib stdenv emacs texinfo; } ({ runHook preBuild emacs --batch -Q -l $packageBuild -l ${./melpa2nix.el} \ + ${if recipeFile == null + then + '' -f melpa2nix-build-package \ ${pname} ${version} ${targets} + '' + else + '' + -f melpa2nix-build-package-from-recipe \ + ${pname} ${version} ${recipeFile} + ''} runHook postBuild ''; diff --git a/pkgs/build-support/emacs/melpa2nix.el b/pkgs/build-support/emacs/melpa2nix.el index d54e9d21e25e1f59754dd3a9f0f15bb48d2d59d4..f1309fc0d57b27604dc22ba31745114ad226f5b7 100644 --- a/pkgs/build-support/emacs/melpa2nix.el +++ b/pkgs/build-support/emacs/melpa2nix.el @@ -21,16 +21,25 @@ (`(,package ,version . ,files) (melpa2nix-package-build-archive package version files)))) +(defun melpa2nix-build-package-from-recipe () + (if (not noninteractive) + (error "`melpa2nix-build-package' is to be used only with -batch")) + (pcase command-line-args-left + (`(,package ,version ,recipe-file) + (let* ((rcp (cdr (package-build--read-from-file recipe-file))) + (files (package-build--config-file-list rcp))) + (melpa2nix-package-build-archive package version files))))) + (defun melpa2nix-package-build-archive (name version files) "Build a package archive for package NAME." - (pb/message "\n;;; %s\n" name) + (package-build--message "\n;;; %s\n" name) (let* ((start-time (current-time)) (archive-entry (package-build-package name version files package-build-working-dir package-build-archive-dir))) - - (pb/message "Built in %.3fs, finished at %s" - (time-to-seconds (time-since start-time)) - (current-time-string)))) + + (package-build--message "Built in %.3fs, finished at %s" + (time-to-seconds (time-since start-time)) + (current-time-string)))) diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index 4020a1aca33720a07c1a9d6509899d6ac0478c50..dc4ff03f9e78330eee5e54b9dbe90d40e1487854 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 8143fca7025d7640cb07d31031f644b04f4d674c..dbe8a7ef801384d22fd17c64b2fa185ec1787d55 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/default.nix b/pkgs/build-support/fetchzip/default.nix index 46e7d917160c7494b7dc3fff43b724c4218e139f..9015f951a519274d8991296a5a4ae7b660c20729 100644 --- a/pkgs/build-support/fetchzip/default.nix +++ b/pkgs/build-support/fetchzip/default.nix @@ -10,6 +10,7 @@ { # Optionally move the contents of the unpacked tree up one level. stripRoot ? true , url +, extraPostFetch ? "" , ... } @ args: lib.overrideDerivation (fetchurl ({ @@ -47,7 +48,8 @@ lib.overrideDerivation (fetchurl ({ fi '' else '' mv "$unpackDir"/* "$out/" - ''); -} // removeAttrs args [ "stripRoot" ])) + '') #*/ + + extraPostFetch; +} // removeAttrs args [ "stripRoot" "extraPostFetch" ])) # Hackety-hack: we actually need unzip hooks, too (x: {nativeBuildInputs = x.nativeBuildInputs++ [unzip];}) diff --git a/pkgs/build-support/fetchzip/nix-prefetch-zip b/pkgs/build-support/fetchzip/nix-prefetch-zip index ccc03e087e52632623222a46b72f724d481674c5..ea55643668d4af3234d9d791a2e25753003d66da 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/build-support/make-desktopitem/default.nix b/pkgs/build-support/make-desktopitem/default.nix index 1a03faae54ccceb9349d5096e4779e28106f768a..d4baf17adf1b158def9331d54b2e472db8145874 100644 --- a/pkgs/build-support/make-desktopitem/default.nix +++ b/pkgs/build-support/make-desktopitem/default.nix @@ -9,6 +9,7 @@ , genericName , mimeType ? "" , categories ? "Application;Other;" +, startupNotify ? null }: stdenv.mkDerivation { @@ -26,6 +27,8 @@ stdenv.mkDerivation { GenericName=${genericName} MimeType=${mimeType} Categories=${categories} - EOF + ${if startupNotify == null then ''EOF'' else '' + StartupNotify=${startupNotify} + EOF''} ''; } diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 9203425b20ae87e99a91f9e6bcabfcd1c15c155c..1350e36940b38b7cff7d9cdb35e45c7b90bfb993 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -153,4 +153,10 @@ _EOF_ exec ${bin} "$@" ''; + # Copy a path to the Nix store. + copyPathToStore = builtins.filterSource (p: t: true); + + # Copy a list of paths to the Nix store. + copyPathsToStore = builtins.map copyPathToStore; + } diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 317594d8f9fe8da75ce42329a6e7cbf663095baf..2311b0d2fec8949d6cd7c60b07264a92fd6b83fa 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -118,7 +118,7 @@ rec { echo "mounting Nix store..." mkdir -p /fs/nix/store - mount -t 9p store /fs/nix/store -o trans=virtio,version=9p2000.L,msize=262144,cache=loose + mount -t 9p store /fs/nix/store -o trans=virtio,version=9p2000.L,cache=loose mkdir -p /fs/tmp /fs/run /fs/var mount -t tmpfs -o "mode=1777" none /fs/tmp @@ -127,7 +127,7 @@ rec { echo "mounting host's temporary directory..." mkdir -p /fs/tmp/xchg - mount -t 9p xchg /fs/tmp/xchg -o trans=virtio,version=9p2000.L,msize=262144,cache=loose + mount -t 9p xchg /fs/tmp/xchg -o trans=virtio,version=9p2000.L,cache=loose mkdir -p /fs/proc mount -t proc none /fs/proc diff --git a/pkgs/build-support/vm/windows/controller/default.nix b/pkgs/build-support/vm/windows/controller/default.nix index 0beaf401758a82b577a69d126c47cf3fe452e1f5..1c8e6af83b86347997dbb859afeb3fa7de165930 100644 --- a/pkgs/build-support/vm/windows/controller/default.nix +++ b/pkgs/build-support/vm/windows/controller/default.nix @@ -48,11 +48,11 @@ let mount -t proc none /fs/proc mount -t 9p \ - -o trans=virtio,version=9p2000.L,msize=262144,cache=loose \ + -o trans=virtio,version=9p2000.L,cache=loose \ store /fs/nix/store mount -t 9p \ - -o trans=virtio,version=9p2000.L,msize=262144,cache=loose \ + -o trans=virtio,version=9p2000.L,cache=loose \ xchg /fs/xchg echo root:x:0:0::/root:/bin/false > /fs/etc/passwd diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix index a6c77deb12ea9b6ddecb6d2a9981051297686c7a..0f02bb7dc9452576ff452013d2befe8200b7a06d 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 1ed63f7ac9e930cfedec3b4d5e4ce7e0b72492ac..92caf866eec3bfeb72f1c5af0e5fc926a067b5bf 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 8ad6068a185a8b15f02dd12738b7aca613c6f9a2..114b88c3040d2294d46cb909fe923a473691f426 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 6f5c5a1a55d2b571fa237f86f2d3cddec3860eb7..aded5b1cddfa67b9b4a13bc6da2cc6d9d7780bf2 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 0000000000000000000000000000000000000000..ab163dcca9ffebd5919b9542b70432cb32f6c3e6 --- /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 0000000000000000000000000000000000000000..3b80781f4145ca48824052bdefaad0101d68fe59 --- /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/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..e8afb25b8b39c0bc713539925f8b9840416bc4cf --- /dev/null +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchgit }: + +let version = "2015-12-14"; in +stdenv.mkDerivation { + name = "wireless-regdb-${version}"; + + src = fetchgit { + sha256 = "1ldfcxn3mdb104czy78b7nj1clsbfp8fc6mshix98zq0bg4k7rsm"; + url = https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/wireless-regdb.git; + rev = "refs/tags/master-${version}"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + makeFlags = [ + "DESTDIR=$(out)" + "PREFIX=" + ]; + + meta = with stdenv.lib; { + inherit version; + description = "Wireless regulatory database for CRDA"; + homepage = https://git.kernel.org/cgit/linux/kernel/git/sforshee/wireless-regdb.git/; + license = licenses.isc; + platforms = platforms.all; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/desktops/e19/efl.nix b/pkgs/desktops/e19/efl.nix index dc153fd7b389223dbf1d3825055b6241be5af734..7caa5bdd1eb41b54467d57767a07283589b9fbd5 100644 --- a/pkgs/desktops/e19/efl.nix +++ b/pkgs/desktops/e19/efl.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinuxCurses, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, vlc, libwebp, curl, libinput, systemd }: +{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinuxCurses, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, libwebp, curl, libinput, systemd }: stdenv.mkDerivation rec { @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { xorg.libXdamage xorg.libXinerama xorg.libXp xorg.libXtst xorg.libXi xorg.libXext bullet xorg.libXScrnSaver xorg.libXrender xorg.libXfixes xorg.libXrandr xorg.libxkbfile xorg.libxcb xorg.xcbutilkeysyms openjpeg doxygen expat luajit - harfbuzz jbig2dec librsvg dbus_libs alsaLib poppler libraw libspectre xineLib vlc libwebp curl libdrm + harfbuzz jbig2dec librsvg dbus_libs alsaLib poppler libraw libspectre xineLib libwebp curl libdrm libinput ]; # ac_ct_CXX must be set to random value, because then it skips some magic which does alternative searching for g++ diff --git a/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix index 10eaa34a8a2baf5dd1d024ad6fc4b013cf2da749..2c670b00f8ab552e887e4836bd07f0be1470b6a1 100644 --- a/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix +++ b/pkgs/desktops/gnome-3/3.16/apps/gnome-boxes/default.nix @@ -2,8 +2,8 @@ , glib, gobjectIntrospection, libxml2, gtk3, gtkvnc, libvirt, spice_gtk , spice_protocol, libuuid, libsoup, libosinfo, systemd, tracker, vala , libcap_ng, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg -, desktop_file_utils, mtools, cdrkit, libcdio -, libusb, libarchive, acl +, desktop_file_utils, mtools, cdrkit, libcdio, libgudev +, libusb, libarchive, acl, xen, numactl }: # TODO: ovirt (optional) @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { gobjectIntrospection libxml2 gtk3 gtkvnc libvirt spice_gtk spice_protocol libuuid libsoup libosinfo systemd tracker vala libcap_ng libcap yajl gmp gdbm cyrus_sasl gnome3.defaultIconTheme libusb libarchive - librsvg desktop_file_utils acl + librsvg desktop_file_utils acl libgudev xen numactl ]; preFixup = '' diff --git a/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix index 90955bd3ccf985b3870a7a4505a4a629a45673fa..6f5af374dbc42bb0904526410c0382b3e9fee1f8 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix @@ -2,8 +2,8 @@ , glib, gobjectIntrospection, libxml2, gtk3, gtkvnc, libvirt, spice_gtk , spice_protocol, libuuid, libsoup, libosinfo, systemd, tracker, vala , libcap_ng, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg -, desktop_file_utils, mtools, cdrkit, libcdio -, libusb, libarchive, acl +, desktop_file_utils, mtools, cdrkit, libcdio, numactl, xen +, libusb, libarchive, acl, libgudev }: # TODO: ovirt (optional) @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { gobjectIntrospection libxml2 gtk3 gtkvnc libvirt spice_gtk spice_protocol libuuid libsoup libosinfo systemd tracker vala libcap_ng libcap yajl gmp gdbm cyrus_sasl gnome3.defaultIconTheme libusb libarchive - librsvg desktop_file_utils acl + librsvg desktop_file_utils acl libgudev numactl xen ]; preFixup = '' diff --git a/pkgs/desktops/plasma-5.4/bluedevil.nix b/pkgs/desktops/plasma-5.4/bluedevil.nix deleted file mode 100644 index d099e95a16b470ef8419b3766a066487097c59e9..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/bluedevil.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, bluez-qt, kcoreaddons -, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, kwindowsystem, makeQtWrapper, plasma-framework -, qtdeclarative, shared_mime_info -}: - -plasmaPackage { - name = "bluedevil"; - nativeBuildInputs = [ - extra-cmake-modules makeQtWrapper shared_mime_info - ]; - buildInputs = [ - kcoreaddons kdbusaddons kded kiconthemes knotifications - kwidgetsaddons - ]; - propagatedBuildInputs = [ - bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/bluedevil-wizard" - wrapQtProgram "$out/bin/bluedevil-sendfile" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/breeze-qt4.nix b/pkgs/desktops/plasma-5.4/breeze-qt4.nix deleted file mode 100644 index f8092bc9d376c35e9c06b0e00f611c8afa13f602..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/breeze-qt4.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ plasmaPackage -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, qt4 -, xproto -}: - -plasmaPackage { - name = "breeze-qt4"; - sname = "breeze"; - buildInputs = [ - kdelibs - qt4 - xproto - ]; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - cmakeFlags = [ - "-DUSE_KDE4=ON" - "-DQT_QMAKE_EXECUTABLE=${qt4}/bin/qmake" - ]; -} diff --git a/pkgs/desktops/plasma-5.4/breeze-qt5.nix b/pkgs/desktops/plasma-5.4/breeze-qt5.nix deleted file mode 100644 index f50179ef64ceb8bc2b64ecb104fd757153b6d9f2..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/breeze-qt5.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, frameworkintegration -, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons -, ki18n, kwindowsystem, makeQtWrapper, qtx11extras -}: - -plasmaPackage { - name = "breeze-qt5"; - sname = "breeze"; - nativeBuildInputs = [ - extra-cmake-modules - makeQtWrapper - ]; - buildInputs = [ - kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons - ]; - propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; - cmakeFlags = [ "-DUSE_Qt4=OFF" ]; - postInstall = '' - wrapQtProgram "$out/bin/breeze-settings5" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/default.nix b/pkgs/desktops/plasma-5.4/default.nix deleted file mode 100644 index 570134d824f3b7ee7132b79295faed9bff6bbae0..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/default.nix +++ /dev/null @@ -1,86 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib stdenv symlinkJoin; - - kf5 = pkgs.kf514; - kdeApps = pkgs.kdeApps_15_08; - - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - mirror = "mirror://kde"; - - plasmaPackage = args: - let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - setupHook = args.setupHook or ./setup-hook.sh; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ttuegel ]; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - addPackages = self: with self; { - bluedevil = callPackage ./bluedevil.nix {}; - breeze-qt4 = callPackage ./breeze-qt4.nix {}; - breeze-qt5 = callPackage ./breeze-qt5.nix {}; - breeze = - let version = (builtins.parseDrvName breeze-qt5.name).version; - in symlinkJoin "breeze-${version}" [ breeze-qt4 breeze-qt5 ]; - kde-cli-tools = callPackage ./kde-cli-tools.nix {}; - kde-gtk-config = callPackage ./kde-gtk-config {}; - kdecoration = callPackage ./kdecoration.nix {}; - kdeplasma-addons = callPackage ./kdeplasma-addons.nix {}; - kgamma5 = callPackage ./kgamma5.nix {}; - khelpcenter = callPackage ./khelpcenter.nix {}; - khotkeys = callPackage ./khotkeys.nix {}; - kinfocenter = callPackage ./kinfocenter.nix {}; - kmenuedit = callPackage ./kmenuedit.nix {}; - kscreen = callPackage ./kscreen.nix {}; - ksshaskpass = callPackage ./ksshaskpass.nix {}; - ksysguard = callPackage ./ksysguard.nix {}; - kwayland = callPackage ./kwayland.nix {}; - kwin = callPackage ./kwin {}; - kwrited = callPackage ./kwrited.nix {}; - libkscreen = callPackage ./libkscreen {}; - libksysguard = callPackage ./libksysguard {}; - milou = callPackage ./milou.nix {}; - oxygen = callPackage ./oxygen.nix {}; - oxygen-fonts = callPackage ./oxygen-fonts.nix {}; - plasma-desktop = callPackage ./plasma-desktop {}; - plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; - plasma-nm = callPackage ./plasma-nm {}; - plasma-pa = callPackage ./plasma-pa.nix {}; - plasma-workspace = callPackage ./plasma-workspace {}; - plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; - polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; - powerdevil = callPackage ./powerdevil.nix {}; - systemsettings = callPackage ./systemsettings.nix {}; - }; - - newScope = scope: kdeApps.newScope ({ inherit plasmaPackage; } // scope); - -in lib.makeScope newScope addPackages diff --git a/pkgs/desktops/plasma-5.4/fetchsrcs.sh b/pkgs/desktops/plasma-5.4/fetchsrcs.sh deleted file mode 100755 index db2db8f8e56d3667eda1f2fb80c7c146a70135a1..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gawk gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.4.3/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/desktops/plasma-5.4/kde-cli-tools.nix b/pkgs/desktops/plasma-5.4/kde-cli-tools.nix deleted file mode 100644 index 7f19af6959ec2fbfc9ebe321c7b67b51ed99da74..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kde-cli-tools.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcmutils, kconfig -, kdelibs4support, kdesu, kdoctools, ki18n, kiconthemes -, kwindowsystem, makeQtWrapper, qtsvg, qtx11extras -}: - -plasmaPackage { - name = "kde-cli-tools"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcmutils kconfig kdesu kiconthemes - ]; - propagatedBuildInputs = [ - kdelibs4support ki18n kwindowsystem qtsvg qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kmimetypefinder5" - wrapQtProgram "$out/bin/ksvgtopng5" - wrapQtProgram "$out/bin/ktraderclient5" - wrapQtProgram "$out/bin/kioclient5" - wrapQtProgram "$out/bin/kdecp5" - wrapQtProgram "$out/bin/keditfiletype5" - wrapQtProgram "$out/bin/kcmshell5" - wrapQtProgram "$out/bin/kdemv5" - wrapQtProgram "$out/bin/kstart5" - wrapQtProgram "$out/bin/kde-open5" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch deleted file mode 100644 index 759eda4cc134ce7bc046070eba9651ddb1f3357a..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kde-gtk-config/0001-follow-symlinks.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 33b25c2e3c7a002c7f726cd79fc4bab22b1299be Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Tue, 27 Oct 2015 18:07:54 -0500 -Subject: [PATCH] follow symlinks - ---- - src/appearancegtk2.cpp | 2 +- - src/iconthemesmodel.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/appearancegtk2.cpp b/src/appearancegtk2.cpp -index b1e0b52..095cddc 100644 ---- a/src/appearancegtk2.cpp -+++ b/src/appearancegtk2.cpp -@@ -73,7 +73,7 @@ QString AppearanceGTK2::themesGtkrcFile(const QString& themeName) const - QStringList themes=installedThemes(); - themes=themes.filter(QRegExp("/"+themeName+"/?$")); - if(themes.size()==1) { -- QDirIterator it(themes.first(), QDirIterator::Subdirectories); -+ QDirIterator it(themes.first(), QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while(it.hasNext()) { - it.next(); - if(it.fileName()=="gtkrc") { -diff --git a/src/iconthemesmodel.cpp b/src/iconthemesmodel.cpp -index 07c7ad7..b04d978 100644 ---- a/src/iconthemesmodel.cpp -+++ b/src/iconthemesmodel.cpp -@@ -46,7 +46,7 @@ QList IconThemesModel::installedThemesPaths() - - foreach(const QString& dir, dirs) { - QDir userIconsDir(dir); -- QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs|QDir::NoSymLinks); -+ QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs); - while(it.hasNext()) { - QString currentPath = it.next(); - QDir dir(currentPath); --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix b/pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix deleted file mode 100644 index ab8867520b380913cb71950124abf384588615be..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kde-gtk-config/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, glib -, gtk2 -, gtk3 -, karchive -, kcmutils -, kconfigwidgets -, ki18n -, kiconthemes -, kio -, knewstuff -}: - -plasmaPackage { - name = "kde-gtk-config"; - patches = [ ./0001-follow-symlinks.patch ]; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes - knewstuff - ]; - propagatedBuildInputs = [ ki18n kio ]; - cmakeFlags = [ - "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include" - "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include" - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kdecoration.nix b/pkgs/desktops/plasma-5.4/kdecoration.nix deleted file mode 100644 index eb65f7f90afbe78e469971c59c7f146b4e217266..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kdecoration.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ plasmaPackage, extra-cmake-modules }: - -plasmaPackage { - name = "kdecoration"; - nativeBuildInputs = [ extra-cmake-modules ]; -} diff --git a/pkgs/desktops/plasma-5.4/kdeplasma-addons.nix b/pkgs/desktops/plasma-5.4/kdeplasma-addons.nix deleted file mode 100644 index d6a96a3276d755dc3b04208276e21605df5c5f09..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kdeplasma-addons.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ibus, kconfig -, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n -, kio, knewstuff, kross, krunner, kservice, kunitconversion -, plasma-framework, qtdeclarative, qtx11extras -}: - -plasmaPackage { - name = "kdeplasma-addons"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - ibus kconfig kconfigwidgets kcoreaddons kcmutils - knewstuff kservice kunitconversion - ]; - propagatedBuildInputs = [ - kdelibs4support kio kross krunner plasma-framework qtdeclarative - qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kgamma5.nix b/pkgs/desktops/plasma-5.4/kgamma5.nix deleted file mode 100644 index 965c33e6eef8d43df98dfde367734fde6db330b8..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kgamma5.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kdelibs4support -, qtx11extras -}: - -plasmaPackage { - name = "kgamma5"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - propagatedBuildInputs = [ kdelibs4support qtx11extras ]; -} diff --git a/pkgs/desktops/plasma-5.4/khelpcenter.nix b/pkgs/desktops/plasma-5.4/khelpcenter.nix deleted file mode 100644 index 6ba860b9dfb26c5490762cc104d3253873b1a968..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/khelpcenter.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig -, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support -, khtml, kservice, makeQtWrapper -}: - -plasmaPackage { - name = "khelpcenter"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kinit kcmutils kservice - ]; - propagatedBuildInputs = [ kdelibs4support khtml ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/khelpcenter" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/khotkeys.nix b/pkgs/desktops/plasma-5.4/khotkeys.nix deleted file mode 100644 index 141320e6b3e69467e4f6a358779cdc74462b6263..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/khotkeys.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils -, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui -, plasma-framework, plasma-workspace, qtx11extras -}: - -plasmaPackage { - name = "khotkeys"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcmutils kdbusaddons kxmlgui - ]; - propagatedBuildInputs = [ - kdelibs4support kglobalaccel ki18n kio plasma-framework - plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kinfocenter.nix b/pkgs/desktops/plasma-5.4/kinfocenter.nix deleted file mode 100644 index ed717790cd0d8889a1edda351b0d6e1506ee8c07..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kinfocenter.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils -, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons -, kdeclarative, kdelibs4support, ki18n, kiconthemes, kio, kpackage -, kservice, kwidgetsaddons, kxmlgui, libraw1394, makeQtWrapper -, pciutils, solid -}: - -plasmaPackage { - name = "kinfocenter"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcmutils kcompletion kconfig kconfigwidgets kcoreaddons - kdbusaddons kiconthemes kpackage kservice kwidgetsaddons - kxmlgui libraw1394 pciutils solid - ]; - propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio ]; - postInstall = '' - wrapQtProgram "$out/bin/kinfocenter" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kmenuedit.nix b/pkgs/desktops/plasma-5.4/kmenuedit.nix deleted file mode 100644 index 3834ca1328f890b25ff531c908bf16fd88376f3a..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kmenuedit.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui -, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper -}: - -plasmaPackage { - name = "kmenuedit"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kxmlgui kdbusaddons kiconthemes - ]; - propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kmenuedit" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kscreen.nix b/pkgs/desktops/plasma-5.4/kscreen.nix deleted file mode 100644 index dac7a6ba20a393e5ce798b0f65c55678d691adf0..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kscreen.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kconfig, kconfigwidgets -, kdbusaddons, kglobalaccel, ki18n, kwidgetsaddons, kxmlgui -, libkscreen, makeQtWrapper, qtdeclarative -}: - -plasmaPackage { - name = "kscreen"; - nativeBuildInputs = [ - extra-cmake-modules - makeQtWrapper - ]; - buildInputs = [ - kconfig kconfigwidgets kdbusaddons kwidgetsaddons kxmlgui - ]; - propagatedBuildInputs = [ kglobalaccel ki18n libkscreen qtdeclarative ]; - propagatedUserEnvPkgs = [ - libkscreen # D-Bus service - ]; - postInstall = '' - wrapQtProgram "$out/bin/kscreen-console" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/ksshaskpass.nix b/pkgs/desktops/plasma-5.4/ksshaskpass.nix deleted file mode 100644 index f274512e027a1a61e7fbcab8261fa0110dd686d4..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/ksshaskpass.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcoreaddons -, ki18n, kwallet, kwidgetsaddons, makeQtWrapper -}: - -plasmaPackage { - name = "ksshaskpass"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kcoreaddons kwallet kwidgetsaddons ]; - propagatedBuildInputs = [ ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/ksshaskpass" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/ksysguard.nix b/pkgs/desktops/plasma-5.4/ksysguard.nix deleted file mode 100644 index 7af3584989c302eed1897a62f1955c3441ec6d5c..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/ksysguard.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig -, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff -, kiconthemes, libksysguard, makeQtWrapper -}: - -plasmaPackage { - name = "ksysguard"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard - ]; - propagatedBuildInputs = [ kdelibs4support ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/ksysguardd" - wrapQtProgram "$out/bin/ksysguard" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kwayland.nix b/pkgs/desktops/plasma-5.4/kwayland.nix deleted file mode 100644 index e4d6eb631f9579d7cd02c50882f6443ab967b021..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kwayland.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, wayland -}: - -plasmaPackage { - name = "kwayland"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - wayland - ]; -} diff --git a/pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 797a32fc5f83ace97d719d48040f382d5f59a205..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kwin/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 78a4b554187c18fd86b62089f7730c4273fadd4c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 07:05:22 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - clients/aurorae/src/aurorae.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp -index 781c960..ad5f420 100644 ---- a/clients/aurorae/src/aurorae.cpp -+++ b/clients/aurorae/src/aurorae.cpp -@@ -211,7 +211,7 @@ void Helper::init() - // so let's try to locate our plugin: - QString pluginPath; - for (const QString &path : m_engine->importPathList()) { -- QDirIterator it(path, QDirIterator::Subdirectories); -+ QDirIterator it(path, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - it.next(); - QFileInfo fileInfo = it.fileInfo(); --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/kwin/default.nix b/pkgs/desktops/plasma-5.4/kwin/default.nix deleted file mode 100644 index 2ba35807ff861a1ba3e80bc6346b5bd1ed78ab40..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kwin/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, epoxy -, kactivities, kcompletion, kcmutils, kconfig, kconfigwidgets -, kcoreaddons, kcrash, kdeclarative, kdecoration, kglobalaccel -, ki18n, kiconthemes, kinit, kio, knewstuff, knotifications -, kpackage, kservice, kwayland, kwidgetsaddons, kwindowsystem -, kxmlgui, libinput, libICE, libSM, plasma-framework, qtdeclarative -, qtmultimedia, qtscript, qtx11extras, udev, wayland, xcb-util-cursor -, makeQtWrapper -}: - -plasmaPackage { - name = "kwin"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - epoxy kcompletion kcmutils kconfig kconfigwidgets kcoreaddons - kcrash kdecoration kiconthemes kinit knewstuff knotifications - kpackage kservice kwayland kwidgetsaddons kxmlgui libinput libICE - libSM qtscript udev wayland xcb-util-cursor - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kwindowsystem - plasma-framework qtdeclarative qtmultimedia qtx11extras - ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/kwin_x11" - wrapQtProgram "$out/bin/kwin_wayland" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/kwrited.nix b/pkgs/desktops/plasma-5.4/kwrited.nix deleted file mode 100644 index a6ed9d9bb2877e57ab5e6cdfc5cdead13647816e..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/kwrited.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcoreaddons, ki18n, kpty -, knotifications, kdbusaddons -}: - -plasmaPackage { - name = "kwrited"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kpty knotifications kdbusaddons ]; - propagatedBuildInputs = [ ki18n ]; -} diff --git a/pkgs/desktops/plasma-5.4/libkscreen/default.nix b/pkgs/desktops/plasma-5.4/libkscreen/default.nix deleted file mode 100644 index 9fccbd6834c3ef245bf89c76a259cb84be230abe..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/libkscreen/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, libXrandr -, qtx11extras -}: - -plasmaPackage { - name = "libkscreen"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - libXrandr - ]; - propagatedBuildInputs = [ - qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch b/pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch deleted file mode 100644 index d5797924d2332071340ea8edc6b6c3ce343a2b81..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/libkscreen/libkscreen-backend-path.patch +++ /dev/null @@ -1,130 +0,0 @@ -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 460022f..422a708 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -1,5 +1,7 @@ - include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${QT_INCLUDES}) - -+configure_file(config-libkscreen.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-libkscreen.h) -+ - set(libkscreen_SRCS - backendloader.cpp - config.cpp -diff --git a/src/backendloader.cpp b/src/backendloader.cpp -index b93e469..8aebc14 100644 ---- a/src/backendloader.cpp -+++ b/src/backendloader.cpp -@@ -16,6 +16,7 @@ - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * - *************************************************************************************/ - -+#include "config-libkscreen.h" - #include "backendloader.h" - #include "debug_p.h" - #include "backends/abstractbackend.h" -@@ -40,55 +41,54 @@ bool BackendLoader::init() - const QString backend = qgetenv("KSCREEN_BACKEND").constData(); - const QString backendFilter = QString::fromLatin1("KSC_%1*").arg(backend); - -- const QStringList paths = QCoreApplication::libraryPaths(); -- Q_FOREACH (const QString &path, paths) { -- const QDir dir(path + QDir::separator() + QLatin1String("/kf5/kscreen/"), -- backendFilter, -- QDir::SortFlags(QDir::QDir::NoSort), -- QDir::NoDotAndDotDot | QDir::Files); -- const QFileInfoList finfos = dir.entryInfoList(); -- Q_FOREACH (const QFileInfo &finfo, finfos) { -- // Skip "Fake" backend unless explicitly specified via KSCREEN_BACKEND -- if (backend.isEmpty() && finfo.fileName().contains(QLatin1String("KSC_Fake"))) { -- continue; -- } -+ QString path = QFile::decodeName(CMAKE_INSTALL_PREFIX "/" PLUGIN_INSTALL_DIR "/"); - -- // When on X11, skip the QScreen backend, instead use the XRandR backend, -- // if not specified in KSCREEN_BACKEND -- if (backend.isEmpty() && -- finfo.fileName().contains(QLatin1String("KSC_QScreen")) && -- QX11Info::isPlatformX11()) { -- continue; -- } -+ const QDir dir(path + QDir::separator() + QLatin1String("/kf5/kscreen/"), -+ backendFilter, -+ QDir::SortFlags(QDir::QDir::NoSort), -+ QDir::NoDotAndDotDot | QDir::Files); -+ const QFileInfoList finfos = dir.entryInfoList(); -+ Q_FOREACH (const QFileInfo &finfo, finfos) { -+ // Skip "Fake" backend unless explicitly specified via KSCREEN_BACKEND -+ if (backend.isEmpty() && finfo.fileName().contains(QLatin1String("KSC_Fake"))) { -+ continue; -+ } - -- // When not on X11, skip the XRandR backend, and fall back to QSCreen -- // if not specified in KSCREEN_BACKEND -- if (backend.isEmpty() && -- finfo.fileName().contains(QLatin1String("KSC_XRandR")) && -- !QX11Info::isPlatformX11()) { -- continue; -- } -+ // When on X11, skip the QScreen backend, instead use the XRandR backend, -+ // if not specified in KSCREEN_BACKEND -+ if (backend.isEmpty() && -+ finfo.fileName().contains(QLatin1String("KSC_QScreen")) && -+ QX11Info::isPlatformX11()) { -+ continue; -+ } -+ -+ // When not on X11, skip the XRandR backend, and fall back to QSCreen -+ // if not specified in KSCREEN_BACKEND -+ if (backend.isEmpty() && -+ finfo.fileName().contains(QLatin1String("KSC_XRandR")) && -+ !QX11Info::isPlatformX11()) { -+ continue; -+ } - -- QPluginLoader loader(finfo.filePath()); -- loader.load(); -- QObject *instance = loader.instance(); -- if (!instance) { -+ QPluginLoader loader(finfo.filePath()); -+ loader.load(); -+ QObject *instance = loader.instance(); -+ if (!instance) { -+ loader.unload(); -+ continue; -+ } -+ -+ s_backend = qobject_cast< AbstractBackend* >(instance); -+ if (s_backend) { -+ if (!s_backend->isValid()) { -+ qCDebug(KSCREEN) << "Skipping" << s_backend->name() << "backend"; -+ delete s_backend; -+ s_backend = 0; - loader.unload(); - continue; - } -- -- s_backend = qobject_cast< AbstractBackend* >(instance); -- if (s_backend) { -- if (!s_backend->isValid()) { -- qCDebug(KSCREEN) << "Skipping" << s_backend->name() << "backend"; -- delete s_backend; -- s_backend = 0; -- loader.unload(); -- continue; -- } -- qCDebug(KSCREEN) << "Loading" << s_backend->name() << "backend"; -- return true; -- } -+ qCDebug(KSCREEN) << "Loading" << s_backend->name() << "backend"; -+ return true; - } - } - -diff --git a/src/config-libkscreen.h.cmake b/src/config-libkscreen.h.cmake -new file mode 100644 -index 0000000..a99f3d1 ---- /dev/null -+++ b/src/config-libkscreen.h.cmake -@@ -0,0 +1,2 @@ -+#define CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}" -+#define PLUGIN_INSTALL_DIR "${PLUGIN_INSTALL_DIR}" diff --git a/pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index fbbb11ae7556b09da52045d94aa1f3820104d57d..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/libksysguard/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46164a50de4102d02ae9d1d480acdd4b12303db8 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 07:07:22 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - processui/scripting.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/processui/scripting.cpp b/processui/scripting.cpp -index efed8ff..841761a 100644 ---- a/processui/scripting.cpp -+++ b/processui/scripting.cpp -@@ -167,7 +167,7 @@ void Scripting::loadContextMenu() { - QStringList scripts; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "ksysguard/scripts/", QStandardPaths::LocateDirectory); - Q_FOREACH (const QString& dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - scripts.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/libksysguard/default.nix b/pkgs/desktops/plasma-5.4/libksysguard/default.nix deleted file mode 100644 index 373221b2b3052ed879906c89e3d65ff05981a737..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/libksysguard/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kauth, kcompletion -, kconfigwidgets, kcoreaddons, kservice, kwidgetsaddons -, kwindowsystem, plasma-framework, qtscript, qtwebkit, qtx11extras -, kconfig, ki18n, kiconthemes -}: - -plasmaPackage { - name = "libksysguard"; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kservice - kwidgetsaddons qtscript qtwebkit - ]; - propagatedBuildInputs = [ - kauth kconfig ki18n kiconthemes kwindowsystem plasma-framework - qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/milou.nix b/pkgs/desktops/plasma-5.4/milou.nix deleted file mode 100644 index 760de2d79ab4e4e3b0f4b241aa3c35d5e88c6f84..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/milou.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, qtscript, qtdeclarative -, kcoreaddons, ki18n, kdeclarative, kservice, plasma-framework -, krunner -}: - -plasmaPackage { - name = "milou"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - qtscript kcoreaddons kservice - ]; - propagatedBuildInputs = [ - kdeclarative ki18n krunner plasma-framework qtdeclarative - ]; -} diff --git a/pkgs/desktops/plasma-5.4/oxygen-fonts.nix b/pkgs/desktops/plasma-5.4/oxygen-fonts.nix deleted file mode 100644 index b1ccb6f5ffd5092df6b0e0dabb24bab1c0466e2b..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/oxygen-fonts.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, fontforge -}: - -plasmaPackage { - name = "oxygen-fonts"; - nativeBuildInputs = [ - extra-cmake-modules - fontforge - ]; -} diff --git a/pkgs/desktops/plasma-5.4/oxygen.nix b/pkgs/desktops/plasma-5.4/oxygen.nix deleted file mode 100644 index 02918100408ac93dd3ddf1208a5733338acc5f55..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/oxygen.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig -, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion -, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras -}: - -plasmaPackage { - name = "oxygen"; - nativeBuildInputs = [ - extra-cmake-modules makeQtWrapper - ]; - buildInputs = [ - kcmutils kconfig kdecoration kguiaddons kwidgetsaddons - kservice kcompletion - ]; - propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/oxygen-demo5" - wrapQtProgram "$out/bin/oxygen-settings5" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch b/pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch deleted file mode 100644 index a0b1f880ba8516db5f9ffc64f5f506f677a448ca..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/0001-hwclock.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 618d86f35b83ee9e57da12be9d0866e34e487b88 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 28 Aug 2015 10:16:38 -0500 -Subject: [PATCH 1/3] hwclock - ---- - kcms/dateandtime/helper.cpp | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp -index cec5ab8..fc4a6b9 100644 ---- a/kcms/dateandtime/helper.cpp -+++ b/kcms/dateandtime/helper.cpp -@@ -48,10 +48,6 @@ - #include - #endif - --// We cannot rely on the $PATH environment variable, because D-Bus activation --// clears it. So we have to use a reasonable default. --static const QString exePath = QLatin1String("/usr/sbin:/usr/bin:/sbin:/bin"); -- - int ClockHelper::ntp( const QStringList& ntpServers, bool ntpEnabled ) - { - int ret = 0; -@@ -227,7 +223,7 @@ int ClockHelper::tzreset() - - void ClockHelper::toHwclock() - { -- QString hwclock = KStandardDirs::findExe("hwclock", exePath); -+ QString hwclock = "@hwclock@"; - if (!hwclock.isEmpty()) { - KProcess::execute(hwclock, QStringList() << "--systohc"); - } --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch b/pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch deleted file mode 100644 index 900c4d095e8781be1ff313f1dc4acce5af05ff87..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/0002-zoneinfo.patch +++ /dev/null @@ -1,30 +0,0 @@ -From decdc77a7e89b6f1bb3d49268b08a43daf4a7147 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 28 Aug 2015 10:16:53 -0500 -Subject: [PATCH 2/3] zoneinfo - ---- - kcms/dateandtime/helper.cpp | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp -index fc4a6b9..7b64d05 100644 ---- a/kcms/dateandtime/helper.cpp -+++ b/kcms/dateandtime/helper.cpp -@@ -181,7 +181,12 @@ int ClockHelper::tz( const QString& selectedzone ) - - val = selectedzone; - #else -- QString tz = "/usr/share/zoneinfo/" + selectedzone; -+ // NixOS-specific path -+ QString tz = "/etc/zoneinfo/" + selectedzone; -+ if (!QFile::exists(tz)) { -+ // Standard Linux path -+ tz = "/usr/share/zoneinfo/" + selectedzone; -+ } - - if (QFile::exists(tz)) { // make sure the new TZ really exists - QFile::remove("/etc/localtime"); --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch b/pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch deleted file mode 100644 index 6b143bd2eb0489234717e84dbcdd0854f9983afc..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/0003-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 4231d70ec08d9bbb367b222d9ef04454c1dc7328 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:45:36 -0500 -Subject: [PATCH 3/3] qt-5.5 QML import paths - ---- - applets/pager/package/contents/ui/main.qml | 2 +- - containments/desktop/package/contents/ui/FolderView.qml | 2 +- - containments/desktop/package/contents/ui/main.qml | 2 +- - containments/panel/contents/ui/main.qml | 2 +- - 4 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/applets/pager/package/contents/ui/main.qml b/applets/pager/package/contents/ui/main.qml -index 0c367c6..c9a82be 100644 ---- a/applets/pager/package/contents/ui/main.qml -+++ b/applets/pager/package/contents/ui/main.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddonsComponents - import org.kde.draganddrop 2.0 - import org.kde.plasma.private.pager 2.0 --import "utils.js" as Utils -+import "../code/utils.js" as Utils - - MouseArea { - id: root -diff --git a/containments/desktop/package/contents/ui/FolderView.qml b/containments/desktop/package/contents/ui/FolderView.qml -index 578ec87..04e088c 100644 ---- a/containments/desktop/package/contents/ui/FolderView.qml -+++ b/containments/desktop/package/contents/ui/FolderView.qml -@@ -27,7 +27,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 - - import org.kde.private.desktopcontainment.folder 0.1 as Folder --import "FolderTools.js" as FolderTools -+import "../code/FolderTools.js" as FolderTools - - Item { - id: main -diff --git a/containments/desktop/package/contents/ui/main.qml b/containments/desktop/package/contents/ui/main.qml -index 8c42706..fc74433 100644 ---- a/containments/desktop/package/contents/ui/main.qml -+++ b/containments/desktop/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.draganddrop 2.0 as DragDrop - - import org.kde.private.desktopcontainment.desktop 0.1 as Desktop - --import "LayoutManager.js" as LayoutManager -+import "../code/LayoutManager.js" as LayoutManager - - DragDrop.DropArea { - id: root -diff --git a/containments/panel/contents/ui/main.qml b/containments/panel/contents/ui/main.qml -index 6a6f364..edba48e 100644 ---- a/containments/panel/contents/ui/main.qml -+++ b/containments/panel/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.kquickcontrolsaddons 2.0 - import org.kde.draganddrop 2.0 as DragDrop - --import "LayoutManager.js" as LayoutManager -+import "../code/LayoutManager.js" as LayoutManager - - DragDrop.DropArea { - id: root --- -2.5.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-desktop/default.nix b/pkgs/desktops/plasma-5.4/plasma-desktop/default.nix deleted file mode 100644 index 6aae2e20aaae5fb57f4ba12e33e12f4b2e90a468..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-desktop/default.nix +++ /dev/null @@ -1,59 +0,0 @@ -{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils -, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons -, kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications -, knotifyconfig, kpeople, krunner, kwallet, kwin, phonon -, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras -, qtsvg, libXcursor, libXft, libxkbfile, xf86inputevdev -, xf86inputsynaptics, xinput, xkeyboard_config, xorgserver -, libcanberra_kde, libpulseaudio, makeQtWrapper, utillinux -, qtquick1, qtquickcontrols -}: - -plasmaPackage rec { - name = "plasma-desktop"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - attica boost fontconfig kcmutils kdbusaddons kded kitemmodels - knewstuff knotifications knotifyconfig kwallet libcanberra_kde - libXcursor libpulseaudio libXft libxkbfile phonon - qtsvg xf86inputevdev xf86inputsynaptics - xkeyboard_config xinput - ]; - propagatedBuildInputs = [ - baloo kactivities kauth kdeclarative kdelibs4support kemoticons - kglobalaccel ki18n kpeople krunner kwin plasma-framework - plasma-workspace qtdeclarative qtquick1 qtquickcontrols - qtx11extras - ]; - # All propagatedBuildInputs should be present in the profile because - # wrappers cannot be used here. - propagatedUserEnvPkgs = propagatedBuildInputs; - patches = [ - (substituteAll { - src = ./0001-hwclock.patch; - hwclock = "${utillinux}/sbin/hwclock"; - }) - ./0002-zoneinfo.patch - ./0003-qt-5.5-QML-import-paths.patch - ]; - NIX_CFLAGS_COMPILE = [ "-I${xorgserver}/include/xorg" ]; - cmakeFlags = [ - "-DEvdev_INCLUDE_DIRS=${xf86inputevdev}/include/xorg" - "-DSynaptics_INCLUDE_DIRS=${xf86inputsynaptics}/include/xorg" - ]; - postInstall = '' - wrapQtProgram "$out/bin/kaccess" - wrapQtProgram "$out/bin/solid-action-desktop-gen" - wrapQtProgram "$out/bin/knetattach" - wrapQtProgram "$out/bin/krdb" - wrapQtProgram "$out/bin/kapplymousetheme" - wrapQtProgram "$out/bin/kfontinst" - wrapQtProgram "$out/bin/kcm-touchpad-list-devices" - wrapQtProgram "$out/bin/kfontview" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix b/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix deleted file mode 100644 index afd8a18bbbd6a3d7ec224bc4f62b3070fc1ea47e..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig -, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice -, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia -, taglib -}: - -plasmaPackage rec { - name = "plasma-mediacenter"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kconfig kcoreaddons kguiaddons kservice - qtdeclarative qtmultimedia taglib - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kfilemetadata ki18n kio - plasma-framework - ]; - # All propagatedBuildInputs should be present in the profile because - # wrappers cannot be used here. - propagatedUserEnvPkgs = propagatedBuildInputs; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch deleted file mode 100644 index 79b5cfb437e265c78fd7fea28f59e45c97801fe6..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-nm/0001-mobile-broadband-provider-info-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From faf13c97ff1192a201843b9d52f4002dbd9022af Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 25 Oct 2015 09:09:27 -0500 -Subject: [PATCH] mobile-broadband-provider-info path - ---- - libs/editor/mobileproviders.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libs/editor/mobileproviders.cpp b/libs/editor/mobileproviders.cpp -index 568cb34..98a5992 100644 ---- a/libs/editor/mobileproviders.cpp -+++ b/libs/editor/mobileproviders.cpp -@@ -26,7 +26,7 @@ - - #include - --const QString MobileProviders::ProvidersFile = "/usr/share/mobile-broadband-provider-info/serviceproviders.xml"; -+const QString MobileProviders::ProvidersFile = "@mobile_broadband_provider_info@/share/mobile-broadband-provider-info/serviceproviders.xml"; - - bool localeAwareCompare(const QString & one, const QString & two) { - return one.localeAwareCompare(two) < 0; --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-nm/default.nix b/pkgs/desktops/plasma-5.4/plasma-nm/default.nix deleted file mode 100644 index 7e229d5805248043f84af062c625ffbc38ec8f17..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-nm/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, kcompletion, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdelibs4support, ki18n, kiconthemes, kinit, kio, kitemviews -, knotifications, kservice, kwallet, kwidgetsaddons, kwindowsystem -, kxmlgui, makeQtWrapper, mobile_broadband_provider_info -, modemmanager-qt, networkmanager-qt, openconnect, plasma-framework -, qtdeclarative, solid -}: - -plasmaPackage { - name = "plasma-nm"; - patches = [ - (substituteAll { - src = ./0001-mobile-broadband-provider-info-path.patch; - inherit mobile_broadband_provider_info; - }) - ]; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes - kinit kitemviews knotifications kservice kwallet kwidgetsaddons - kxmlgui mobile_broadband_provider_info modemmanager-qt - networkmanager-qt openconnect solid - ]; - propagatedBuildInputs = [ - kdeclarative kdelibs4support ki18n kio kwindowsystem plasma-framework - qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kde5-nm-connection-editor" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-pa.nix b/pkgs/desktops/plasma-5.4/plasma-pa.nix deleted file mode 100644 index aef6bfeb679995a6bb80508a52fb14cf9836c2ef..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-pa.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, glib, kconfigwidgets -, kcoreaddons, kdeclarative, kglobalaccel, ki18n, libpulseaudio -, plasma-framework -}: - -plasmaPackage { - name = "plasma-pa"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - glib kconfigwidgets kcoreaddons libpulseaudio - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n plasma-framework - ]; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix b/pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix deleted file mode 100644 index bc87abcad153fbc1eb40abc0367ba2c35ae09504..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace-wallpapers.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -}: - -plasmaPackage { - name = "plasma-workspace-wallpapers"; - nativeBuildInputs = [ - extra-cmake-modules - ]; -} diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch b/pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch deleted file mode 100644 index 443d7ec90794700daa6c6a446aaab3654cc7b2dd..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace/0001-startkde-NixOS-patches.patch +++ /dev/null @@ -1,401 +0,0 @@ -From 35efc2ce92ed698abb21a79aa6e6670e844ea776 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Thu, 27 Aug 2015 20:36:39 -0500 -Subject: [PATCH 1/2] startkde NixOS patches - ---- - startkde/startkde.cmake | 217 ++++++++++++++++++++---------------------------- - 1 file changed, 88 insertions(+), 129 deletions(-) - -diff --git a/startkde/startkde.cmake b/startkde/startkde.cmake -index 2c4c315..7733721 100644 ---- a/startkde/startkde.cmake -+++ b/startkde/startkde.cmake -@@ -1,8 +1,31 @@ --#!/bin/sh -+#!@bash@/bin/bash - # - # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) - # - -+set -x -+ -+# The KDE icon cache is supposed to update itself -+# automatically, but it uses the timestamp on the icon -+# theme directory as a trigger. Since in Nix the -+# timestamp is always the same, this doesn't work. So as -+# a workaround, nuke the icon cache on login. This isn't -+# perfect, since it may require logging out after -+# installing new applications to update the cache. -+# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html -+rm -fv $HOME/.cache/icon-cache.kcache -+ -+# Qt writes a weird ‘libraryPath’ line to -+# ~/.config/Trolltech.conf that causes the KDE plugin -+# paths of previous KDE invocations to be searched. -+# Obviously using mismatching KDE libraries is potentially -+# disastrous, so here we nuke references to the Nix store -+# in Trolltech.conf. A better solution would be to stop -+# Qt from doing this wackiness in the first place. -+if [ -e $HOME/.config/Trolltech.conf ]; then -+ @gnused@/bin/sed -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf -+fi -+ - if test "x$1" = x--failsafe; then - KDE_FAILSAFE=1 # General failsafe flag - KWIN_COMPOSE=N # Disable KWin's compositing -@@ -16,29 +39,16 @@ trap 'echo GOT SIGHUP' HUP - # we have to unset this for Darwin since it will screw up KDE's dynamic-loading - unset DYLD_FORCE_FLAT_NAMESPACE - --# in case we have been started with full pathname spec without being in PATH --bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` --if [ -n "$bindir" ]; then -- qbindir=`qtpaths --binaries-dir` -- qdbus=$qbindir/qdbus -- case $PATH in -- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; -- *) PATH=$bindir:$PATH; export PATH;; -- esac --else -- qdbus=qdbus --fi -- - # Check if a KDE session already is running and whether it's possible to connect to X --kcheckrunning -+@out@/bin/kcheckrunning - kcheckrunning_result=$? - if test $kcheckrunning_result -eq 0 ; then -- echo "KDE seems to be already running on this display." -- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null -+ echo "KDE seems to be already running on this display." -+ @xmessage@/bin/xmessage -geometry 500x100 "KDE seems to be already running on this display." - exit 1 - elif test $kcheckrunning_result -eq 2 ; then - echo "\$DISPLAY is not set or cannot connect to the X server." -- exit 1 -+ exit 1 - fi - - # Boot sequence: -@@ -56,13 +66,8 @@ fi - # * Then ksmserver is started which takes control of the rest of the startup sequence - - # We need to create config folder so we can write startupconfigkeys --if [ ${XDG_CONFIG_HOME} ]; then -- configDir=$XDG_CONFIG_HOME; --else -- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html --fi -- --mkdir -p $configDir -+configDir=$(@qttools@/bin/qtpaths --writable-path GenericConfigLocation) -+mkdir -p "$configDir" - - #This is basically setting defaults so we can use them with kstartupconfig5 - cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then -+ : # ok -+else -+ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -+ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -+ exit 1 -+fi -+ - ksplash_pid= - if test -z "$dl"; then - # the splashscreen and progress indicator - case "$ksplashrc_ksplash_engine" in - KSplashQML) -- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid` -+ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid` - ;; - None) - ;; -@@ -200,8 +189,7 @@ fi - # For anything else (that doesn't set env vars, or that needs a window manager), - # better use the Autostart folder. - --# TODO: Use GenericConfigLocation once we depend on Qt 5.4 --scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` -+scriptpath=$(@qttools@/bin/qtpaths --paths GenericConfigLocation | tr ':' '\n' | @gnused@/bin/sed 's,$,/plasma-workspace,g') - - # Add /env/ to the directory to locate the scripts to be sourced - for prefix in `echo $scriptpath`; do -@@ -231,7 +219,7 @@ usr_odir=$HOME/.fonts/kde-override - usr_fdir=$HOME/.fonts - - if test -n "$KDEDIRS"; then -- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` -+ kdedirs_first=`echo "$KDEDIRS" | @gnused@/bin/sed -e 's/:.*//'` - sys_odir=$kdedirs_first/share/fonts/override - sys_fdir=$kdedirs_first/share/fonts - else -@@ -244,23 +232,13 @@ fi - # add the user's dirs to the font path, as they might simply have been made - # read-only by the administrator, for whatever reason. - --test -d "$sys_odir" && xset +fp "$sys_odir" --test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") --test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") --test -d "$sys_fdir" && xset fp+ "$sys_fdir" -+test -d "$sys_odir" && @xset@/bin/xset +fp "$sys_odir" -+test -d "$usr_odir" && ( @mkfontdir@/bin/mkfontdir "$usr_odir" ; @xset@/bin/xset +fp "$usr_odir" ) -+test -d "$usr_fdir" && ( @mkfontdir@/bin/mkfontdir "$usr_fdir" ; @xset@/bin/xset fp+ "$usr_fdir" ) -+test -d "$sys_fdir" && @xset@/bin/xset fp+ "$sys_fdir" - - # Ask X11 to rebuild its font list. --xset fp rehash -- --# Set a left cursor instead of the standard X11 "X" cursor, since I've heard --# from some users that they're confused and don't know what to do. This is --# especially necessary on slow machines, where starting KDE takes one or two --# minutes until anything appears on the screen. --# --# If the user has overwritten fonts, the cursor font may be different now --# so don't move this up. --# --xsetroot -cursor_name left_ptr -+@xset@/bin/xset fp rehash - - # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap - if test -n "$GS_LIB" ; then -@@ -273,30 +251,6 @@ fi - - echo 'startkde: Starting up...' 1>&2 - --# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all. --# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend --# to set it to a list of paths *not* including the KDE prefix if it's not /usr or --# /usr/local. --if test -z "$XDG_DATA_DIRS"; then -- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share" --fi --export XDG_DATA_DIRS -- --# Make sure that D-Bus is running --# D-Bus autolaunch is broken --if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then -- eval `dbus-launch --sh-syntax --exit-with-session` --fi --if $qdbus >/dev/null 2>/dev/null; then -- : # ok --else -- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -- exit 1 --fi -- -- - # Mark that full KDE session is running (e.g. Konqueror preloading works only - # with full KDE running). The KDE_FULL_SESSION property can be detected by - # any X client connected to the same X session, even if not launched -@@ -321,11 +275,11 @@ fi - # - KDE_FULL_SESSION=true - export KDE_FULL_SESSION --xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true -+@xprop@/bin/xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true - - KDE_SESSION_VERSION=5 - export KDE_SESSION_VERSION --xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 -+@xprop@/bin/xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 - - KDE_SESSION_UID=`id -ru` - export KDE_SESSION_UID -@@ -335,11 +289,11 @@ export XDG_CURRENT_DESKTOP - - # At this point all the environment is ready, let's send it to kwalletd if running - if test -n "$PAM_KWALLET_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN -+ env | @socat@/bin/socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN - fi - # ...and also to kwalletd5 - if test -n "$PAM_KWALLET5_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN -+ env | @socat@/bin/socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN - fi - - # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -348,21 +302,26 @@ if test $? -ne 0; then - # Startup error - echo 'startkde: Could not sync environment to dbus.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not sync environment to dbus." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not sync environment to dbus." - exit 1 - fi - - # We set LD_BIND_NOW to increase the efficiency of kdeinit. - # kdeinit unsets this variable before loading applications. --LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup -+LD_BIND_NOW=true @kinit@/lib/libexec/kf5/start_kdeinit_wrapper --kded +kcminit_startup - if test $? -ne 0; then - # Startup error - echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." - exit 1 - fi - -+# (NixOS) We run kbuildsycoca5 before starting the user session because things -+# may be missing or moved if they have run nixos-rebuild and it may not be -+# possible for them to start Konsole to run it manually! -+@kservice@/bin/kbuildsycoca5 -+ - # finally, give the session control to the session manager - # see kdebase/ksmserver for the description of the rest of the startup sequence - # if the KDEWM environment variable has been set, then it will be used as KDE's -@@ -378,27 +337,27 @@ test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" - # lock now and do the rest of the KDE startup underneath the locker. - KSMSERVEROPTIONS="" - test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" --kwrapper5 ksmserver $KDEWM $KSMSERVEROPTIONS -+@kinit@/bin/kwrapper5 ksmserver $KDEWM $KSMSERVEROPTIONS - if test $? -eq 255; then - # Startup error - echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." - fi - --wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` -+wait_drkonqi=`@kconfig@/bin/kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` - - if test x"$wait_drkonqi"x = x"true"x ; then - # wait for remaining drkonqi instances with timeout (in seconds) -- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` -+ wait_drkonqi_timeout=`@kconfig@/bin/kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` - wait_drkonqi_counter=0 -- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do -+ while @qttools@/bin/qdbus | @gnugrep@/bin/grep "^[^w]*org.kde.drkonqi" > /dev/null ; do - sleep 5 - wait_drkonqi_counter=$((wait_drkonqi_counter+5)) - if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then - # ask remaining drkonqis to die in a graceful way -- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do -- $qdbus "$address" "/MainApplication" "quit" -+ @qttools@/bin/qdbus | @gnugrep@/bin/grep 'org.kde.drkonqi-' | while read address ; do -+ @qttools@/bin/qdbus "$address" "/MainApplication" "quit" - done - break - fi -@@ -410,21 +369,21 @@ echo 'startkde: Shutting down...' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - - # Clean up --kdeinit5_shutdown -+@kinit@/bin/kdeinit5_shutdown - - echo 'startkde: Running shutdown scripts...' 1>&2 - - # Run scripts found in /plasma-workspace/shutdown - for prefix in `echo "$scriptpath"`; do -- for file in `ls "$prefix"/shutdown 2> /dev/null | egrep -v '(~|\.bak)$'`; do -+ for file in `ls "$prefix"/shutdown 2> /dev/null | @gnugrep@/bin/egrep -v '(~|\.bak)$'`; do - test -x "$prefix/shutdown/$file" && "$prefix/shutdown/$file" - done - done - - unset KDE_FULL_SESSION --xprop -root -remove KDE_FULL_SESSION -+@xprop@/bin/xprop -root -remove KDE_FULL_SESSION - unset KDE_SESSION_VERSION --xprop -root -remove KDE_SESSION_VERSION -+@xprop@/bin/xprop -root -remove KDE_SESSION_VERSION - unset KDE_SESSION_UID - - echo 'startkde: Done.' 1>&2 --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch b/pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch deleted file mode 100644 index 7614a2add9d7dfd6d9c1ea8be69d5645207af452..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace/0002-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,123 +0,0 @@ -From 033d3560d26ceabbd6da6310d326fec7a473df82 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:55:36 -0500 -Subject: [PATCH 2/2] qt-5.5 QML import paths - ---- - applets/analog-clock/contents/ui/analogclock.qml | 2 +- - applets/batterymonitor/package/contents/ui/BatteryItem.qml | 2 +- - applets/batterymonitor/package/contents/ui/CompactRepresentation.qml | 2 +- - applets/batterymonitor/package/contents/ui/PopupDialog.qml | 2 +- - applets/batterymonitor/package/contents/ui/batterymonitor.qml | 2 +- - applets/lock_logout/contents/ui/lockout.qml | 2 +- - applets/notifications/package/contents/ui/main.qml | 2 +- - applets/systemtray/package/contents/ui/main.qml | 2 +- - 8 files changed, 8 insertions(+), 8 deletions(-) - -diff --git a/applets/analog-clock/contents/ui/analogclock.qml b/applets/analog-clock/contents/ui/analogclock.qml -index edb3af9..7eb839d 100644 ---- a/applets/analog-clock/contents/ui/analogclock.qml -+++ b/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as PlasmaCalendar - import QtQuick.Layouts 1.1 - - import org.kde.plasma.core 2.0 as PlasmaCore --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: analogclock -diff --git a/applets/batterymonitor/package/contents/ui/BatteryItem.qml b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -index 8d43797..3322369 100644 ---- a/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.plasma.workspace.components 2.0 - import org.kde.kcoreaddons 1.0 as KCoreAddons --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batteryItem -diff --git a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -index b4059cb..ae8eeaf 100755 ---- a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.workspace.components 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - MouseArea { - id: root -diff --git a/applets/batterymonitor/package/contents/ui/PopupDialog.qml b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -index d4952c6..2b6586d 100644 ---- a/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - FocusScope { - id: dialog -diff --git a/applets/batterymonitor/package/contents/ui/batterymonitor.qml b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -index a086581..6e1e8be 100755 ---- a/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.kcoreaddons 1.0 as KCoreAddons - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batterymonitor -diff --git a/applets/lock_logout/contents/ui/lockout.qml b/applets/lock_logout/contents/ui/lockout.qml -index d243796..86475df 100644 ---- a/applets/lock_logout/contents/ui/lockout.qml -+++ b/applets/lock_logout/contents/ui/lockout.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 - import org.kde.kquickcontrolsaddons 2.0 --import "data.js" as Data -+import "../code/data.js" as Data - - Flow { - id: lockout -diff --git a/applets/notifications/package/contents/ui/main.qml b/applets/notifications/package/contents/ui/main.qml -index 2871cdb..3f50856 100644 ---- a/applets/notifications/package/contents/ui/main.qml -+++ b/applets/notifications/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.plasma.private.notifications 1.0 - --import "uiproperties.js" as UiProperties -+import "../code/uiproperties.js" as UiProperties - - MouseEventListener { - id: notificationsApplet -diff --git a/applets/systemtray/package/contents/ui/main.qml b/applets/systemtray/package/contents/ui/main.qml -index 2e26455..864c9c5 100644 ---- a/applets/systemtray/package/contents/ui/main.qml -+++ b/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root --- -2.6.2 - diff --git a/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix b/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix deleted file mode 100644 index 309c3593a7c7ab33fa6fcef43ce0251d6e4f8b1c..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix +++ /dev/null @@ -1,64 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, baloo -, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime -, kjsembed, knewstuff, knotifyconfig, kpackage, krunner -, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient -, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt -, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland -, libksysguard, bash, coreutils, gnused, gnugrep, socat, kconfig -, kinit, kservice, makeQtWrapper, qttools, dbus, mkfontdir, xmessage -, xprop, xrdb, xset, xsetroot, solid, qtquickcontrols -}: - -plasmaPackage rec { - name = "plasma-workspace"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcmutils kcrash kdbusaddons kdesu kdewebkit kjsembed knewstuff - knotifyconfig kpackage ktextwidgets kwallet kwayland kxmlrpcclient - libdbusmenu libSM libXcursor networkmanager-qt pam phonon - qtscript wayland - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kdelibs4support kglobalaccel - kidletime krunner ktexteditor kwin libkscreen libksysguard - plasma-framework qtquick1 qtquickcontrols qtx11extras solid - ]; - patches = [ - ./0001-startkde-NixOS-patches.patch - ./0002-qt-5.5-QML-import-paths.patch - ]; - - inherit bash coreutils gnused gnugrep socat; - inherit kconfig kinit kservice qttools; - inherit mkfontdir xmessage xprop xrdb xset xsetroot; - inherit (dbus) dbus-launch; - postPatch = '' - substituteAllInPlace startkde/startkde.cmake - substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ - --replace kdostartupconfig5 $out/bin/kdostartupconfig5 - ''; - postInstall = '' - wrapQtProgram "$out/bin/ksmserver" - wrapQtProgram "$out/bin/plasmawindowed" - wrapQtProgram "$out/bin/kcminit_startup" - wrapQtProgram "$out/bin/ksplashqml" - wrapQtProgram "$out/bin/kcheckrunning" - wrapQtProgram "$out/bin/systemmonitor" - wrapQtProgram "$out/bin/kstartupconfig5" - wrapQtProgram "$out/bin/startplasmacompositor" - wrapQtProgram "$out/bin/kdostartupconfig5" - wrapQtProgram "$out/bin/klipper" - wrapQtProgram "$out/bin/kuiserver5" - wrapQtProgram "$out/bin/krunner" - wrapQtProgram "$out/bin/plasmashell" - - wrapQtProgram "$out/lib/libexec/drkonqi" - wrapQtProgram "$out/lib/libexec/kscreenlocker_greet" - rm "$out/lib/libexec/startplasma" - ''; -} diff --git a/pkgs/desktops/plasma-5.4/polkit-kde-agent.nix b/pkgs/desktops/plasma-5.4/polkit-kde-agent.nix deleted file mode 100644 index 0173ec655169e80feb4220d3417cb55a391a6a38..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/polkit-kde-agent.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, ki18n -, kwindowsystem -, kdbusaddons -, kwidgetsaddons -, kcoreaddons -, kcrash -, kconfig -, kiconthemes -, knotifications -, polkitQt -}: - -plasmaPackage { - name = "polkit-kde-agent"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kdbusaddons - kwidgetsaddons - kcoreaddons - kcrash - kconfig - kiconthemes - knotifications - polkitQt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; -} diff --git a/pkgs/desktops/plasma-5.4/powerdevil.nix b/pkgs/desktops/plasma-5.4/powerdevil.nix deleted file mode 100644 index 4b57a2e0a798ffa756209e4cc24332ec0d73daaa..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/powerdevil.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities -, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n -, kidletime, kio, knotifyconfig, libkscreen, plasma-workspace -, qtx11extras, solid, udev -}: - -plasmaPackage { - name = "powerdevil"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kconfig kdbusaddons knotifyconfig solid udev - ]; - propagatedBuildInputs = [ - kactivities kauth kdelibs4support kglobalaccel ki18n kio kidletime - libkscreen plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/plasma-5.4/setup-hook.sh b/pkgs/desktops/plasma-5.4/setup-hook.sh deleted file mode 100644 index a8d9b7e0e36f430aabd90cb992534824e97842f7..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -addToSearchPath XDG_DATA_DIRS @out@/share diff --git a/pkgs/desktops/plasma-5.4/srcs.nix b/pkgs/desktops/plasma-5.4/srcs.nix deleted file mode 100644 index b60a1b2ccd84e9283a7ba0e3972cabc061d20997..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/srcs.nix +++ /dev/null @@ -1,301 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/bluedevil-5.4.3.tar.xz"; - sha256 = "04zl8sl59imxfmph8igy2xw5qbdqhqbf1f3s92zhrcqghnawyr3k"; - name = "bluedevil-5.4.3.tar.xz"; - }; - }; - breeze = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/breeze-5.4.3.tar.xz"; - sha256 = "1ylkrza65m4irvyfl3nzfsfaf3j0z3q5j5qv7lk16g4crknxb2gw"; - name = "breeze-5.4.3.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kde-cli-tools-5.4.3.tar.xz"; - sha256 = "16d7fkxvbr60h96g7faq6c7gzssb43ynac7yhpfp4i2gwx1w9q8r"; - name = "kde-cli-tools-5.4.3.tar.xz"; - }; - }; - kdecoration = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kdecoration-5.4.3.tar.xz"; - sha256 = "1m92spmq0gadcwgwhnf163kh3kzccgw2b62px1v5krk8hlw6q19q"; - name = "kdecoration-5.4.3.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kde-gtk-config-5.4.3.tar.xz"; - sha256 = "0apfvcmwzp5g02kx0dvkywrfb7v9gbmlnmyga2jra027zf61jf98"; - name = "kde-gtk-config-5.4.3.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kdeplasma-addons-5.4.3.tar.xz"; - sha256 = "0wyqwrlhm9k2wscbw372mk2v7207jappq59jhzxx223glvz2qrxp"; - name = "kdeplasma-addons-5.4.3.tar.xz"; - }; - }; - kgamma5 = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kgamma5-5.4.3.tar.xz"; - sha256 = "0l6bk008w8m3wiqvk4pdw9s7iln9fbkbi5xl3b8rf846knr478gr"; - name = "kgamma5-5.4.3.tar.xz"; - }; - }; - khelpcenter = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/khelpcenter-5.4.3.tar.xz"; - sha256 = "0kf68maqcm2ym62d6r7v6sw9v91qxzdg53l0hk9h6p7sycs0jqq2"; - name = "khelpcenter-5.4.3.tar.xz"; - }; - }; - khotkeys = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/khotkeys-5.4.3.tar.xz"; - sha256 = "094nsrmnja83rim1cxa5p4rfxx4bdwwsv6b04rvg0l55jvw9wp29"; - name = "khotkeys-5.4.3.tar.xz"; - }; - }; - kinfocenter = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kinfocenter-5.4.3.tar.xz"; - sha256 = "1v6y1div8fhyn93ypnz3a7q6d1mzyabav2bq4rn5rg5hldizjns7"; - name = "kinfocenter-5.4.3.tar.xz"; - }; - }; - kmenuedit = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kmenuedit-5.4.3.tar.xz"; - sha256 = "0zpwvg0xw04jg5kxv9kdmlf6pg1yp6ibzafl8q3ah8ca5n92gb9n"; - name = "kmenuedit-5.4.3.tar.xz"; - }; - }; - kscreen = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kscreen-5.4.3.tar.xz"; - sha256 = "01ba4qqf5vlmsgpf3raq7dgwxvdcm4inc7v03b3z4l7980wa6nxr"; - name = "kscreen-5.4.3.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/ksshaskpass-5.4.3.tar.xz"; - sha256 = "18r7a49i0rlijjz02h2k2wri3bkhjvzl5as0nv55gkg8b1g05dky"; - name = "ksshaskpass-5.4.3.tar.xz"; - }; - }; - ksysguard = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/ksysguard-5.4.3.tar.xz"; - sha256 = "1lgbvabxfzyl9x1nsmr6nifh24jxnvlknigfrzfcnryibbvk6mlk"; - name = "ksysguard-5.4.3.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwallet-pam-5.4.3.tar.xz"; - sha256 = "0m5yz8c6alaw0rkc0dd9cp7jijqmpdmqg4qbc3i3pp5rz3hiyp51"; - name = "kwallet-pam-5.4.3.tar.xz"; - }; - }; - kwayland = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwayland-5.4.3.tar.xz"; - sha256 = "026jgwyvkfb3zdrama2fi046zxg7v3khvb6sxl1krj4idiiyz1c0"; - name = "kwayland-5.4.3.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwayland-integration-5.4.3.tar.xz"; - sha256 = "10acnrv7m12gwd0mccp9j9a47sjl29xrrfwlpqiqh9hcw4vn7mqp"; - name = "kwayland-integration-5.4.3.tar.xz"; - }; - }; - kwin = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwin-5.4.3.tar.xz"; - sha256 = "0rn359b31hpwqarsw3018r1j7vaavwwxpnnhy29ixsdybmrl4j5b"; - name = "kwin-5.4.3.tar.xz"; - }; - }; - kwrited = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/kwrited-5.4.3.tar.xz"; - sha256 = "0irnhvsz6zssq3yb7lf0qy0qimydg78y1ghakpmry8632xgmr0yk"; - name = "kwrited-5.4.3.tar.xz"; - }; - }; - libkscreen = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/libkscreen-5.4.3.tar.xz"; - sha256 = "0xa9g6kvvxn2q3fv0217dk3j4dgbd0mhy8hgrvblpp0fw721faqx"; - name = "libkscreen-5.4.3.tar.xz"; - }; - }; - libksysguard = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/libksysguard-5.4.3.tar.xz"; - sha256 = "18fndkj2bzbwrbixrsq27x4ar379vlsplr3nw766maw31nv5in6i"; - name = "libksysguard-5.4.3.tar.xz"; - }; - }; - milou = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/milou-5.4.3.tar.xz"; - sha256 = "0xy6h1h1ws47rqx5hcn3916xwf49nywwmq32161jap233347yj71"; - name = "milou-5.4.3.tar.xz"; - }; - }; - muon = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/muon-5.4.3.tar.xz"; - sha256 = "011l36ayl0xhap5d7cmkbf4vki8516r594dhxdpfm0ma0rnz4xrl"; - name = "muon-5.4.3.tar.xz"; - }; - }; - oxygen = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/oxygen-5.4.3.tar.xz"; - sha256 = "1av665s2gq84y925qqfhc5bi7wm17vm7p4n10kigsnn5ywylh405"; - name = "oxygen-5.4.3.tar.xz"; - }; - }; - oxygen-fonts = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz"; - sha256 = "13430yajk1i2l9lz95ry9xc1fvzpvfvdp6m9jikb2g55x606abx0"; - name = "oxygen-fonts-5.4.3.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-desktop-5.4.3.tar.xz"; - sha256 = "0hy08ip6cvcz2s3w1wkqjxdydmmfj5mcqv85qbawsrkix0d79694"; - name = "plasma-desktop-5.4.3.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-mediacenter-5.4.3.tar.xz"; - sha256 = "0k85h93yxqf9ccw620r8wk38gzd8nmpmaxsvwx2rssgnn35f04va"; - name = "plasma-mediacenter-5.4.3.tar.xz"; - }; - }; - plasma-nm = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-nm-5.4.3.tar.xz"; - sha256 = "1wlhzhn7sz26b0ibvwrxbp4pwajvnpj6m37md9bdls3872yhql5r"; - name = "plasma-nm-5.4.3.tar.xz"; - }; - }; - plasma-pa = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-pa-5.4.3.tar.xz"; - sha256 = "16ydbvvpwrnh0ik005gdpvmbn38a1k0bn8zvas1gwjz86rkayxr6"; - name = "plasma-pa-5.4.3.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-sdk-5.4.3.tar.xz"; - sha256 = "08d31g0364ifc5yix0617zhjyv1skrc9m6x38mx0jjk1z2ng9db8"; - name = "plasma-sdk-5.4.3.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-workspace-5.4.3.tar.xz"; - sha256 = "030xqy1s8j3h03arjc39xhw2xs9h2c328id6qgaqxk8v9qimkr5z"; - name = "plasma-workspace-5.4.3.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/plasma-workspace-wallpapers-5.4.3.tar.xz"; - sha256 = "12yb9d2b7ynfkmmcc4ciz8cnx482vn9545qrijaa403ba0jfbrhx"; - name = "plasma-workspace-wallpapers-5.4.3.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/polkit-kde-agent-1-5.4.3.tar.xz"; - sha256 = "1309wmdrxfqlv621kagwycn2s41n9zsyb56ysqmyilhnb7wq59yn"; - name = "polkit-kde-agent-1-5.4.3.tar.xz"; - }; - }; - powerdevil = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/powerdevil-5.4.3.tar.xz"; - sha256 = "1j20xgca41hqacgsridsigw7s275ad3j0khb59875722qz1y91a0"; - name = "powerdevil-5.4.3.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/sddm-kcm-5.4.3.tar.xz"; - sha256 = "1ppryl541pjwxi73q1qdcd23kmhga3ajj0j6fws6y8ag4mpg2b6k"; - name = "sddm-kcm-5.4.3.tar.xz"; - }; - }; - systemsettings = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/systemsettings-5.4.3.tar.xz"; - sha256 = "04p455rfxlsp817dqgg907szyfsd0f6ym5kaqaj2g7ys5v8id1vb"; - name = "systemsettings-5.4.3.tar.xz"; - }; - }; - user-manager = { - version = "5.4.3"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.4.3/user-manager-5.4.3.tar.xz"; - sha256 = "0vnfh5q8fgjs40frsb709r7d0py1xgr40air3zysasw25g4bjca8"; - name = "user-manager-5.4.3.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/plasma-5.4/systemsettings.nix b/pkgs/desktops/plasma-5.4/systemsettings.nix deleted file mode 100644 index a921e153dbc2d9095399961325cb299429aa0eeb..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.4/systemsettings.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kitemviews -, kcmutils, ki18n, kio, kservice, kiconthemes, kwindowsystem -, kxmlgui, kdbusaddons, kconfig, khtml, makeQtWrapper -}: - -plasmaPackage { - name = "systemsettings"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kitemviews kcmutils kservice kiconthemes kxmlgui kdbusaddons - kconfig - ]; - propagatedBuildInputs = [ khtml ki18n kio kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/systemsettings5" - ''; -} diff --git a/pkgs/desktops/plasma-5.5/default.nix b/pkgs/desktops/plasma-5.5/default.nix index 812c70c2b004b07a9c72b9277237538f16f8122d..c9fcbdd8e6a0636117463cc482624d7a9249886f 100644 --- a/pkgs/desktops/plasma-5.5/default.nix +++ b/pkgs/desktops/plasma-5.5/default.nix @@ -16,33 +16,33 @@ let srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; mirror = "mirror://kde"; - plasmaPackage = args: - let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; + packages = self: with self; { + plasmaPackage = args: + let + inherit (args) name; + sname = args.sname or name; + inherit (srcs."${sname}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; - setupHook = args.setupHook or ./setup-hook.sh; + setupHook = args.setupHook or ./setup-hook.sh; - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ttuegel ]; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ttuegel ]; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); - addPackages = self: with self; { bluedevil = callPackage ./bluedevil.nix {}; breeze-gtk = callPackage ./breeze-gtk.nix {}; breeze-qt4 = callPackage ./breeze-qt4.nix {}; @@ -81,6 +81,4 @@ let systemsettings = callPackage ./systemsettings.nix {}; }; - newScope = scope: kdeApps.newScope ({ inherit plasmaPackage; } // scope); - -in lib.makeScope newScope addPackages +in packages diff --git a/pkgs/desktops/plasma-5.5/fetchsrcs.sh b/pkgs/desktops/plasma-5.5/fetchsrcs.sh index 7ccb8e3a2e233816c0810c18f35c196c48e47c79..48ecc6ff469f877ed49e36073a583d66d0293438 100755 --- a/pkgs/desktops/plasma-5.5/fetchsrcs.sh +++ b/pkgs/desktops/plasma-5.5/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.5.0/" +RELEASE_URL="http://download.kde.org/stable/plasma/5.5.2/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch deleted file mode 100644 index fd0d596243b70f7990269d48f4d19b0b185ad3e4..0000000000000000000000000000000000000000 --- a/pkgs/desktops/plasma-5.5/plasma-workspace/0001-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,123 +0,0 @@ -From ec91088ec46358f39a0374b910cd776993c63acf Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:55:36 -0500 -Subject: [PATCH 1/2] qt-5.5 QML import paths - ---- - applets/analog-clock/contents/ui/analogclock.qml | 2 +- - applets/batterymonitor/package/contents/ui/BatteryItem.qml | 2 +- - applets/batterymonitor/package/contents/ui/CompactRepresentation.qml | 2 +- - applets/batterymonitor/package/contents/ui/PopupDialog.qml | 2 +- - applets/batterymonitor/package/contents/ui/batterymonitor.qml | 2 +- - applets/lock_logout/contents/ui/lockout.qml | 2 +- - applets/notifications/package/contents/ui/main.qml | 2 +- - applets/systemtray/package/contents/ui/main.qml | 2 +- - 8 files changed, 8 insertions(+), 8 deletions(-) - -diff --git a/applets/analog-clock/contents/ui/analogclock.qml b/applets/analog-clock/contents/ui/analogclock.qml -index edb3af9..7eb839d 100644 ---- a/applets/analog-clock/contents/ui/analogclock.qml -+++ b/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as PlasmaCalendar - import QtQuick.Layouts 1.1 - - import org.kde.plasma.core 2.0 as PlasmaCore --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: analogclock -diff --git a/applets/batterymonitor/package/contents/ui/BatteryItem.qml b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -index 8d43797..3322369 100644 ---- a/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ b/applets/batterymonitor/package/contents/ui/BatteryItem.qml -@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.plasma.workspace.components 2.0 - import org.kde.kcoreaddons 1.0 as KCoreAddons --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batteryItem -diff --git a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -index b4059cb..ae8eeaf 100755 ---- a/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ b/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.workspace.components 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - MouseArea { - id: root -diff --git a/applets/batterymonitor/package/contents/ui/PopupDialog.qml b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -index d4952c6..2b6586d 100644 ---- a/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ b/applets/batterymonitor/package/contents/ui/PopupDialog.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - FocusScope { - id: dialog -diff --git a/applets/batterymonitor/package/contents/ui/batterymonitor.qml b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -index a086581..6e1e8be 100755 ---- a/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ b/applets/batterymonitor/package/contents/ui/batterymonitor.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.kcoreaddons 1.0 as KCoreAddons - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batterymonitor -diff --git a/applets/lock_logout/contents/ui/lockout.qml b/applets/lock_logout/contents/ui/lockout.qml -index 80e7e53..0083cf0 100644 ---- a/applets/lock_logout/contents/ui/lockout.qml -+++ b/applets/lock_logout/contents/ui/lockout.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 - import org.kde.kquickcontrolsaddons 2.0 --import "data.js" as Data -+import "../code/data.js" as Data - - Flow { - id: lockout -diff --git a/applets/notifications/package/contents/ui/main.qml b/applets/notifications/package/contents/ui/main.qml -index 2871cdb..3f50856 100644 ---- a/applets/notifications/package/contents/ui/main.qml -+++ b/applets/notifications/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.plasma.private.notifications 1.0 - --import "uiproperties.js" as UiProperties -+import "../code/uiproperties.js" as UiProperties - - MouseEventListener { - id: notificationsApplet -diff --git a/applets/systemtray/package/contents/ui/main.qml b/applets/systemtray/package/contents/ui/main.qml -index 2e26455..864c9c5 100644 ---- a/applets/systemtray/package/contents/ui/main.qml -+++ b/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as PlasmaCore - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root --- -2.6.3 - diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix b/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix index 78db6e51511dfe5aa9fd0817d5ac3ab038d7156d..2d9364d446ebb6dc4aa990628c4ce6c091264b84 100644 --- a/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/default.nix @@ -1,17 +1,19 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, baloo -, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative +{ plasmaPackage, lib, copyPathsToStore +, extra-cmake-modules, kdoctools, makeQtWrapper +, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative , kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime , kjsembed, knewstuff, knotifyconfig, kpackage, krunner , ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient , libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt , pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland , libksysguard, bash, coreutils, gnused, gnugrep, socat, kconfig -, kinit, kservice, makeQtWrapper, qttools, dbus_tools, mkfontdir, xmessage +, kinit, kservice, qttools, dbus_tools, mkfontdir, xmessage , xprop, xrdb, xset, xsetroot, solid, qtquickcontrols }: plasmaPackage rec { name = "plasma-workspace"; + nativeBuildInputs = [ extra-cmake-modules kdoctools @@ -28,11 +30,8 @@ plasmaPackage rec { kidletime krunner ktexteditor kwin libkscreen libksysguard plasma-framework qtquick1 qtquickcontrols qtx11extras solid ]; - patches = [ - ./0001-qt-5.5-QML-import-paths.patch - ./0002-startkde-NixOS-patches.patch - ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); inherit bash coreutils gnused gnugrep socat; inherit kconfig kinit kservice qttools; inherit dbus_tools mkfontdir xmessage xprop xrdb xset xsetroot; @@ -41,7 +40,14 @@ plasmaPackage rec { substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ --replace kdostartupconfig5 $out/bin/kdostartupconfig5 ''; + postInstall = '' + rm "$out/bin/startplasmacompositor" + rm "$out/lib/libexec/startplasma" + rm -r "$out/share/wayland-sessions" + ''; + + postFixup = '' wrapQtProgram "$out/bin/ksmserver" wrapQtProgram "$out/bin/plasmawindowed" wrapQtProgram "$out/bin/kcminit_startup" @@ -54,11 +60,6 @@ plasmaPackage rec { wrapQtProgram "$out/bin/kuiserver5" wrapQtProgram "$out/bin/krunner" wrapQtProgram "$out/bin/plasmashell" - wrapQtProgram "$out/lib/libexec/drkonqi" - - rm "$out/bin/startplasmacompositor" - rm "$out/lib/libexec/startplasma" - rm -r "$out/share/wayland-sessions" ''; } diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch b/pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch new file mode 100644 index 0000000000000000000000000000000000000000..1d34001be597d368f25ca5a727751ee8383ffac5 --- /dev/null +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/qml-import-path.patch @@ -0,0 +1,104 @@ +Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml ++++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl + import QtQuick.Layouts 1.1 + + import org.kde.plasma.core 2.0 as PlasmaCore +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: analogclock +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.plasma.workspace.components 2.0 + import org.kde.kcoreaddons 1.0 as KCoreAddons +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batteryItem +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.workspace.components 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + MouseArea { + id: root +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + FocusScope { + id: dialog +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.kcoreaddons 1.0 as KCoreAddons + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batterymonitor +Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml ++++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 + import org.kde.kquickcontrolsaddons 2.0 +-import "data.js" as Data ++import "../code/data.js" as Data + + Flow { + id: lockout +Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas + + import org.kde.plasma.private.notifications 1.0 + +-import "uiproperties.js" as UiProperties ++import "../code/uiproperties.js" as UiProperties + + MouseEventListener { + id: notificationsApplet +Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma + // import org.kde.plasma.extras 2.0 as PlasmaExtras + + import org.kde.private.systemtray 2.0 as SystemTray +-import "Layout.js" as LayoutManager ++import "../code/Layout.js" as LayoutManager + + Item { + id: root diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/series b/pkgs/desktops/plasma-5.5/plasma-workspace/series new file mode 100644 index 0000000000000000000000000000000000000000..88b54af793e72d5b2c9f24272c54af730114863d --- /dev/null +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/series @@ -0,0 +1,2 @@ +startkde.patch +qml-import-path.patch diff --git a/pkgs/desktops/plasma-5.5/plasma-workspace/0002-startkde-NixOS-patches.patch b/pkgs/desktops/plasma-5.5/plasma-workspace/startkde.patch similarity index 90% rename from pkgs/desktops/plasma-5.5/plasma-workspace/0002-startkde-NixOS-patches.patch rename to pkgs/desktops/plasma-5.5/plasma-workspace/startkde.patch index 4b458580633ae80a4de7b19db7d83ce7aaa14397..802c92da64d0733d35f4b88f3d12e08f98c12b5c 100644 --- a/pkgs/desktops/plasma-5.5/plasma-workspace/0002-startkde-NixOS-patches.patch +++ b/pkgs/desktops/plasma-5.5/plasma-workspace/startkde.patch @@ -1,16 +1,7 @@ -From e5c11a5efc4f8e8ba4e89e0172220da921df38c6 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 9 Dec 2015 13:20:02 -0600 -Subject: [PATCH 2/2] startkde NixOS patches - ---- - startkde/startkde.cmake | 211 ++++++++++++++++++++---------------------------- - 1 file changed, 89 insertions(+), 122 deletions(-) - -diff --git a/startkde/startkde.cmake b/startkde/startkde.cmake -index 37ab5cd..130578e 100644 ---- a/startkde/startkde.cmake -+++ b/startkde/startkde.cmake +Index: plasma-workspace-5.5.1/startkde/startkde.cmake +=================================================================== +--- plasma-workspace-5.5.1.orig/startkde/startkde.cmake ++++ plasma-workspace-5.5.1/startkde/startkde.cmake @@ -1,8 +1,31 @@ -#!/bin/sh +#!@bash@/bin/bash @@ -44,7 +35,7 @@ index 37ab5cd..130578e 100644 if test "x$1" = x--failsafe; then KDE_FAILSAFE=1 # General failsafe flag KWIN_COMPOSE=N # Disable KWin's compositing -@@ -16,29 +39,16 @@ trap 'echo GOT SIGHUP' HUP +@@ -17,29 +40,16 @@ trap 'echo GOT SIGHUP' HUP # we have to unset this for Darwin since it will screw up KDE's dynamic-loading unset DYLD_FORCE_FLAT_NAMESPACE @@ -78,7 +69,7 @@ index 37ab5cd..130578e 100644 fi # Boot sequence: -@@ -56,13 +66,8 @@ fi +@@ -57,13 +67,8 @@ fi # * Then ksmserver is started which takes control of the rest of the startup sequence # We need to create config folder so we can write startupconfigkeys @@ -94,7 +85,7 @@ index 37ab5cd..130578e 100644 #This is basically setting defaults so we can use them with kstartupconfig5 cat >$configDir/startupconfigkeys <&2 @@ -273,7 +264,7 @@ index 37ab5cd..130578e 100644 # Mark that full KDE session is running (e.g. Konqueror preloading works only # with full KDE running). The KDE_FULL_SESSION property can be detected by # any X client connected to the same X session, even if not launched -@@ -317,11 +279,11 @@ fi +@@ -318,11 +280,11 @@ fi # KDE_FULL_SESSION=true export KDE_FULL_SESSION @@ -287,7 +278,7 @@ index 37ab5cd..130578e 100644 KDE_SESSION_UID=`id -ru` export KDE_SESSION_UID -@@ -331,11 +293,11 @@ export XDG_CURRENT_DESKTOP +@@ -332,11 +294,11 @@ export XDG_CURRENT_DESKTOP # At this point all the environment is ready, let's send it to kwalletd if running if test -n "$PAM_KWALLET_LOGIN" ; then @@ -301,7 +292,7 @@ index 37ab5cd..130578e 100644 fi # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -348,21 +310,26 @@ if test $? -ne 0; then +@@ -349,21 +311,26 @@ if test $? -ne 0; then # Startup error echo 'startkde: Could not sync environment to dbus.' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null @@ -331,7 +322,7 @@ index 37ab5cd..130578e 100644 # finally, give the session control to the session manager # see kdebase/ksmserver for the description of the rest of the startup sequence # if the KDEWM environment variable has been set, then it will be used as KDE's -@@ -378,27 +345,27 @@ test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" +@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag # lock now and do the rest of the KDE startup underneath the locker. KSMSERVEROPTIONS="" test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" @@ -366,23 +357,13 @@ index 37ab5cd..130578e 100644 done break fi -@@ -410,21 +377,21 @@ echo 'startkde: Shutting down...' 1>&2 +@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null # Clean up -kdeinit5_shutdown +@kinit@/bin/kdeinit5_shutdown - echo 'startkde: Running shutdown scripts...' 1>&2 - - # Run scripts found in /plasma-workspace/shutdown - for prefix in `echo "$scriptpath"`; do -- for file in `ls "$prefix"/shutdown 2> /dev/null | egrep -v '(~|\.bak)$'`; do -+ for file in `ls "$prefix"/shutdown 2> /dev/null | @gnugrep@/bin/egrep -v '(~|\.bak)$'`; do - test -x "$prefix/shutdown/$file" && "$prefix/shutdown/$file" - done - done - unset KDE_FULL_SESSION -xprop -root -remove KDE_FULL_SESSION +@xprop@/bin/xprop -root -remove KDE_FULL_SESSION @@ -392,6 +373,3 @@ index 37ab5cd..130578e 100644 unset KDE_SESSION_UID echo 'startkde: Done.' 1>&2 --- -2.6.3 - diff --git a/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix b/pkgs/desktops/plasma-5.5/polkit-kde-agent.nix index 0173ec655169e80feb4220d3417cb55a391a6a38..3fc3a441ac3440385b69443dbfce977ccb7c69a6 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/desktops/plasma-5.5/srcs.nix b/pkgs/desktops/plasma-5.5/srcs.nix index 488f4de17ff3caeb4ce3be729455d58ad140c357..107946da8a2b7517f8ce2f10875af764e2149365 100644 --- a/pkgs/desktops/plasma-5.5/srcs.nix +++ b/pkgs/desktops/plasma-5.5/srcs.nix @@ -3,307 +3,307 @@ { bluedevil = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/bluedevil-5.5.0.tar.xz"; - sha256 = "0h0i6npmi2llrma4d0k7jaibfjkwvi7qm003i73prza5b2lm9qgk"; - name = "bluedevil-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/bluedevil-5.5.2.tar.xz"; + sha256 = "0z13vj9ybdilsixnn44wixr54f50lbbq52ryjfc4bxllycv9fzjf"; + name = "bluedevil-5.5.2.tar.xz"; }; }; breeze = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/breeze-5.5.0.tar.xz"; - sha256 = "0jaw8ir5vd3ari4hx52mrnl5mrq9njdci8caq37b3k1p4irxba3p"; - name = "breeze-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/breeze-5.5.2.tar.xz"; + sha256 = "171n9i642i2p1a8sd5pjamm41phbih5f244f1f5f6h2r29bpccgr"; + name = "breeze-5.5.2.tar.xz"; }; }; breeze-gtk = { - version = "5.5.0.1"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/breeze-gtk-5.5.0.1.tar.xz"; - sha256 = "04jjb81022k7xfzhzmdani057inmly2r7ksc1wvbg5adi7m0xn4n"; - name = "breeze-gtk-5.5.0.1.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/breeze-gtk-5.5.2.tar.xz"; + sha256 = "1zlxdb6rlg7r4dfd87l9p0js52c9k190l8aj2zd9hhw2wyc388x0"; + name = "breeze-gtk-5.5.2.tar.xz"; }; }; discover = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/discover-5.5.0.tar.xz"; - sha256 = "0ngxdgkr4ikqmi2x8dgbf6xbpvhwqcv79b7ir2jgmcjjl93958f4"; - name = "discover-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/discover-5.5.2.tar.xz"; + sha256 = "13wm838yqhl1xw4wp93b0avfacp2zgg9rvml1hm6ksfbbyh8xxj0"; + name = "discover-5.5.2.tar.xz"; }; }; kde-cli-tools = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kde-cli-tools-5.5.0.tar.xz"; - sha256 = "0l45hx1w1pyfbsg60lwdma9pgzdffprvrz12rqq6ylnjsz1askwv"; - name = "kde-cli-tools-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kde-cli-tools-5.5.2.tar.xz"; + sha256 = "0di7qxifrck1d1y24dypvgd3b60pkddlk2nnf6m230m0qacw6kk6"; + name = "kde-cli-tools-5.5.2.tar.xz"; }; }; kdecoration = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kdecoration-5.5.0.tar.xz"; - sha256 = "1wdwnj3dridk745mgmi9xnyd7dy0n0444nvq1mggn2mj4ca6q9ra"; - name = "kdecoration-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kdecoration-5.5.2.tar.xz"; + sha256 = "1g9bvkqvzy8h5l79qcm3zf4s146fld4la3ri83bbsfd9my6lrwph"; + name = "kdecoration-5.5.2.tar.xz"; }; }; kde-gtk-config = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kde-gtk-config-5.5.0.tar.xz"; - sha256 = "1bi6dr7bv42rn5jf212qrr5bik8xglvaabz5srqwhs2n4z35913a"; - name = "kde-gtk-config-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kde-gtk-config-5.5.2.tar.xz"; + sha256 = "0pd8a36ggdrp145mxk28n33r8fd436v74jq8xzvq0f2gfh4lcih8"; + name = "kde-gtk-config-5.5.2.tar.xz"; }; }; kdeplasma-addons = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kdeplasma-addons-5.5.0.tar.xz"; - sha256 = "1y3w97pbg24d2mzp2x882a43ljn5wqs74q6ry594a6mip2zzvlrz"; - name = "kdeplasma-addons-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kdeplasma-addons-5.5.2.tar.xz"; + sha256 = "0lqhgqy25bijpm62hlzn2ksia0dldvvdf4s9ax8b2g4jq114wrl4"; + name = "kdeplasma-addons-5.5.2.tar.xz"; }; }; kgamma5 = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kgamma5-5.5.0.tar.xz"; - sha256 = "1i6c0m0dr23z09r1rdfcna168bmnaysqxwxmp55ix3jad9ilfa8f"; - name = "kgamma5-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kgamma5-5.5.2.tar.xz"; + sha256 = "0lcz7frb3134k7pvll7di1x08bs8q1cxr4hy0d1danns6jj19w6q"; + name = "kgamma5-5.5.2.tar.xz"; }; }; khelpcenter = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/khelpcenter-5.5.0.tar.xz"; - sha256 = "0piwsa446ja6fmkxc8shzxqmbq7hcbydpc4xsc6bsjbzbskz8c09"; - name = "khelpcenter-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/khelpcenter-5.5.2.tar.xz"; + sha256 = "1ypy0p9ld9gy06z8r19lcysbzbg202m3ljdmzkzixvr8173lg01x"; + name = "khelpcenter-5.5.2.tar.xz"; }; }; khotkeys = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/khotkeys-5.5.0.tar.xz"; - sha256 = "197fhzm1rcm65k8idf0wlzsnfxpimdzg516syjzkwah5smg1qshl"; - name = "khotkeys-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/khotkeys-5.5.2.tar.xz"; + sha256 = "0dcdh0hxhlqaip3vk02npw3bk2pgpsrfhjr80k8bmhiy9g95z7ab"; + name = "khotkeys-5.5.2.tar.xz"; }; }; kinfocenter = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kinfocenter-5.5.0.tar.xz"; - sha256 = "1xr9l8wg20n0fyg5x9rgyhbimgwmlf97cf2v3yi8aff5mx348avy"; - name = "kinfocenter-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kinfocenter-5.5.2.tar.xz"; + sha256 = "1wg8yv096glby3ds822b643x0lrhmf67karr1xcd98xr5l188ngw"; + name = "kinfocenter-5.5.2.tar.xz"; }; }; kmenuedit = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kmenuedit-5.5.0.tar.xz"; - sha256 = "1hbifshppw64zmsybvcnm4sjy14zjq9rg2jxb36blfnvw08i9z4n"; - name = "kmenuedit-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kmenuedit-5.5.2.tar.xz"; + sha256 = "1gqb2wrb1ahdqljm451w9kbyl0mmqm7axrpnf4hblh4453ym19wr"; + name = "kmenuedit-5.5.2.tar.xz"; }; }; kscreen = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kscreen-5.5.0.tar.xz"; - sha256 = "0mznp9lb9z65vfqb752iw7scz0hs3if3bmk9nq1i6ns3c520gcx6"; - name = "kscreen-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kscreen-5.5.2.tar.xz"; + sha256 = "0kqf296r6gxfq0cz2s8yg05jazb3048fxbm2v0b9mv235c5j5xap"; + name = "kscreen-5.5.2.tar.xz"; }; }; kscreenlocker = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kscreenlocker-5.5.0.tar.xz"; - sha256 = "1myx3ykcq4p9f04bp2w7anqnr9f6b2rjajhkvxbwa9rvxjhwf3n9"; - name = "kscreenlocker-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kscreenlocker-5.5.2.tar.xz"; + sha256 = "1yknbrxnk162jvi8da4m23qxcwxqm1jsa1l1yxw4nj6rdz3jl6dm"; + name = "kscreenlocker-5.5.2.tar.xz"; }; }; ksshaskpass = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/ksshaskpass-5.5.0.tar.xz"; - sha256 = "12m88cvgvsnfvzvpyaji7x4pcb4b2xw977x5w50b73mbznxw9hhh"; - name = "ksshaskpass-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/ksshaskpass-5.5.2.tar.xz"; + sha256 = "0dq1qifmq3qdb6ia19n22wrxv5pndl77hlr2pyn2i67rz19zxywf"; + name = "ksshaskpass-5.5.2.tar.xz"; }; }; ksysguard = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/ksysguard-5.5.0.tar.xz"; - sha256 = "1paj03yccnym83l5585scn6mhd82xpzz5pqwqc4gz45cfq6ix3bv"; - name = "ksysguard-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/ksysguard-5.5.2.tar.xz"; + sha256 = "0c1iaimpwnh6naryj7apqxkdcaj5wmyir1yvlpr5v9wp49gkn2nx"; + name = "ksysguard-5.5.2.tar.xz"; }; }; kwallet-pam = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwallet-pam-5.5.0.tar.xz"; - sha256 = "084yyrm00i2yaikbl9sqzp2im56zb987cfqxqlrdgkkwf8p4g60g"; - name = "kwallet-pam-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwallet-pam-5.5.2.tar.xz"; + sha256 = "0gmk2jm1svvy1jxr5nsq14gscalzknrmzyar858nijyc9k5wb1n0"; + name = "kwallet-pam-5.5.2.tar.xz"; }; }; kwayland = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwayland-5.5.0.tar.xz"; - sha256 = "1dxa3xkqg96jw3gmc2jya3wym910pdzljhcdspk3n88045wn8hs9"; - name = "kwayland-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwayland-5.5.2.tar.xz"; + sha256 = "1i1gx3f1ygh9l1hwh4jcipjzl9b00issqk22i1li3054cb45g0mv"; + name = "kwayland-5.5.2.tar.xz"; }; }; kwayland-integration = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwayland-integration-5.5.0.tar.xz"; - sha256 = "0x2kqy89nzswx06n0diskjs14bjcsi0wyydbcx57553r1dkhkhn4"; - name = "kwayland-integration-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwayland-integration-5.5.2.tar.xz"; + sha256 = "09czrmyz75mkpaq9ca8n4w2b9x15dhw1l4g2vyqzarc8y5id4bnv"; + name = "kwayland-integration-5.5.2.tar.xz"; }; }; kwin = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwin-5.5.0.tar.xz"; - sha256 = "0f7km0kj1wvm4knpskm3fa82f1nqbv8y8l7mj3nr00zm3rd2zc1l"; - name = "kwin-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwin-5.5.2.tar.xz"; + sha256 = "0cly3mnb7d64h0pcfiqhcqs7p9plwsh0zb7kgz7ahcahqqgzbx4p"; + name = "kwin-5.5.2.tar.xz"; }; }; kwrited = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/kwrited-5.5.0.tar.xz"; - sha256 = "1f0zkm0xd3cff947nprcxf45cyk6jkcglv1b7dzn727afm456js8"; - name = "kwrited-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/kwrited-5.5.2.tar.xz"; + sha256 = "0fm6bvihyksiizxdp3alpal19c897pjmhqp2cyf7z9aahkyhpgh8"; + name = "kwrited-5.5.2.tar.xz"; }; }; libkscreen = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/libkscreen-5.5.0.tar.xz"; - sha256 = "0w03fjcqazx60zzp4sx77fpz53i38hzgn400jqajiwbb6d3mrxw3"; - name = "libkscreen-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/libkscreen-5.5.2.tar.xz"; + sha256 = "02aaaqzblahn477m07xzrk4vc21gc9szhj9aj780qyvpng8jifn2"; + name = "libkscreen-5.5.2.tar.xz"; }; }; libksysguard = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/libksysguard-5.5.0.tar.xz"; - sha256 = "1p2nhf9wnw8jf4sinkk6rq7b1daymb16lmhd22lji34ayv1fh9i8"; - name = "libksysguard-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/libksysguard-5.5.2.tar.xz"; + sha256 = "1z4riwjb3i9wv3zd34y5cv1s2pb3x1v6kayl5bq89v8pyqqkp5n5"; + name = "libksysguard-5.5.2.tar.xz"; }; }; milou = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/milou-5.5.0.tar.xz"; - sha256 = "0xh5fbf6j896dj7krd8fcapn5b10swgg0dmcv3sa8hzkpaw36gfm"; - name = "milou-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/milou-5.5.2.tar.xz"; + sha256 = "180i93zlypqnsw5105xqgfjnvg024z7i7qxhv7snidzm9yrc3f0q"; + name = "milou-5.5.2.tar.xz"; }; }; oxygen = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/oxygen-5.5.0.tar.xz"; - sha256 = "12l0m2b5d970grpi5mxd6rl3g8ry50mfr1pjv4ar7jhic6w4zi7x"; - name = "oxygen-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/oxygen-5.5.2.tar.xz"; + sha256 = "0q9mbazync4skgkz595ccjznndkv6v3qwhhyx2ycs73s2v4380kp"; + name = "oxygen-5.5.2.tar.xz"; }; }; plasma-desktop = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-desktop-5.5.0.tar.xz"; - sha256 = "1iak4j4jiigm0sm8f1w2g4w52v2q1rja6s5sy5247j9wyyfc6vw4"; - name = "plasma-desktop-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-desktop-5.5.2.tar.xz"; + sha256 = "08c4hmnmwzy67cp01p001mil9cvf0gx37dxf0iwghxw7b7nzmxnf"; + name = "plasma-desktop-5.5.2.tar.xz"; }; }; plasma-mediacenter = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-mediacenter-5.5.0.tar.xz"; - sha256 = "10jrbs3mrf3vwnw6a0rsipryfr4pd0jp5s89srcqk10p25pimq52"; - name = "plasma-mediacenter-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-mediacenter-5.5.2.tar.xz"; + sha256 = "1019nbgb6f37bn9ncbjzmybrcfi187sf0rg0mxpvrhh1imdfxwsj"; + name = "plasma-mediacenter-5.5.2.tar.xz"; }; }; plasma-nm = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-nm-5.5.0.tar.xz"; - sha256 = "1clzmrj78g1gs2d6qbnwk3snlz5rhipfrrzm5rsimjqxv111jfd4"; - name = "plasma-nm-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-nm-5.5.2.tar.xz"; + sha256 = "00fx5m6avbq14wkmd6jjd1wda8rznav2hs5x70jx9dnkl1c6463x"; + name = "plasma-nm-5.5.2.tar.xz"; }; }; plasma-pa = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-pa-5.5.0.tar.xz"; - sha256 = "0yi0snf6xndvwwzlylgyzpv90b9nsknrm3lsk4gvm49q8cvzy8km"; - name = "plasma-pa-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-pa-5.5.2.tar.xz"; + sha256 = "0nikv5ms1dnyf4w41c97gsx2wvy7da3qz7hddx3xnkzk3hh596fi"; + name = "plasma-pa-5.5.2.tar.xz"; }; }; plasma-sdk = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-sdk-5.5.0.tar.xz"; - sha256 = "196lna5zbqa8py082c96xl5d3c2l9p4rcnb06fyd91x3z1csq54v"; - name = "plasma-sdk-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-sdk-5.5.2.tar.xz"; + sha256 = "0ain65582dz075xjfq8kh7rkcf8hzbr7fdw4hifmcjfp4lh0da4g"; + name = "plasma-sdk-5.5.2.tar.xz"; }; }; plasma-workspace = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-workspace-5.5.0.tar.xz"; - sha256 = "013z03s0iy3aw9ks703wif7m6mlxx0vrxj98zvscmiaiasryhf13"; - name = "plasma-workspace-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-workspace-5.5.2.tar.xz"; + sha256 = "00nmfq864lkj03z82cgfczxhijafhd9nxiw0cprs6x9kvp1d3ylc"; + name = "plasma-workspace-5.5.2.tar.xz"; }; }; plasma-workspace-wallpapers = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/plasma-workspace-wallpapers-5.5.0.tar.xz"; - sha256 = "0qs547zy8qdmypa6cd60ksian94fykaysnjn7di00gjf2jpfy4dz"; - name = "plasma-workspace-wallpapers-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/plasma-workspace-wallpapers-5.5.2.tar.xz"; + sha256 = "11gymzyhszb9192z0q54z6dlgxqivixj2grhynj2096r4c8jb1rk"; + name = "plasma-workspace-wallpapers-5.5.2.tar.xz"; }; }; polkit-kde-agent = { - version = "1-5.5.0"; + version = "1-5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/polkit-kde-agent-1-5.5.0.tar.xz"; - sha256 = "0ahv82zyj42r1sp4mwp7s8iw44dw9rjx5yqvy7jvdmrvsa9n4f1c"; - name = "polkit-kde-agent-1-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/polkit-kde-agent-1-5.5.2.tar.xz"; + sha256 = "0jmsmx41ixksl1cja295c06agpcs4hn4c0jvhc30b5l9i7nf79j9"; + name = "polkit-kde-agent-1-5.5.2.tar.xz"; }; }; powerdevil = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/powerdevil-5.5.0.tar.xz"; - sha256 = "03gayczhaxql54had50f0jf4vfcckhdxfndv1k33kf16ldyg3w4f"; - name = "powerdevil-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/powerdevil-5.5.2.tar.xz"; + sha256 = "1l5765izd4p6i5q1f2r77ra0fip8fb0c1pl5bxg45sg3hnnaxk21"; + name = "powerdevil-5.5.2.tar.xz"; }; }; sddm-kcm = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/sddm-kcm-5.5.0.tar.xz"; - sha256 = "1wvxi4z3bxzj1wgq5n76zlq7d7pydfllx7ghghkdqhl6g4vf6nk0"; - name = "sddm-kcm-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/sddm-kcm-5.5.2.tar.xz"; + sha256 = "0fcyhndi1hh17cpbadm8alfhrkal847h4a7rx2rs8rrgypxdzhf9"; + name = "sddm-kcm-5.5.2.tar.xz"; }; }; systemsettings = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/systemsettings-5.5.0.tar.xz"; - sha256 = "1azq8zq214p2lhyq28saw3m07ngi3z4bgx4rx0pflzswqfb6fxr1"; - name = "systemsettings-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/systemsettings-5.5.2.tar.xz"; + sha256 = "03y6mhfy3ax12g2s937w88hd88ln23asvcbsl52fy8h37b9vlnba"; + name = "systemsettings-5.5.2.tar.xz"; }; }; user-manager = { - version = "5.5.0"; + version = "5.5.2"; src = fetchurl { - url = "${mirror}/stable/plasma/5.5.0/user-manager-5.5.0.tar.xz"; - sha256 = "08v49rwfpq8is829z4zb04qhj49wa2d2c9l2h0di06k1km6vs729"; - name = "user-manager-5.5.0.tar.xz"; + url = "${mirror}/stable/plasma/5.5.2/user-manager-5.5.2.tar.xz"; + sha256 = "0lvl8dhy8vymngb4p5x4y7miih8g004ii237lwrxv254ddv60azn"; + name = "user-manager-5.5.2.tar.xz"; }; }; } diff --git a/pkgs/development/compilers/cmdstan/default.nix b/pkgs/development/compilers/cmdstan/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..182808031e638ffc0bd98947e64663222804e046 --- /dev/null +++ b/pkgs/development/compilers/cmdstan/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "cmdstan-2.9.0"; + + src = fetchurl { + url = "https://github.com/stan-dev/cmdstan/releases/download/v2.9.0/cmdstan-2.9.0.tar.gz"; + sha256 = "08bim6nxgam989152hm0ga1rfb33mr71pwsym1nmfmavma68bwm9"; + }; + + buildFlags = "build"; + enableParallelBuilding = true; + + doCheck = true; + checkPhase = "./runCmdStanTests.py src/test/interface"; + + installPhase = '' + mkdir -p $out/opt $out/bin + cp -r . $out/opt/cmdstan + ln -s $out/opt/cmdstan/bin/stanc $out/bin/stanc + ln -s $out/opt/cmdstan/bin/stansummary $out/bin/stansummary + cat > $out/bin/stan < langCC; with stdenv.lib; with builtins; -let version = "5.2.0"; +let version = "5.3.0"; # Whether building a cross-compiler for GNU/Hurd. crossGNU = cross != null && cross.config == "i586-pc-gnu"; @@ -211,7 +211,7 @@ stdenv.mkDerivation ({ src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; - sha256 = "1bccp8a106xwz3wkixn65ngxif112vn90qf95m6lzpgpnl25p0sz"; + sha256 = "1ny4smkp5bzs3cp8ss7pl6lk8yss0d9m4av1mvdp72r1x695akxq"; }; inherit patches; diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix index 32d6b72970cbbe8ecb4c91cda1db2786304f6132..88d1bec4d42bf6d0e21c857189ce61101b0001b6 100644 --- a/pkgs/development/compilers/ghc/7.10.3.nix +++ b/pkgs/development/compilers/ghc/7.10.3.nix @@ -4,16 +4,10 @@ let - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" - ${stdenv.lib.optionalString stdenv.isDarwin '' - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" - ''} - ''; + docFixes = fetchurl { + url = "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3a.patch"; + sha256 = "1j45z4kcd3w1rzm4hapap2xc16bbh942qnzzdbdjcwqznsccznf0"; + }; in @@ -26,12 +20,16 @@ stdenv.mkDerivation rec { sha256 = "1vsgmic8csczl62ciz51iv8nhrkm72lyhbz7p7id13y2w7fcx46g"; }; + patches = [ + docFixes + ./dont-pass-linker-flags-via-response-files.patch # https://github.com/NixOS/nixpkgs/issues/10752 + ]; + buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ]; enableParallelBuilding = true; preConfigure = '' - echo >mk/build.mk "${buildMK}" sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}" @@ -42,6 +40,9 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" + "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib" + ] ++ stdenv.lib.optional stdenv.isDarwin [ + "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; # required, because otherwise all symbols from HSffi.o are stripped, and diff --git a/pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch b/pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch new file mode 100644 index 0000000000000000000000000000000000000000..129a34ecd86e2abe40cea14f9573aceb6b789cc9 --- /dev/null +++ b/pkgs/development/compilers/ghc/dont-pass-linker-flags-via-response-files.patch @@ -0,0 +1,22 @@ +diff --git a/compiler/main/SysTools.hs b/compiler/main/SysTools.hs +index 8c3ab1a..47a2da7 100644 +--- a/compiler/main/SysTools.hs ++++ b/compiler/main/SysTools.hs +@@ -414,7 +414,7 @@ runCc dflags args = do + args1 = map Option (getOpts dflags opt_c) + args2 = args0 ++ args1 ++ args + mb_env <- getGccEnv args2 +- runSomethingResponseFile dflags cc_filter "C Compiler" p args2 mb_env ++ runSomethingFiltered dflags cc_filter "C Compiler" p args2 mb_env + where + -- discard some harmless warnings from gcc that we can't turn off + cc_filter = unlines . doFilter . lines +@@ -928,7 +928,7 @@ runLink dflags args = do + args1 = map Option (getOpts dflags opt_l) + args2 = args0 ++ linkargs ++ args1 ++ args + mb_env <- getGccEnv args2 +- runSomethingResponseFile dflags ld_filter "Linker" p args2 mb_env ++ runSomethingFiltered dflags ld_filter "Linker" p args2 mb_env + where + ld_filter = case (platformOS (targetPlatform dflags)) of + OSSolaris2 -> sunos_ld_filter diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 43c32538b1a6f8a1688dda90b371860b4a8876f1..8b6c371537bcebdc866a2624b23ef7001a711706 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -1,32 +1,22 @@ -{ stdenv, fetchgit, ghc, perl, gmp, ncurses, libiconv, autoconf, automake, happy, alex }: - -let - - buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.lib}/lib" - DYNAMIC_BY_DEFAULT = NO - ${stdenv.lib.optionalString stdenv.isDarwin '' - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" - libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" - ''} - ''; - -in +{ stdenv, fetchgit, ghc, perl, gmp, ncurses, libiconv, binutils, coreutils +, autoconf, automake, happy, alex +}: stdenv.mkDerivation rec { - version = "7.11.20150828"; + version = "7.11.20151216"; name = "ghc-${version}"; - rev = "38c98e4f61a48084995a5347d76ddd024ce1a09c"; + rev = "28638dfe79e915f33d75a1b22c5adce9e2b62b97"; src = fetchgit { url = "git://git.haskell.org/ghc.git"; inherit rev; - sha256 = "0wnxrfzjpjcmsmd2i0zg30jg7zpw1rrfwz8r56g314l7xcns6yp1"; + sha256 = "0rjzkzn0hz1vdnjikcbwfs5ggs8r3y4gqxfdn4jzfp45gx94wiwv"; }; + patches = [ + ./dont-pass-linker-flags-via-response-files.patch # https://github.com/NixOS/nixpkgs/issues/10752 + ]; + postUnpack = '' pushd ghc-${builtins.substring 0 7 rev} echo ${version} >VERSION @@ -38,24 +28,40 @@ stdenv.mkDerivation rec { buildInputs = [ ghc perl autoconf automake happy alex ]; + enableParallelBuilding = true; + preConfigure = '' - echo >mk/build.mk "${buildMK}" sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}" + '' + stdenv.lib.optionalString stdenv.isDarwin '' + export NIX_LDFLAGS+=" -no_dtrace_dof" ''; configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib" + "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.lib}/lib" + ] ++ stdenv.lib.optional stdenv.isDarwin [ + "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; - enableParallelBuilding = true; - # required, because otherwise all symbols from HSffi.o are stripped, and # that in turn causes GHCi to abort stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols"; + postInstall = '' + # Install the bash completion file. + install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc + + # Patch scripts to include "readelf" and "cat" in $PATH. + for i in "$out/bin/"*; do + test ! -h $i || continue + egrep --quiet '^#!' <(head -n 1 $i) || continue + sed -i -e '2i export PATH="$PATH:${binutils}/bin:${coreutils}/bin"' $i + done + ''; + meta = { homepage = "http://haskell.org/ghc"; description = "The Glasgow Haskell Compiler"; diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 5df0a35aae8e1ac7b8eab602d3c98658b780f29e..81781868b02ad14f676e9d301d58a27f4ee78f41 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -43,12 +43,12 @@ in stdenv.mkDerivation rec { pname = "julia"; - version = "0.4.0"; + version = "0.4.2"; name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz"; - sha256 = "00k53hzbawpqvmkkyzcvbmf1d0ycshzdqk19nwsifv1rmiwjj7ss"; + sha256 = "04i5kjji5553lkdxz3wgflg1mav5ivwy2dascjy8jprqpq33aknk"; }; prePatch = '' diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index e97309f9252c8108610174ed4b709ba544414a17..b17be1c534b02f6970012d0045982ba7df74fb65 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-4584"; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/build-${version}/kotlin-compiler-${version}.zip"; - sha256 = "1ed750a169a411349852a102d5a9c23aec656acb76d51018a4933741eb846fae"; + sha256 = "191698784f4a1f769df14757bad40243293aa6bc3d8e906bfa0c80c3db0a1d2c"; }; 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/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix index 045d2e4951a81251e41cd567fdca8a1218a807a1..58073cbefc52556a9b43fb540eaded67b505278c 100644 --- a/pkgs/development/compilers/llvm/3.7/llvm.nix +++ b/pkgs/development/compilers/llvm/3.7/llvm.nix @@ -22,6 +22,11 @@ let in stdenv.mkDerivation rec { name = "llvm-${version}"; + patches = [ + # Backport for Rust, remove when 3.7.1 is released + ./r242372-fix-LLVMBuildLandingPad.patch + ]; + unpackPhase = '' unpackFile ${src} mv llvm-${version}.src llvm diff --git a/pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch b/pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch new file mode 100644 index 0000000000000000000000000000000000000000..749de6e9b6a132957209203b143bedc117080baf --- /dev/null +++ b/pkgs/development/compilers/llvm/3.7/r242372-fix-LLVMBuildLandingPad.patch @@ -0,0 +1,60 @@ +Index: llvm/bindings/ocaml/llvm/llvm_ocaml.c +=================================================================== +--- llvm/bindings/ocaml/llvm/llvm_ocaml.c (revision 242371) ++++ llvm/bindings/ocaml/llvm/llvm_ocaml.c (revision 242372) +@@ -1745,7 +1745,7 @@ + CAMLprim LLVMValueRef llvm_build_landingpad(LLVMTypeRef Ty, LLVMValueRef PersFn, + value NumClauses, value Name, + value B) { +- return LLVMBuildLandingPad(Builder_val(B), Ty, Int_val(NumClauses), ++ return LLVMBuildLandingPad(Builder_val(B), Ty, PersFn, Int_val(NumClauses), + String_val(Name)); + } + +Index: llvm/bindings/go/llvm/ir.go +=================================================================== +--- llvm/bindings/go/llvm/ir.go (revision 242371) ++++ llvm/bindings/go/llvm/ir.go (revision 242372) +@@ -1731,7 +1731,7 @@ + func (b Builder) CreateLandingPad(t Type, nclauses int, name string) (l Value) { + cname := C.CString(name) + defer C.free(unsafe.Pointer(cname)) +- l.C = C.LLVMBuildLandingPad(b.C, t.C, C.unsigned(nclauses), cname) ++ l.C = C.LLVMBuildLandingPad(b.C, t.C, nil, C.unsigned(nclauses), cname) + return l + } + +Index: llvm/lib/IR/Core.cpp +=================================================================== +--- llvm/lib/IR/Core.cpp (revision 242371) ++++ llvm/lib/IR/Core.cpp (revision 242372) +@@ -2257,7 +2257,14 @@ + } + + LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty, +- unsigned NumClauses, const char *Name) { ++ LLVMValueRef PersFn, unsigned NumClauses, ++ const char *Name) { ++ // The personality used to live on the landingpad instruction, but now it ++ // lives on the parent function. For compatibility, take the provided ++ // personality and put it on the parent function. ++ if (PersFn) ++ unwrap(B)->GetInsertBlock()->getParent()->setPersonalityFn( ++ cast(unwrap(PersFn))); + return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty), NumClauses, Name)); + } + +Index: llvm/include/llvm-c/Core.h +=================================================================== +--- llvm/include/llvm-c/Core.h (revision 242371) ++++ llvm/include/llvm-c/Core.h (revision 242372) +@@ -2675,7 +2675,8 @@ + LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, + const char *Name); + LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty, +- unsigned NumClauses, const char *Name); ++ LLVMValueRef PersFn, unsigned NumClauses, ++ const char *Name); + LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn); + LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef); + diff --git a/pkgs/development/compilers/matter-compiler/Gemfile b/pkgs/development/compilers/matter-compiler/Gemfile new file mode 100644 index 0000000000000000000000000000000000000000..21ec23452055f5fb88a3f00cbd6cccfa60834881 --- /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 0000000000000000000000000000000000000000..2eefe96ec63b616ca51c8517e16c9dd7ee2b6a19 --- /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 0000000000000000000000000000000000000000..12da620fe5bddf7c4830b7a346b20b3a413566d7 --- /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 0000000000000000000000000000000000000000..9ac7ae8d20e4f5a65114f38bcd74084bd15f2d74 --- /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/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix index 19e746d7dbf31282b4e3a4ced1a4f5dc3314a6d3..ce1e4cf1f5cef1882cd5edc2fc294553866d9497 100644 --- a/pkgs/development/compilers/rustc/default.nix +++ b/pkgs/development/compilers/rustc/default.nix @@ -1,11 +1,11 @@ { stdenv, callPackage }: callPackage ./generic.nix { - shortVersion = "1.4.0"; + shortVersion = "1.5.0"; isRelease = true; forceBundledLLVM = false; configureFlags = [ "--release-channel=stable" ]; - srcSha = "13wpi9nb3h6wwck2mxhza85fahzcwgas00w8m25086v34dha4dp1"; + srcSha = "1vfpwx6a2f2rn528774cz9r7r82ppycn8z8ybll6bphdw7cyar1g"; /* Rust is bootstrapped from an earlier built version. We need to fetch these earlier versions, which vary per platform. @@ -22,7 +22,6 @@ callPackage ./generic.nix { snapshotDate = "2015-08-11"; snapshotRev = "1af31d4"; - # cc-ar-opts.patch should be removable in 1.4.0+ patches = [ ./patches/remove-uneeded-git.patch ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; } diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index ac23234832864c02eb573ac0281efa4ab8bf7bd3..ccbfc51b671a9a3e8150fe38ecd54a8b0d95dea8 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -23,6 +23,6 @@ callPackage ./generic.nix { snapshotRev = "1af31d4"; patches = [ ./patches/remove-uneeded-git.patch ] - ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec-head.patch; + ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; } diff --git a/pkgs/development/compilers/rustc/patches/grsec-head.patch b/pkgs/development/compilers/rustc/patches/grsec-head.patch deleted file mode 100644 index b97b40c24091233f9d01d216f395273eb06e5d98..0000000000000000000000000000000000000000 --- a/pkgs/development/compilers/rustc/patches/grsec-head.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/src/test/run-make/relocation-model/Makefile b/src/test/run-make/relocation-model/Makefile -index b22f34f..c6489bd 100644 ---- a/src/test/run-make/relocation-model/Makefile -+++ b/src/test/run-make/relocation-model/Makefile -@@ -2,9 +2,11 @@ - - all: others - $(RUSTC) -C relocation-model=dynamic-no-pic foo.rs -+ paxctl -czexm $(TMPDIR)/foo - $(call RUN,foo) - - $(RUSTC) -C relocation-model=default foo.rs -+ paxctl -czexm $(TMPDIR)/foo - $(call RUN,foo) - - $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs -@@ -16,6 +18,7 @@ others: - else - others: - $(RUSTC) -C relocation-model=static foo.rs -+ paxctl -czexm $(TMPDIR)/foo - $(call RUN,foo) - $(RUSTC) -C relocation-model=static --crate-type=dylib foo.rs - endif diff --git a/pkgs/development/compilers/rustc/patches/grsec.patch b/pkgs/development/compilers/rustc/patches/grsec.patch index 84582ab7d70f4637c7d38ec1d0cb45b1de596ad6..b97b40c24091233f9d01d216f395273eb06e5d98 100644 --- a/pkgs/development/compilers/rustc/patches/grsec.patch +++ b/pkgs/development/compilers/rustc/patches/grsec.patch @@ -1,16 +1,24 @@ diff --git a/src/test/run-make/relocation-model/Makefile b/src/test/run-make/relocation-model/Makefile -index 2fcdd32..2d9ddb0 100644 +index b22f34f..c6489bd 100644 --- a/src/test/run-make/relocation-model/Makefile +++ b/src/test/run-make/relocation-model/Makefile -@@ -5,9 +5,11 @@ all: +@@ -2,9 +2,11 @@ + + all: others + $(RUSTC) -C relocation-model=dynamic-no-pic foo.rs ++ paxctl -czexm $(TMPDIR)/foo $(call RUN,foo) $(RUSTC) -C relocation-model=default foo.rs + paxctl -czexm $(TMPDIR)/foo $(call RUN,foo) + $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs +@@ -16,6 +18,7 @@ others: + else + others: $(RUSTC) -C relocation-model=static foo.rs + paxctl -czexm $(TMPDIR)/foo $(call RUN,foo) - - $(RUSTC) -C relocation-model=default --crate-type=dylib foo.rs + $(RUSTC) -C relocation-model=static --crate-type=dylib foo.rs + endif diff --git a/pkgs/development/coq-modules/flocq/default.nix b/pkgs/development/coq-modules/flocq/default.nix index 1f1087a85d93b85176de2978f06686574ef4b671..2ee0aeb20a177ea52579f39a22ca3cbb23eaec8f 100644 --- a/pkgs/development/coq-modules/flocq/default.nix +++ b/pkgs/development/coq-modules/flocq/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { version = "2.5.0"; src = fetchurl { - url = https://gforge.inria.fr/frs/download.php/file/35091/flocq-2.5.0.tar.gz; + url = "https://gforge.inria.fr/frs/download.php/file/33979/flocq-${version}.tar.gz"; sha256 = "0v3qiaz7vxfc5nk8rxwi39mik7hm7p5kb040q2pimb69qgfl6vml"; }; diff --git a/pkgs/development/coq-modules/mathcomp/default.nix b/pkgs/development/coq-modules/mathcomp/default.nix index 7c34e186717c3900ad791f990160583b83511de4..189b12206400767b40c9a25fba6a0cbebfa5b9e8 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 56838734b6d3089ef2ea4fa835ed3116c19b093f..b4048aa80037ea50a3505dfd22cff59f0cfca489 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 a0b0d951c0df004233256c641b7dd7ed7e8a9895..8ba49d06bae9ceac91932ad52a66596835bd7258 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 3bfccab0be7db3e1239dcaceccdd0c22f822222a..d7303ad8852cdf13063365d875004bc9ef1637db 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 new file mode 100644 index 0000000000000000000000000000000000000000..e662166741ac32de2f7e778d7d77f470a6b82160 --- /dev/null +++ b/pkgs/development/erlang-modules/build-erlang.nix @@ -0,0 +1,68 @@ +# 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 +, buildInputs ? [], erlangDeps ? [] +, postPatch ? "" +, meta ? {} +, ... }@attrs: + +with stdenv.lib; + +stdenv.mkDerivation (attrs // { + name = "${name}-${version}"; + + buildInputs = buildInputs ++ [ erlang rebar openssl libyaml ]; + + postPatch = '' + rm -f rebar + if [ -e "src/${name}.app.src" ]; then + sed -i -e 's/{ *vsn *,[^}]*}/{vsn, "${version}"}/' "src/${name}.app.src" + fi + ${postPatch} + ''; + + configurePhase = let + getDeps = drv: [drv] ++ (map getDeps drv.erlangDeps); + recursiveDeps = uniqList { + inputList = flatten (map getDeps erlangDeps); + }; + in '' + runHook preConfigure + ${concatMapStrings (dep: '' + header "linking erlang dependency ${dep}" + mkdir deps + ln -s "${dep}" "deps/${dep.packageName}" + stopNest + '') recursiveDeps} + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + rebar compile + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + for reldir in src ebin priv include; do + [ -e "$reldir" ] || continue + mkdir "$out" + cp -rt "$out" "$reldir" + success=1 + done + runHook postInstall + ''; + + meta = { + inherit (erlang.meta) platforms; + } // meta; + + passthru = { + packageName = name; + inherit erlangDeps; + }; +}) diff --git a/pkgs/development/erlang-modules/build-hex.nix b/pkgs/development/erlang-modules/build-hex.nix new file mode 100644 index 0000000000000000000000000000000000000000..7ba8fab9bd2a11c0ad7c2ba4cadaebd967fc0432 --- /dev/null +++ b/pkgs/development/erlang-modules/build-hex.nix @@ -0,0 +1,109 @@ +{ stdenv, erlang, rebar3, openssl, libyaml, fetchHex, fetchFromGitHub, + rebar3-pc, buildEnv }: + +{ name, version, sha256 +, hexPkg ? name +, buildInputs ? [], erlangDeps ? [], pluginDeps ? [] +, postPatch ? "" +, compilePorts ? false +, meta ? {} +, ... }@attrs: + +with stdenv.lib; + +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)); + + erlEnv = drv: buildEnv { + name = "erlang-env-${drv.name}"; + paths = [ drv ] ++ recursiveDeps; + ignoreCollisions = false; + meta = drv.meta; + }; + + 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/erlang-modules/default.nix b/pkgs/development/erlang-modules/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..84590e12a1cf373e4bd62c444f94eacab9f5c6ef --- /dev/null +++ b/pkgs/development/erlang-modules/default.nix @@ -0,0 +1,18 @@ +{ pkgs }: #? import {} }: + +let + callPackage = pkgs.lib.callPackageWith (pkgs // self); + + self = rec { + buildErlang = callPackage ./build-erlang.nix {}; + buildHex = callPackage ./build-hex.nix {}; + + rebar3-pc = callPackage ./hex/rebar3-pc.nix {}; + esqlite = callPackage ./hex/esqlite.nix {}; + goldrush = callPackage ./hex/goldrush.nix {}; + ibrowse = callPackage ./hex/ibrowse.nix {}; + jiffy = callPackage ./hex/jiffy.nix {}; + lager = callPackage ./hex/lager.nix {}; + meck = callPackage ./hex/meck.nix {}; + }; +in self diff --git a/pkgs/development/erlang-modules/hex/esqlite.nix b/pkgs/development/erlang-modules/hex/esqlite.nix new file mode 100644 index 0000000000000000000000000000000000000000..1fc3a2e91dc631b8f9e7a0d9f75a0e2736a6a7c9 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/esqlite.nix @@ -0,0 +1,8 @@ +{ buildHex, rebar3-pc }: + +buildHex { + name = "esqlite"; + version = "0.2.1"; + sha256 = "1296fn1lz4lz4zqzn4dwc3flgkh0i6n4sydg501faabfbv8d3wkr"; + compilePorts = true; +} diff --git a/pkgs/development/erlang-modules/hex/goldrush.nix b/pkgs/development/erlang-modules/hex/goldrush.nix new file mode 100644 index 0000000000000000000000000000000000000000..ddff7f6cc56dfe5cc0863f35f56dbe505c339ab7 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/goldrush.nix @@ -0,0 +1,7 @@ +{ buildHex, fetchurl }: + +buildHex { + name = "goldrush"; + version = "0.1.7"; + sha256 = "1zjgbarclhh10cpgvfxikn9p2ay63rajq96q1sbz9r9w6v6p8jm9"; +} diff --git a/pkgs/development/erlang-modules/hex/ibrowse.nix b/pkgs/development/erlang-modules/hex/ibrowse.nix new file mode 100644 index 0000000000000000000000000000000000000000..6ed189eb39d2514ca8082711ea1b90cce601cf29 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/ibrowse.nix @@ -0,0 +1,8 @@ +{ buildHex }: + +buildHex { + name = "ibrowse"; + version = "4.2.2"; + sha256 = "1bn0645n95j5zypdsns1w4kgd3q9lz8fj898hg355j5w89scn05q"; +} + diff --git a/pkgs/development/erlang-modules/hex/jiffy.nix b/pkgs/development/erlang-modules/hex/jiffy.nix new file mode 100644 index 0000000000000000000000000000000000000000..b9f92c888a45c4b683c6e8ab2083269419b7506e --- /dev/null +++ b/pkgs/development/erlang-modules/hex/jiffy.nix @@ -0,0 +1,8 @@ +{ buildHex }: + +buildHex { + name = "jiffy"; + version = "0.14.5"; + hexPkg = "barrel_jiffy"; + sha256 = "0iqz8bp0f672c5rfy5dpw9agv2708wzldd00ngbsffglpinlr1wa"; +} diff --git a/pkgs/development/erlang-modules/hex/lager.nix b/pkgs/development/erlang-modules/hex/lager.nix new file mode 100644 index 0000000000000000000000000000000000000000..acfefd5757c0aa04f0d9dc6435137a600634ab8c --- /dev/null +++ b/pkgs/development/erlang-modules/hex/lager.nix @@ -0,0 +1,8 @@ +{ buildHex, goldrush }: + +buildHex { + name = "lager"; + version = "3.0.2"; + sha256 = "0051zj6wfmmvxjn9q0nw8wic13nhbrkyy50cg1lcpdh17qiknzsj"; + erlangDeps = [ goldrush ]; +} diff --git a/pkgs/development/erlang-modules/hex/meck.nix b/pkgs/development/erlang-modules/hex/meck.nix new file mode 100644 index 0000000000000000000000000000000000000000..5af8a15a908d2ce9b4a628c79ffda1250bf07fd9 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/meck.nix @@ -0,0 +1,13 @@ +{ stdenv, buildHex }: + +buildHex { + name = "meck"; + version = "0.8.3"; + sha256 = "1dh2rhks1xly4f49x89vbhsk8fgwkx5zqp0n98mnng8rs1rkigak"; + + meta = { + description = "A mocking framework for Erlang"; + homepage = "https://github.com/eproxus/meck"; + license = stdenv.lib.licenses.apsl20; + }; +} diff --git a/pkgs/development/erlang-modules/hex/rebar3-pc.nix b/pkgs/development/erlang-modules/hex/rebar3-pc.nix new file mode 100644 index 0000000000000000000000000000000000000000..5bc45d3e3abf5070826253555313e7c00a2951e5 --- /dev/null +++ b/pkgs/development/erlang-modules/hex/rebar3-pc.nix @@ -0,0 +1,7 @@ +{ buildHex, goldrush }: + +buildHex { + name = "pc"; + version = "1.1.0"; + sha256 = "1br5xfl4b2z70b6a2ccxppn64jvkqgpmy4y9v81kxzb91z0ss9ma"; +} diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fd6d521369f1245c57cf7ad298e6d213211750d8..642757e66da3c9d141c7c876c68f84561071ecdd 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -43,11 +43,6 @@ self: super: { options_1_2 = dontCheck super.options_1_2; options = dontCheck super.options; statistics = dontCheck super.statistics; - text_1_1_1_3 = dontCheck super.text_1_1_1_3; - text_1_2_0_3 = dontCheck super.text_1_2_0_3; - text_1_2_0_4 = dontCheck super.text_1_2_0_4; - text_1_2_0_6 = dontCheck super.text_1_2_0_6; - text = dontCheck super.text; c2hs = if pkgs.stdenv.isDarwin then dontCheck super.c2hs else super.c2hs; # The package doesn't compile with ruby 1.9, which is our default at the moment. @@ -66,11 +61,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 +133,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 = '' @@ -246,9 +240,14 @@ self: super: { jwt = dontCheck super.jwt; # https://github.com/NixOS/cabal2nix/issues/136 - glib = addBuildDepends super.glib [pkgs.pkgconfig pkgs.glib]; + gio = addPkgconfigDepend super.gio pkgs.glib; + gio_0_13_0_3 = addPkgconfigDepend super.gio_0_13_0_3 pkgs.glib; + gio_0_13_0_4 = addPkgconfigDepend super.gio_0_13_0_4 pkgs.glib; + gio_0_13_1_0 = addPkgconfigDepend super.gio_0_13_1_0 pkgs.glib; + glib = addPkgconfigDepend super.glib pkgs.glib; gtk3 = super.gtk3.override { inherit (pkgs) gtk3; }; - gtk = addBuildDepends super.gtk [pkgs.pkgconfig pkgs.gtk]; + 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. @@ -818,6 +817,8 @@ self: super: { # Byte-compile elisp code for Emacs. hindent = overrideCabal super.hindent (drv: { + # https://github.com/chrisdone/hindent/issues/166 + doCheck = false; executableToolDepends = drv.executableToolDepends or [] ++ [pkgs.emacs]; postInstall = '' local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-${drv.version}/elisp" ) @@ -940,4 +941,8 @@ self: super: { # https://github.com/mainland/language-c-quote/issues/57 language-c-quote = super.language-c-quote.override { alex = self.alex_3_1_4; }; + + # The package doesn't yet compile with new HSE: https://github.com/bmillwood/pointfree/pull/13 + pointfree = super.pointfree.override { haskell-src-exts = self.haskell-src-exts_1_16_0_1; }; + } 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 06fedc6a1c4d5cb5fe55dbe007e0a941ef0fbeba..6d4e7a7bb256396013c582305f6e1ea2312815ed 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 cc5d03f05f5b2a7dae00bd521a14278ecb93ddab..3173189c430a794140d55e8328966a35f32e8e5b 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.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 35fd547d334807992378320b66f3943db25375b0..00e12b015645bfc26a9d97b14dfcd2782a36dd55 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -92,7 +92,6 @@ self: super: { utf8-string = overrideCabal super.utf8-string (drv: { postPatch = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal"; }); - pointfree = doJailbreak super.pointfree; # acid-state/safecopy#25 acid-state/safecopy#26 safecopy = dontCheck (super.safecopy); 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 b79cdb6da97718140d0580090630dcdc213d25df..51962f161fc084e91fb5cf7c7b52b45d3ef50c15 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 693c0b1d5224ce218af6f22ddf9b271d1dc2b1ab..f1774c04a8fc8bb1a6b213f68a0f90e6aa14a167 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 a1ce7cf68d6ab8283e2af9c6b84b91718f424914..4716766226a958af7fe368e73a4194c908b6e310 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 ffba1d426649c6f61452d0e97f0ed0f9ae168b8f..713f5531eb1530ee387e672aa14bde28606302a9 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 bb60198aeaf4fd3cde13b1befedebf4d0b2ef0ca..accd8619305257ff17149f5abc3322c2a38c85b9 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"; @@ -810,6 +813,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1157,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1586,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1752,6 +1758,7 @@ self: super: { "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"; @@ -1769,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1809,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1920,7 +1929,9 @@ self: super: { "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"; @@ -1969,6 +1980,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"; @@ -2046,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2446,6 +2459,7 @@ self: super: { "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"; @@ -2629,6 +2643,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"; @@ -2685,6 +2700,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2820,6 +2836,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"; @@ -2986,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3019,6 +3037,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"; @@ -3249,6 +3268,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"; @@ -3385,6 +3405,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3448,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3469,6 +3491,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"; @@ -3510,10 +3533,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3664,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3783,6 +3812,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"; @@ -3843,6 +3873,7 @@ self: super: { "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"; @@ -3954,6 +3985,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4528,6 +4560,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"; @@ -4555,6 +4588,7 @@ self: super: { "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"; @@ -4781,6 +4815,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"; @@ -4925,6 +4960,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"; @@ -4971,6 +5007,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"; @@ -5112,6 +5149,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"; @@ -5213,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5292,6 +5332,7 @@ self: super: { "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"; @@ -5321,6 +5362,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"; @@ -5365,6 +5407,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"; @@ -5378,6 +5421,7 @@ self: super: { "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"; @@ -5436,6 +5480,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5626,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5649,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5731,6 +5778,7 @@ self: super: { "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"; @@ -5950,6 +5998,7 @@ self: super: { "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"; @@ -6042,6 +6091,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"; @@ -6139,7 +6189,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"; @@ -6302,6 +6351,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"; @@ -6362,6 +6412,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6372,6 +6423,7 @@ self: super: { "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"; @@ -6380,6 +6432,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6549,6 +6602,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6909,6 +6963,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"; @@ -7147,6 +7202,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"; @@ -7155,6 +7211,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7328,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7444,6 +7502,7 @@ self: super: { "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"; @@ -7523,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7562,6 +7622,7 @@ self: super: { "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"; @@ -7968,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7978,6 +8040,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8139,6 +8203,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8169,10 +8234,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8207,6 +8274,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8407,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8418,6 +8487,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"; @@ -8427,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; @@ -8451,6 +8522,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8530,6 +8604,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 77b66031ece08675464eec1ff952e917e4e1df85..0b7f7deb05baef967cc88fcaf6a0f045d78c2c61 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"; @@ -810,6 +813,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1157,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1586,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1752,6 +1758,7 @@ self: super: { "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"; @@ -1769,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1809,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1920,7 +1929,9 @@ self: super: { "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"; @@ -1969,6 +1980,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"; @@ -2046,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2186,6 +2199,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"; @@ -2445,6 +2459,7 @@ self: super: { "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"; @@ -2628,6 +2643,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"; @@ -2684,6 +2700,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2819,6 +2836,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"; @@ -2985,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3018,6 +3037,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"; @@ -3248,6 +3268,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"; @@ -3384,6 +3405,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3447,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3468,6 +3491,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"; @@ -3509,10 +3533,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3663,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3782,6 +3812,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"; @@ -3842,6 +3873,7 @@ self: super: { "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"; @@ -3953,6 +3985,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4527,6 +4560,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"; @@ -4554,6 +4588,7 @@ self: super: { "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"; @@ -4780,6 +4815,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"; @@ -4924,6 +4960,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"; @@ -4970,6 +5007,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"; @@ -5111,6 +5149,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"; @@ -5212,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5291,6 +5332,7 @@ self: super: { "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"; @@ -5320,6 +5362,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"; @@ -5364,6 +5407,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"; @@ -5377,6 +5421,7 @@ self: super: { "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"; @@ -5435,6 +5480,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5625,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5648,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5730,6 +5778,7 @@ self: super: { "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"; @@ -5949,6 +5998,7 @@ self: super: { "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"; @@ -6041,6 +6091,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"; @@ -6138,7 +6189,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"; @@ -6301,6 +6351,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"; @@ -6361,6 +6412,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6371,6 +6423,7 @@ self: super: { "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"; @@ -6379,6 +6432,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6548,6 +6602,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6908,6 +6963,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"; @@ -7146,6 +7202,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"; @@ -7154,6 +7211,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7327,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7443,6 +7502,7 @@ self: super: { "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"; @@ -7522,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7561,6 +7622,7 @@ self: super: { "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"; @@ -7967,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7977,6 +8040,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8138,6 +8203,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8168,10 +8234,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8206,6 +8274,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8406,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8417,6 +8487,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"; @@ -8426,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; @@ -8450,6 +8522,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8529,6 +8604,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index da9c527ffa91f6b9e0dd42762224bed9e9d7cf2c..71c04aad38d2065b1ea37fe46b62f7a15b77944c 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"; @@ -810,6 +813,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1157,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1586,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1752,6 +1758,7 @@ self: super: { "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"; @@ -1769,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1809,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1920,7 +1929,9 @@ self: super: { "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"; @@ -1969,6 +1980,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"; @@ -2046,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2186,6 +2199,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"; @@ -2445,6 +2459,7 @@ self: super: { "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"; @@ -2628,6 +2643,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"; @@ -2684,6 +2700,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2819,6 +2836,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"; @@ -2985,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3018,6 +3037,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"; @@ -3248,6 +3268,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"; @@ -3384,6 +3405,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3447,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3468,6 +3491,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"; @@ -3509,10 +3533,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3663,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3782,6 +3812,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"; @@ -3842,6 +3873,7 @@ self: super: { "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"; @@ -3953,6 +3985,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4527,6 +4560,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"; @@ -4554,6 +4588,7 @@ self: super: { "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"; @@ -4780,6 +4815,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"; @@ -4924,6 +4960,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"; @@ -4970,6 +5007,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"; @@ -5111,6 +5149,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"; @@ -5212,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5291,6 +5332,7 @@ self: super: { "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"; @@ -5320,6 +5362,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"; @@ -5364,6 +5407,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"; @@ -5377,6 +5421,7 @@ self: super: { "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"; @@ -5435,6 +5480,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5625,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5648,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5730,6 +5778,7 @@ self: super: { "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"; @@ -5949,6 +5998,7 @@ self: super: { "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"; @@ -6041,6 +6091,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"; @@ -6138,7 +6189,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"; @@ -6301,6 +6351,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"; @@ -6361,6 +6412,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6371,6 +6423,7 @@ self: super: { "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"; @@ -6379,6 +6432,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6548,6 +6602,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6908,6 +6963,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"; @@ -7146,6 +7202,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"; @@ -7154,6 +7211,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7327,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7443,6 +7502,7 @@ self: super: { "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"; @@ -7522,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7561,6 +7622,7 @@ self: super: { "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"; @@ -7967,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7977,6 +8040,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8138,6 +8203,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8168,10 +8234,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8206,6 +8274,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8406,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8417,6 +8487,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"; @@ -8426,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; @@ -8450,6 +8522,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8529,6 +8604,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 04168fba70a0472f36772f23ab2cd1e8dbb18eb9..d9e9ce495cd750ae76c7cca87af2c8add03df9f3 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"; @@ -810,6 +813,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1157,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1586,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1752,6 +1758,7 @@ self: super: { "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"; @@ -1769,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1809,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1920,7 +1929,9 @@ self: super: { "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"; @@ -1969,6 +1980,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"; @@ -2046,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2186,6 +2199,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"; @@ -2445,6 +2459,7 @@ self: super: { "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"; @@ -2628,6 +2643,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"; @@ -2684,6 +2700,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_2"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2819,6 +2836,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"; @@ -2985,6 +3003,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3018,6 +3037,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"; @@ -3248,6 +3268,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"; @@ -3384,6 +3405,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3447,6 +3469,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3468,6 +3491,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"; @@ -3509,10 +3533,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3663,6 +3692,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3782,6 +3812,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"; @@ -3842,6 +3873,7 @@ self: super: { "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"; @@ -3953,6 +3985,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4527,6 +4560,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"; @@ -4554,6 +4588,7 @@ self: super: { "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"; @@ -4780,6 +4815,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"; @@ -4924,6 +4960,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"; @@ -4970,6 +5007,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"; @@ -5111,6 +5149,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"; @@ -5212,6 +5251,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5291,6 +5332,7 @@ self: super: { "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"; @@ -5320,6 +5362,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"; @@ -5364,6 +5407,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"; @@ -5377,6 +5421,7 @@ self: super: { "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"; @@ -5435,6 +5480,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5625,6 +5671,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5648,6 +5695,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5730,6 +5778,7 @@ self: super: { "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"; @@ -5949,6 +5998,7 @@ self: super: { "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"; @@ -6041,6 +6091,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"; @@ -6138,7 +6189,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"; @@ -6301,6 +6351,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"; @@ -6361,6 +6412,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6371,6 +6423,7 @@ self: super: { "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"; @@ -6379,6 +6432,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6548,6 +6602,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6908,6 +6963,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"; @@ -7146,6 +7202,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"; @@ -7154,6 +7211,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7327,6 +7385,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7443,6 +7502,7 @@ self: super: { "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"; @@ -7522,6 +7582,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7561,6 +7622,7 @@ self: super: { "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"; @@ -7967,6 +8029,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7977,6 +8040,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8138,6 +8203,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8168,10 +8234,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8206,6 +8274,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8406,6 +8475,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8417,6 +8487,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"; @@ -8426,6 +8497,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; @@ -8450,6 +8522,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8529,6 +8604,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index e0cd94311300f416aa6183797e4bcaab8797926d..cdfbcb1943a83c9e9e7cdc7f4c87ece5fe045a04 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"; @@ -810,6 +813,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1157,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1586,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1752,6 +1758,7 @@ self: super: { "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"; @@ -1769,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1809,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1920,7 +1929,9 @@ self: super: { "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"; @@ -1969,6 +1980,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"; @@ -2046,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2186,6 +2199,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"; @@ -2445,6 +2459,7 @@ self: super: { "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"; @@ -2627,6 +2642,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"; @@ -2683,6 +2699,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2818,6 +2835,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"; @@ -2984,6 +3002,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3017,6 +3036,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"; @@ -3247,6 +3267,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 +3404,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3446,6 +3468,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3467,6 +3490,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"; @@ -3508,10 +3532,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3662,6 +3691,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3779,6 +3809,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 +3870,7 @@ self: super: { "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"; @@ -3950,6 +3982,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4524,6 +4557,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"; @@ -4551,6 +4585,7 @@ self: super: { "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"; @@ -4777,6 +4812,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"; @@ -4921,6 +4957,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"; @@ -4967,6 +5004,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"; @@ -5108,6 +5146,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"; @@ -5209,6 +5248,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5288,6 +5329,7 @@ self: super: { "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"; @@ -5317,6 +5359,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"; @@ -5361,6 +5404,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"; @@ -5374,6 +5418,7 @@ self: super: { "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"; @@ -5432,6 +5477,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5622,6 +5668,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5645,6 +5692,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5727,6 +5775,7 @@ self: super: { "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"; @@ -5946,6 +5995,7 @@ self: super: { "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"; @@ -6038,6 +6088,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"; @@ -6135,7 +6186,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"; @@ -6298,6 +6348,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"; @@ -6358,6 +6409,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6368,6 +6420,7 @@ self: super: { "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"; @@ -6376,6 +6429,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6545,6 +6599,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6904,6 +6959,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 +7198,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"; @@ -7150,6 +7207,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7323,6 +7381,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7439,6 +7498,7 @@ self: super: { "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"; @@ -7518,6 +7578,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7557,6 +7618,7 @@ self: super: { "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"; @@ -7570,6 +7632,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7962,6 +8025,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7972,6 +8036,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8133,6 +8199,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8163,10 +8230,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8201,6 +8270,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8401,6 +8471,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8412,6 +8483,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"; @@ -8421,6 +8493,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; @@ -8445,6 +8518,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8524,6 +8600,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 44d0e9653ad53328e71448d06c1c84b5f98d4684..f03d3e17a398fd18f447571aa00eceb1e33e6fdb 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"; @@ -810,6 +813,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1157,6 +1161,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1586,6 +1591,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1752,6 +1758,7 @@ self: super: { "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"; @@ -1769,6 +1776,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1809,6 +1817,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1920,7 +1929,9 @@ self: super: { "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"; @@ -1969,6 +1980,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"; @@ -2046,6 +2058,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2186,6 +2199,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"; @@ -2445,6 +2459,7 @@ self: super: { "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"; @@ -2627,6 +2642,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"; @@ -2683,6 +2699,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2818,6 +2835,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"; @@ -2984,6 +3002,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3017,6 +3036,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"; @@ -3247,6 +3267,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 +3404,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3446,6 +3468,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3467,6 +3490,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"; @@ -3508,10 +3532,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3662,6 +3691,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3779,6 +3809,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 +3870,7 @@ self: super: { "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"; @@ -3950,6 +3982,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4524,6 +4557,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"; @@ -4551,6 +4585,7 @@ self: super: { "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"; @@ -4777,6 +4812,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"; @@ -4921,6 +4957,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"; @@ -4967,6 +5004,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"; @@ -5108,6 +5146,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"; @@ -5209,6 +5248,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5288,6 +5329,7 @@ self: super: { "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"; @@ -5317,6 +5359,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"; @@ -5361,6 +5404,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"; @@ -5374,6 +5418,7 @@ self: super: { "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"; @@ -5432,6 +5477,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5622,6 +5668,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5645,6 +5692,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5727,6 +5775,7 @@ self: super: { "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"; @@ -5946,6 +5995,7 @@ self: super: { "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"; @@ -6038,6 +6088,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"; @@ -6135,7 +6186,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"; @@ -6298,6 +6348,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"; @@ -6358,6 +6409,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6368,6 +6420,7 @@ self: super: { "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"; @@ -6376,6 +6429,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6545,6 +6599,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6904,6 +6959,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 +7198,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"; @@ -7150,6 +7207,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7323,6 +7381,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7439,6 +7498,7 @@ self: super: { "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"; @@ -7518,6 +7578,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7557,6 +7618,7 @@ self: super: { "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"; @@ -7570,6 +7632,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7962,6 +8025,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7972,6 +8036,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8133,6 +8199,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8163,10 +8230,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8201,6 +8270,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8401,6 +8471,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8412,6 +8483,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"; @@ -8421,6 +8493,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; @@ -8445,6 +8518,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8524,6 +8600,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 3f4405e5b5de38471fd7f3529e0824865f9dae80..de83b28d2faee9e9a58213a7bb6cac6b3484a181 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"; @@ -809,6 +812,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1156,6 +1160,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1583,6 +1588,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1749,6 +1755,7 @@ self: super: { "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"; @@ -1766,6 +1773,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1806,6 +1814,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1917,7 +1926,9 @@ self: super: { "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"; @@ -1966,6 +1977,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"; @@ -2043,6 +2055,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2183,6 +2196,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"; @@ -2442,6 +2456,7 @@ self: super: { "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"; @@ -2624,6 +2639,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"; @@ -2680,6 +2696,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2815,6 +2832,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"; @@ -2981,6 +2999,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3014,6 +3033,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"; @@ -3244,6 +3264,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"; @@ -3380,6 +3401,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3443,6 +3465,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3464,6 +3487,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"; @@ -3505,10 +3529,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3659,6 +3688,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3776,6 +3806,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"; @@ -3836,6 +3867,7 @@ self: super: { "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"; @@ -3947,6 +3979,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4520,6 +4553,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"; @@ -4547,6 +4581,7 @@ self: super: { "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"; @@ -4773,6 +4808,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"; @@ -4917,6 +4953,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"; @@ -4963,6 +5000,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"; @@ -5104,6 +5142,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"; @@ -5205,6 +5244,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5284,6 +5325,7 @@ self: super: { "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"; @@ -5313,6 +5355,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"; @@ -5357,6 +5400,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"; @@ -5370,6 +5414,7 @@ self: super: { "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"; @@ -5428,6 +5473,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5618,6 +5664,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5641,6 +5688,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5723,6 +5771,7 @@ self: super: { "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"; @@ -5941,6 +5990,7 @@ self: super: { "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"; @@ -6033,6 +6083,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"; @@ -6130,7 +6181,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"; @@ -6293,6 +6343,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"; @@ -6353,6 +6404,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6363,6 +6415,7 @@ self: super: { "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"; @@ -6371,6 +6424,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6540,6 +6594,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6898,6 +6953,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"; @@ -7136,6 +7192,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"; @@ -7144,6 +7201,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7317,6 +7375,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7433,6 +7492,7 @@ self: super: { "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"; @@ -7512,6 +7572,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7551,6 +7612,7 @@ self: super: { "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"; @@ -7564,6 +7626,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7956,6 +8019,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7966,6 +8030,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8127,6 +8193,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8157,10 +8224,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8195,6 +8264,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8395,6 +8465,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8406,6 +8477,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"; @@ -8415,6 +8487,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8438,6 +8511,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8517,6 +8593,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index f4673ed279faa9eba24800038a688900e4d2aca7..e01b0bc09a8c388b58ce46f9882a04f0b1525ceb 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"; @@ -809,6 +812,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1156,6 +1160,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1583,6 +1588,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1749,6 +1755,7 @@ self: super: { "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"; @@ -1766,6 +1773,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1806,6 +1814,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1917,7 +1926,9 @@ self: super: { "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"; @@ -1966,6 +1977,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"; @@ -2043,6 +2055,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2183,6 +2196,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"; @@ -2442,6 +2456,7 @@ self: super: { "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"; @@ -2624,6 +2639,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"; @@ -2680,6 +2696,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = dontDistribute super."distributed-process-async"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2815,6 +2832,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"; @@ -2981,6 +2999,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3014,6 +3033,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"; @@ -3244,6 +3264,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"; @@ -3380,6 +3401,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_1"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3443,6 +3465,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3464,6 +3487,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"; @@ -3505,10 +3529,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3659,6 +3688,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3776,6 +3806,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"; @@ -3836,6 +3867,7 @@ self: super: { "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"; @@ -3947,6 +3979,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4520,6 +4553,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"; @@ -4547,6 +4581,7 @@ self: super: { "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"; @@ -4773,6 +4808,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"; @@ -4917,6 +4953,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"; @@ -4963,6 +5000,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"; @@ -5104,6 +5142,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"; @@ -5205,6 +5244,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5284,6 +5325,7 @@ self: super: { "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"; @@ -5313,6 +5355,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"; @@ -5357,6 +5400,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"; @@ -5370,6 +5414,7 @@ self: super: { "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"; @@ -5428,6 +5473,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5618,6 +5664,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5641,6 +5688,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5723,6 +5771,7 @@ self: super: { "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"; @@ -5941,6 +5990,7 @@ self: super: { "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"; @@ -6033,6 +6083,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"; @@ -6130,7 +6181,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"; @@ -6293,6 +6343,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"; @@ -6353,6 +6404,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6363,6 +6415,7 @@ self: super: { "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"; @@ -6371,6 +6424,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6540,6 +6594,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6898,6 +6953,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"; @@ -7136,6 +7192,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"; @@ -7144,6 +7201,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7317,6 +7375,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7433,6 +7492,7 @@ self: super: { "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"; @@ -7512,6 +7572,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = dontDistribute super."stackage"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7551,6 +7612,7 @@ self: super: { "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"; @@ -7564,6 +7626,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7956,6 +8019,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7966,6 +8030,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8127,6 +8193,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8157,10 +8224,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8195,6 +8264,7 @@ self: super: { "unbounded-delays" = doDistribute super."unbounded-delays_0_1_0_8"; "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"; @@ -8395,6 +8465,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8406,6 +8477,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"; @@ -8415,6 +8487,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8438,6 +8511,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8517,6 +8593,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index b8a801b5b3981a95c0709b46b8b069674887f889..42db9c816dacc493a800c4d3c164055d20712e89 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"; @@ -805,6 +808,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1152,6 +1156,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1579,6 +1584,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1744,6 +1750,7 @@ self: super: { "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"; @@ -1761,6 +1768,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1800,6 +1808,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1910,7 +1919,9 @@ self: super: { "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"; @@ -1959,6 +1970,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"; @@ -2035,6 +2047,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2175,6 +2188,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"; @@ -2433,6 +2447,7 @@ self: super: { "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"; @@ -2615,6 +2630,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"; @@ -2671,6 +2687,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2806,6 +2823,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"; @@ -2971,6 +2989,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3004,6 +3023,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 +3254,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"; @@ -3370,6 +3391,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3432,6 +3454,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3453,6 +3476,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"; @@ -3494,10 +3518,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3648,6 +3677,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3765,6 +3795,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"; @@ -3826,6 +3857,7 @@ self: super: { "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"; @@ -3937,6 +3969,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4508,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"; @@ -4535,6 +4569,7 @@ self: super: { "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"; @@ -4761,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"; @@ -4905,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"; @@ -4951,6 +4988,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"; @@ -5092,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"; @@ -5193,6 +5232,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5272,6 +5313,7 @@ self: super: { "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"; @@ -5301,6 +5343,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"; @@ -5345,6 +5388,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"; @@ -5358,6 +5402,7 @@ self: super: { "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"; @@ -5416,6 +5461,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5606,6 +5652,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5629,6 +5676,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5711,6 +5759,7 @@ self: super: { "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"; @@ -5929,6 +5978,7 @@ self: super: { "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"; @@ -6021,6 +6071,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 +6169,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 +6330,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"; @@ -6340,6 +6391,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6350,6 +6402,7 @@ self: super: { "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"; @@ -6358,6 +6411,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6527,6 +6581,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6687,6 +6742,7 @@ self: super: { "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"; @@ -6883,6 +6939,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 +7178,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"; @@ -7129,6 +7187,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7302,6 +7361,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7417,6 +7477,7 @@ self: super: { "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"; @@ -7496,6 +7557,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7535,6 +7597,7 @@ self: super: { "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"; @@ -7548,6 +7611,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7940,6 +8004,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7950,6 +8015,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8111,6 +8178,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8141,10 +8209,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8178,6 +8248,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8378,6 +8449,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8389,6 +8461,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"; @@ -8398,6 +8471,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8421,6 +8495,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8500,6 +8577,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_3"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 349496ec6c78e213b32ac20d3c9fa1b956f1d41a..fb68011ba872775aa0d2b593261fcc3d22f7aacc 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"; @@ -805,6 +808,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1152,6 +1156,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1579,6 +1584,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1744,6 +1750,7 @@ self: super: { "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"; @@ -1761,6 +1768,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1799,6 +1807,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1909,7 +1918,9 @@ self: super: { "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"; @@ -1958,6 +1969,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"; @@ -2033,6 +2045,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2173,6 +2186,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"; @@ -2430,6 +2444,7 @@ self: super: { "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"; @@ -2612,6 +2627,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"; @@ -2668,6 +2684,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2802,6 +2819,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"; @@ -2967,6 +2985,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -3000,6 +3019,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"; @@ -3230,6 +3250,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"; @@ -3366,6 +3387,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3428,6 +3450,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3449,6 +3472,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"; @@ -3490,10 +3514,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3644,6 +3673,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3761,6 +3791,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"; @@ -3822,6 +3853,7 @@ self: super: { "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"; @@ -3932,6 +3964,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4501,6 +4534,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"; @@ -4508,6 +4542,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4527,6 +4562,7 @@ self: super: { "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"; @@ -4753,6 +4789,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"; @@ -4897,6 +4934,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"; @@ -4943,6 +4981,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"; @@ -5084,6 +5123,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"; @@ -5185,6 +5225,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5264,6 +5306,7 @@ self: super: { "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"; @@ -5293,6 +5336,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"; @@ -5337,6 +5381,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"; @@ -5350,6 +5395,7 @@ self: super: { "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"; @@ -5408,6 +5454,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5597,6 +5644,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5620,6 +5668,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5702,6 +5751,7 @@ self: super: { "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"; @@ -5920,6 +5970,7 @@ self: super: { "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"; @@ -6012,6 +6063,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"; @@ -6109,7 +6161,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"; @@ -6271,6 +6322,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"; @@ -6331,6 +6383,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6341,6 +6394,7 @@ self: super: { "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"; @@ -6349,6 +6403,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6518,6 +6573,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6678,6 +6734,7 @@ self: super: { "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"; @@ -6874,6 +6931,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"; @@ -7112,6 +7170,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"; @@ -7120,6 +7179,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7292,6 +7352,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7407,6 +7468,7 @@ self: super: { "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"; @@ -7486,6 +7548,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7525,6 +7588,7 @@ self: super: { "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"; @@ -7538,6 +7602,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7926,6 +7991,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7936,6 +8002,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8097,6 +8165,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8127,10 +8196,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8164,6 +8235,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8363,6 +8435,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8374,6 +8447,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"; @@ -8383,6 +8457,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_1"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8406,6 +8481,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8485,6 +8563,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index fdb4664c342edbd68da9619089c5c9cf200e15dd..9c20fbc79823df94312b25651be00c97a331a804 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1742,6 +1748,7 @@ self: super: { "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"; @@ -1759,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1797,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1888,6 +1897,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1915,9 @@ self: super: { "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"; @@ -1954,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-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2028,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2168,6 +2182,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"; @@ -2424,6 +2439,7 @@ self: super: { "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"; @@ -2606,6 +2622,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"; @@ -2662,6 +2679,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2796,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"; @@ -2961,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2994,6 +3014,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"; @@ -3220,6 +3241,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"; @@ -3356,6 +3378,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3417,6 +3440,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3438,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"; @@ -3479,10 +3504,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3633,6 +3663,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3749,6 +3780,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"; @@ -3810,6 +3842,7 @@ self: super: { "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"; @@ -3919,6 +3952,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4212,6 +4246,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"; @@ -4487,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"; @@ -4494,6 +4530,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4513,6 +4550,7 @@ self: super: { "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"; @@ -4586,6 +4624,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 +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"; @@ -4875,6 +4915,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"; @@ -4921,6 +4962,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"; @@ -5062,6 +5104,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"; @@ -5163,6 +5206,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5241,6 +5286,7 @@ self: super: { "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"; @@ -5270,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_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5314,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"; @@ -5327,6 +5375,7 @@ self: super: { "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"; @@ -5385,6 +5434,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5574,6 +5624,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5597,6 +5648,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5679,6 +5731,7 @@ self: super: { "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"; @@ -5895,6 +5948,7 @@ self: super: { "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"; @@ -5987,6 +6041,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"; @@ -6044,6 +6099,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"; @@ -6082,7 +6138,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"; @@ -6244,6 +6299,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"; @@ -6278,6 +6334,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"; @@ -6303,6 +6360,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6313,6 +6371,7 @@ self: super: { "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"; @@ -6321,6 +6380,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6490,6 +6550,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6649,6 +6710,7 @@ self: super: { "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"; @@ -6845,6 +6907,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 +7145,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"; @@ -7090,6 +7154,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7261,6 +7326,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7376,6 +7442,7 @@ self: super: { "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"; @@ -7455,6 +7522,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7494,6 +7562,7 @@ self: super: { "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"; @@ -7507,6 +7576,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7892,6 +7962,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7902,6 +7973,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8061,6 +8134,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8091,10 +8165,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8128,6 +8204,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8326,6 +8403,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8337,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"; @@ -8346,6 +8425,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8369,6 +8449,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8448,6 +8531,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index ddc53549cca965fa175080b19fa6993dfc2de51b..e1402193eb9a578077bf1ca3f7edd8a0466655d7 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1742,6 +1748,7 @@ self: super: { "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"; @@ -1759,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1797,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1888,6 +1897,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1915,9 @@ self: super: { "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"; @@ -1954,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-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2028,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2168,6 +2182,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"; @@ -2424,6 +2439,7 @@ self: super: { "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"; @@ -2606,6 +2622,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"; @@ -2662,6 +2679,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2796,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"; @@ -2961,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2994,6 +3014,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"; @@ -3219,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"; @@ -3355,6 +3377,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3416,6 +3439,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3437,6 +3461,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"; @@ -3478,10 +3503,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3632,6 +3662,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3748,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"; @@ -3809,6 +3841,7 @@ self: super: { "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"; @@ -3918,6 +3951,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4211,6 +4245,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 +4521,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"; @@ -4493,6 +4529,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4512,6 +4549,7 @@ self: super: { "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"; @@ -4585,6 +4623,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"; @@ -4730,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"; @@ -4872,6 +4912,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"; @@ -4918,6 +4959,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"; @@ -5059,6 +5101,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 +5202,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5237,6 +5282,7 @@ self: super: { "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"; @@ -5266,6 +5312,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"; @@ -5310,6 +5357,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"; @@ -5323,6 +5371,7 @@ self: super: { "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"; @@ -5381,6 +5430,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5570,6 +5620,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5593,6 +5644,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5675,6 +5727,7 @@ self: super: { "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"; @@ -5891,6 +5944,7 @@ self: super: { "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"; @@ -5983,6 +6037,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"; @@ -6040,6 +6095,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"; @@ -6078,7 +6134,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"; @@ -6240,6 +6295,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"; @@ -6274,6 +6330,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"; @@ -6299,6 +6356,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6309,6 +6367,7 @@ self: super: { "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"; @@ -6317,6 +6376,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6486,6 +6546,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6645,6 +6706,7 @@ self: super: { "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"; @@ -6841,6 +6903,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"; @@ -7078,6 +7141,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"; @@ -7086,6 +7150,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7257,6 +7322,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7372,6 +7438,7 @@ self: super: { "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"; @@ -7451,6 +7518,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7490,6 +7558,7 @@ self: super: { "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"; @@ -7503,6 +7572,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7888,6 +7958,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7898,6 +7969,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8057,6 +8130,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8087,10 +8161,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8124,6 +8200,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8322,6 +8399,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8333,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"; @@ -8342,6 +8421,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8365,6 +8445,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8444,6 +8527,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 9c8020b067b6fce6c3584ed49b01eadc10cd6c91..4c5eaef68149a750107a34c2a265ef3bd9172295 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1742,6 +1748,7 @@ self: super: { "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"; @@ -1759,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1797,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1888,6 +1897,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1915,9 @@ self: super: { "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"; @@ -1954,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-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2028,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2168,6 +2182,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"; @@ -2424,6 +2439,7 @@ self: super: { "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"; @@ -2606,6 +2622,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"; @@ -2662,6 +2679,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2796,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"; @@ -2961,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2994,6 +3014,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"; @@ -3219,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"; @@ -3355,6 +3377,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3416,6 +3439,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3437,6 +3461,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"; @@ -3478,10 +3503,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3632,6 +3662,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3748,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"; @@ -3809,6 +3841,7 @@ self: super: { "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"; @@ -3918,6 +3951,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4210,6 +4244,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"; @@ -4485,6 +4520,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"; @@ -4492,6 +4528,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4511,6 +4548,7 @@ self: super: { "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"; @@ -4584,6 +4622,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"; @@ -4729,6 +4768,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"; @@ -4871,6 +4911,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"; @@ -4917,6 +4958,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"; @@ -5058,6 +5100,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"; @@ -5158,6 +5201,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5236,6 +5281,7 @@ self: super: { "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"; @@ -5265,6 +5311,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"; @@ -5309,6 +5356,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"; @@ -5322,6 +5370,7 @@ self: super: { "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"; @@ -5380,6 +5429,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5569,6 +5619,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5592,6 +5643,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5674,6 +5726,7 @@ self: super: { "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"; @@ -5890,6 +5943,7 @@ self: super: { "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"; @@ -5982,6 +6036,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"; @@ -6039,6 +6094,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"; @@ -6077,7 +6133,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"; @@ -6239,6 +6294,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"; @@ -6273,6 +6329,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"; @@ -6298,6 +6355,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6308,6 +6366,7 @@ self: super: { "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"; @@ -6316,6 +6375,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6485,6 +6545,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6644,6 +6705,7 @@ self: super: { "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"; @@ -6840,6 +6902,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"; @@ -7077,6 +7140,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"; @@ -7085,6 +7149,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7256,6 +7321,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7371,6 +7437,7 @@ self: super: { "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"; @@ -7449,6 +7516,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7488,6 +7556,7 @@ self: super: { "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"; @@ -7501,6 +7570,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7885,6 +7955,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7895,6 +7966,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8054,6 +8127,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8084,10 +8158,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8121,6 +8197,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8319,6 +8396,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8330,6 +8408,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"; @@ -8339,6 +8418,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8362,6 +8442,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8441,6 +8524,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 906bf0a6a414a00ed4b07e3fc23eb8eb2ebebb10..656be295da0e451862299513505b7c9301279177 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1742,6 +1748,7 @@ self: super: { "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"; @@ -1759,6 +1766,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1797,6 +1805,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1888,6 +1897,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1905,7 +1915,9 @@ self: super: { "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"; @@ -1954,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-conduit" = doDistribute super."cereal-conduit_0_7_2_3"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2028,6 +2041,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2168,6 +2182,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"; @@ -2424,6 +2439,7 @@ self: super: { "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"; @@ -2561,6 +2577,7 @@ self: super: { "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"; @@ -2605,6 +2622,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"; @@ -2661,6 +2679,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2795,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"; @@ -2960,6 +2980,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2993,6 +3014,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 +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"; @@ -3354,6 +3377,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3415,6 +3439,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3436,6 +3461,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"; @@ -3477,10 +3503,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3631,6 +3662,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3746,6 +3778,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"; @@ -3807,6 +3840,7 @@ self: super: { "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"; @@ -3916,6 +3950,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4208,6 +4243,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"; @@ -4483,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"; @@ -4490,6 +4527,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4509,6 +4547,7 @@ self: super: { "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"; @@ -4582,6 +4621,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"; @@ -4727,6 +4767,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"; @@ -4869,6 +4910,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"; @@ -4915,6 +4957,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"; @@ -5056,6 +5099,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 +5200,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5234,6 +5280,7 @@ self: super: { "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"; @@ -5263,6 +5310,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"; @@ -5307,6 +5355,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"; @@ -5320,6 +5369,7 @@ self: super: { "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"; @@ -5378,6 +5428,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5567,6 +5618,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5590,6 +5642,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5672,6 +5725,7 @@ self: super: { "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"; @@ -5888,6 +5942,7 @@ self: super: { "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"; @@ -5980,6 +6035,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"; @@ -6037,6 +6093,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"; @@ -6075,7 +6132,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"; @@ -6237,6 +6293,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"; @@ -6271,6 +6328,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"; @@ -6296,6 +6354,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6306,6 +6365,7 @@ self: super: { "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"; @@ -6314,6 +6374,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6483,6 +6544,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6642,6 +6704,7 @@ self: super: { "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"; @@ -6838,6 +6901,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"; @@ -7075,6 +7139,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"; @@ -7083,6 +7148,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7254,6 +7320,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7369,6 +7436,7 @@ self: super: { "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"; @@ -7447,6 +7515,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7486,6 +7555,7 @@ self: super: { "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"; @@ -7499,6 +7569,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7882,6 +7953,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7892,6 +7964,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8051,6 +8125,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8081,10 +8156,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8118,6 +8195,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8316,6 +8394,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8327,6 +8406,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"; @@ -8336,6 +8416,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8359,6 +8440,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8438,6 +8522,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 9fff6650c5260cf05780745a0453dd31f5ead4ea..341459f740560b2433ec8366aad4e3728c3e7c67 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"; @@ -803,6 +806,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1150,6 +1154,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1576,6 +1581,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1740,6 +1746,7 @@ self: super: { "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"; @@ -1757,6 +1764,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1795,6 +1803,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1886,6 +1895,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1903,7 +1913,9 @@ self: super: { "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"; @@ -1952,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"; @@ -2026,6 +2039,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2166,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"; @@ -2421,6 +2436,7 @@ self: super: { "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"; @@ -2558,6 +2574,7 @@ self: super: { "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"; @@ -2602,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"; @@ -2658,6 +2676,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2792,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"; @@ -2957,6 +2977,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2990,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"; @@ -3215,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"; @@ -3351,6 +3374,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3412,6 +3436,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3433,6 +3458,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"; @@ -3474,10 +3500,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3628,6 +3659,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3743,6 +3775,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"; @@ -3804,6 +3837,7 @@ self: super: { "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"; @@ -3913,6 +3947,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4204,6 +4239,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"; @@ -4479,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"; @@ -4486,6 +4523,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4505,6 +4543,7 @@ self: super: { "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"; @@ -4578,6 +4617,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"; @@ -4723,6 +4763,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"; @@ -4865,6 +4906,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"; @@ -4911,6 +4953,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"; @@ -5051,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"; @@ -5151,6 +5195,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5229,6 +5275,7 @@ self: super: { "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"; @@ -5258,6 +5305,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"; @@ -5302,6 +5350,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"; @@ -5315,6 +5364,7 @@ self: super: { "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"; @@ -5373,6 +5423,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5561,6 +5612,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5584,6 +5636,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5665,6 +5718,7 @@ self: super: { "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"; @@ -5881,6 +5935,7 @@ self: super: { "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"; @@ -5973,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"; @@ -6030,6 +6086,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"; @@ -6068,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"; @@ -6230,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"; @@ -6264,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"; @@ -6289,6 +6347,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6299,6 +6358,7 @@ self: super: { "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"; @@ -6307,6 +6367,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6476,6 +6537,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6634,6 +6696,7 @@ self: super: { "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"; @@ -6830,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"; @@ -7067,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"; @@ -7075,6 +7140,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7246,6 +7312,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7361,6 +7428,7 @@ self: super: { "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"; @@ -7439,6 +7507,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7478,6 +7547,7 @@ self: super: { "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"; @@ -7491,6 +7561,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7874,6 +7945,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7884,6 +7956,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8043,6 +8117,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8073,10 +8148,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8110,6 +8187,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8308,6 +8386,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8319,6 +8398,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"; @@ -8328,6 +8408,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8351,6 +8432,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8430,6 +8514,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 4078218a73ffaa342163139f48f9795f76e80604..57889762d0cba701f0dd0d51d28120017490012a 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"; @@ -803,6 +806,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1149,6 +1153,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1575,6 +1580,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1739,6 +1745,7 @@ self: super: { "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"; @@ -1756,6 +1763,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1794,6 +1802,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1885,6 +1894,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1902,7 +1912,9 @@ self: super: { "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"; @@ -1951,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"; @@ -2024,6 +2037,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2164,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"; @@ -2417,6 +2432,7 @@ self: super: { "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"; @@ -2554,6 +2570,7 @@ self: super: { "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"; @@ -2598,6 +2615,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"; @@ -2654,6 +2672,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2788,6 +2807,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"; @@ -2952,6 +2972,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2985,6 +3006,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"; @@ -3210,6 +3232,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"; @@ -3346,6 +3369,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3407,6 +3431,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3428,6 +3453,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"; @@ -3469,10 +3495,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3623,6 +3654,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3738,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"; @@ -3799,6 +3832,7 @@ self: super: { "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"; @@ -3908,6 +3942,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4199,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"; @@ -4474,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"; @@ -4481,6 +4518,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4500,6 +4538,7 @@ self: super: { "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"; @@ -4573,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"; @@ -4718,6 +4758,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"; @@ -4860,6 +4901,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"; @@ -4906,6 +4948,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"; @@ -5046,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"; @@ -5146,6 +5190,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5224,6 +5270,7 @@ self: super: { "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"; @@ -5253,6 +5300,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"; @@ -5297,6 +5345,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"; @@ -5310,6 +5359,7 @@ self: super: { "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"; @@ -5368,6 +5418,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5556,6 +5607,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5579,6 +5631,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5660,6 +5713,7 @@ self: super: { "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"; @@ -5874,6 +5928,7 @@ self: super: { "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"; @@ -5966,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"; @@ -6023,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"; @@ -6061,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"; @@ -6223,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"; @@ -6257,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"; @@ -6282,6 +6340,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6292,6 +6351,7 @@ self: super: { "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"; @@ -6300,6 +6360,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6469,6 +6530,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6625,6 +6687,7 @@ self: super: { "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"; @@ -6821,6 +6884,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"; @@ -7058,6 +7122,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"; @@ -7066,6 +7131,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7237,6 +7303,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7352,6 +7419,7 @@ self: super: { "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"; @@ -7430,6 +7498,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7468,6 +7537,7 @@ self: super: { "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"; @@ -7481,6 +7551,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7863,6 +7934,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7873,6 +7945,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8032,6 +8106,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8062,10 +8137,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8099,6 +8176,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8297,6 +8375,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8308,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"; @@ -8317,6 +8397,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8340,6 +8421,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8419,6 +8503,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 0c298e5d465376f9aa8fa32bfcec9c855c32ee17..5f53f69d70c97248cadcff0d506aad8dc72c62dc 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"; @@ -805,6 +808,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1152,6 +1156,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1579,6 +1584,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1744,6 +1750,7 @@ self: super: { "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"; @@ -1761,6 +1768,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1799,6 +1807,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1909,7 +1918,9 @@ self: super: { "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"; @@ -1958,6 +1969,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"; @@ -2032,6 +2044,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2172,6 +2185,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"; @@ -2428,6 +2442,7 @@ self: super: { "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"; @@ -2610,6 +2625,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"; @@ -2666,6 +2682,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2800,6 +2817,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"; @@ -2965,6 +2983,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2998,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"; @@ -3228,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"; @@ -3364,6 +3385,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3425,6 +3447,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3446,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_3"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3487,10 +3511,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3641,6 +3670,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3758,6 +3788,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"; @@ -3819,6 +3850,7 @@ self: super: { "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"; @@ -3929,6 +3961,7 @@ self: super: { "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; "haskell-src" = doDistribute super."haskell-src_1_0_1_6"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4498,6 +4531,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"; @@ -4505,6 +4539,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4524,6 +4559,7 @@ self: super: { "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"; @@ -4750,6 +4786,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"; @@ -4894,6 +4931,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"; @@ -4940,6 +4978,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"; @@ -5081,6 +5120,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"; @@ -5182,6 +5222,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5261,6 +5303,7 @@ self: super: { "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"; @@ -5290,6 +5333,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"; @@ -5334,6 +5378,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"; @@ -5347,6 +5392,7 @@ self: super: { "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"; @@ -5405,6 +5451,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5594,6 +5641,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5617,6 +5665,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5699,6 +5748,7 @@ self: super: { "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"; @@ -5917,6 +5967,7 @@ self: super: { "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"; @@ -6009,6 +6060,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 +6157,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 +6318,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"; @@ -6327,6 +6379,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6337,6 +6390,7 @@ self: super: { "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"; @@ -6345,6 +6399,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6514,6 +6569,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6673,6 +6729,7 @@ self: super: { "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"; @@ -6869,6 +6926,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"; @@ -7106,6 +7164,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"; @@ -7114,6 +7173,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7286,6 +7346,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7401,6 +7462,7 @@ self: super: { "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"; @@ -7480,6 +7542,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7519,6 +7582,7 @@ self: super: { "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"; @@ -7532,6 +7596,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7920,6 +7985,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7930,6 +7996,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8091,6 +8159,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8121,10 +8190,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8158,6 +8229,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8357,6 +8429,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8368,6 +8441,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"; @@ -8377,6 +8451,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8400,6 +8475,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8479,6 +8557,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index d7f56325fbf31b536d62c444eb23d991fb9aa39f..6939da3619dbc6ee56c9bca197a0c4e5af181c52 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1743,6 +1749,7 @@ self: super: { "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"; @@ -1760,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1798,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1908,7 +1917,9 @@ self: super: { "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"; @@ -1957,6 +1968,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"; @@ -2031,6 +2043,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2171,6 +2184,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"; @@ -2427,6 +2441,7 @@ self: super: { "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"; @@ -2609,6 +2624,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"; @@ -2665,6 +2681,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2799,6 +2816,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"; @@ -2964,6 +2982,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2997,6 +3016,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 +3246,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"; @@ -3362,6 +3383,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3423,6 +3445,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3444,6 +3467,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"; @@ -3485,10 +3509,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3639,6 +3668,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3756,6 +3786,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"; @@ -3817,6 +3848,7 @@ self: super: { "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"; @@ -3926,6 +3958,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4495,6 +4528,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"; @@ -4502,6 +4536,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4521,6 +4556,7 @@ self: super: { "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"; @@ -4747,6 +4783,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 +4928,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 +4975,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 +5117,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"; @@ -5179,6 +5219,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5258,6 +5300,7 @@ self: super: { "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"; @@ -5287,6 +5330,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"; @@ -5331,6 +5375,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"; @@ -5344,6 +5389,7 @@ self: super: { "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"; @@ -5402,6 +5448,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5591,6 +5638,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5614,6 +5662,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5696,6 +5745,7 @@ self: super: { "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"; @@ -5913,6 +5963,7 @@ self: super: { "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"; @@ -6005,6 +6056,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"; @@ -6101,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"; @@ -6263,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"; @@ -6297,6 +6349,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"; @@ -6322,6 +6375,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6332,6 +6386,7 @@ self: super: { "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"; @@ -6340,6 +6395,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6509,6 +6565,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6668,6 +6725,7 @@ self: super: { "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"; @@ -6864,6 +6922,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 +7160,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"; @@ -7109,6 +7169,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7281,6 +7342,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7396,6 +7458,7 @@ self: super: { "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"; @@ -7475,6 +7538,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7514,6 +7578,7 @@ self: super: { "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"; @@ -7527,6 +7592,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7914,6 +7980,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7924,6 +7991,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8085,6 +8154,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8115,10 +8185,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8152,6 +8224,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8351,6 +8424,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8362,6 +8436,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"; @@ -8371,6 +8446,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8394,6 +8470,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8473,6 +8552,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 11b2b868116fb4980c3826d509ab084c7e5f9d44..a53cb354aba9ad866212ac923d7aafa6492366a5 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1743,6 +1749,7 @@ self: super: { "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"; @@ -1760,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1798,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1907,7 +1916,9 @@ self: super: { "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"; @@ -1956,6 +1967,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"; @@ -2030,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2170,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"; @@ -2426,6 +2440,7 @@ self: super: { "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"; @@ -2608,6 +2623,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"; @@ -2664,6 +2680,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2798,6 +2815,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"; @@ -2963,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2996,6 +3015,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"; @@ -3225,6 +3245,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"; @@ -3361,6 +3382,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3422,6 +3444,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3443,6 +3466,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"; @@ -3484,10 +3508,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3638,6 +3667,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3755,6 +3785,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"; @@ -3816,6 +3847,7 @@ self: super: { "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"; @@ -3925,6 +3957,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4494,6 +4527,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"; @@ -4501,6 +4535,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4520,6 +4555,7 @@ self: super: { "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"; @@ -4745,6 +4781,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 +4926,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 +4973,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 +5115,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"; @@ -5177,6 +5217,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5256,6 +5298,7 @@ self: super: { "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"; @@ -5285,6 +5328,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"; @@ -5329,6 +5373,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"; @@ -5342,6 +5387,7 @@ self: super: { "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"; @@ -5400,6 +5446,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5589,6 +5636,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5612,6 +5660,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5694,6 +5743,7 @@ self: super: { "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"; @@ -5911,6 +5961,7 @@ self: super: { "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"; @@ -6003,6 +6054,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"; @@ -6099,7 +6151,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"; @@ -6261,6 +6312,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"; @@ -6295,6 +6347,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"; @@ -6320,6 +6373,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6330,6 +6384,7 @@ self: super: { "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"; @@ -6338,6 +6393,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6507,6 +6563,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6666,6 +6723,7 @@ self: super: { "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"; @@ -6862,6 +6920,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 +7158,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"; @@ -7107,6 +7167,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7279,6 +7340,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7394,6 +7456,7 @@ self: super: { "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"; @@ -7473,6 +7536,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7512,6 +7576,7 @@ self: super: { "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"; @@ -7525,6 +7590,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7912,6 +7978,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7922,6 +7989,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8082,6 +8151,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8112,10 +8182,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8149,6 +8221,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8347,6 +8420,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8358,6 +8432,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"; @@ -8367,6 +8442,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8390,6 +8466,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8469,6 +8548,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index c0097e30c765660615253498876728e6661f3613..d4405a6ea7b39f4a3aa943c7cf4efcdab5a6f4c7 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1743,6 +1749,7 @@ self: super: { "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"; @@ -1760,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1798,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1907,7 +1916,9 @@ self: super: { "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"; @@ -1956,6 +1967,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"; @@ -2030,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2170,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"; @@ -2426,6 +2440,7 @@ self: super: { "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"; @@ -2608,6 +2623,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"; @@ -2664,6 +2680,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2798,6 +2815,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"; @@ -2963,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2996,6 +3015,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"; @@ -3225,6 +3245,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"; @@ -3361,6 +3382,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3422,6 +3444,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3443,6 +3466,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"; @@ -3484,10 +3508,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3638,6 +3667,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3755,6 +3785,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"; @@ -3816,6 +3847,7 @@ self: super: { "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"; @@ -3925,6 +3957,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4494,6 +4527,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"; @@ -4501,6 +4535,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4520,6 +4555,7 @@ self: super: { "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"; @@ -4740,6 +4776,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 +4920,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 +4967,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"; @@ -5070,6 +5109,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"; @@ -5171,6 +5211,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5250,6 +5292,7 @@ self: super: { "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"; @@ -5279,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_3"; "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; @@ -5323,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"; @@ -5336,6 +5381,7 @@ self: super: { "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"; @@ -5394,6 +5440,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5583,6 +5630,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5606,6 +5654,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5688,6 +5737,7 @@ self: super: { "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"; @@ -5905,6 +5955,7 @@ self: super: { "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"; @@ -5997,6 +6048,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"; @@ -6093,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"; @@ -6255,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"; @@ -6289,6 +6341,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"; @@ -6314,6 +6367,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6324,6 +6378,7 @@ self: super: { "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"; @@ -6332,6 +6387,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6501,6 +6557,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6660,6 +6717,7 @@ self: super: { "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"; @@ -6856,6 +6914,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"; @@ -7093,6 +7152,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"; @@ -7101,6 +7161,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7273,6 +7334,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7388,6 +7450,7 @@ self: super: { "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"; @@ -7467,6 +7530,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7506,6 +7570,7 @@ self: super: { "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"; @@ -7519,6 +7584,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7906,6 +7972,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7916,6 +7983,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8076,6 +8145,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8106,10 +8176,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8143,6 +8215,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8341,6 +8414,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8352,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"; @@ -8361,6 +8436,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8384,6 +8460,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8463,6 +8542,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 5d5aa5644502e27dc137c53ecfd9df8f1a021f13..6a0e8545c2803928d43f392c851801d91722e839 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1743,6 +1749,7 @@ self: super: { "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"; @@ -1760,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1798,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1907,7 +1916,9 @@ self: super: { "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"; @@ -1956,6 +1967,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"; @@ -2030,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2170,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"; @@ -2426,6 +2440,7 @@ self: super: { "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"; @@ -2608,6 +2623,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"; @@ -2664,6 +2680,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2798,6 +2815,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"; @@ -2963,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2996,6 +3015,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 +3243,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"; @@ -3359,6 +3380,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3420,6 +3442,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3441,6 +3464,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"; @@ -3482,10 +3506,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3636,6 +3665,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3752,6 +3782,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"; @@ -3813,6 +3844,7 @@ self: super: { "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"; @@ -3922,6 +3954,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4215,6 +4248,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"; @@ -4490,6 +4524,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"; @@ -4497,6 +4532,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4516,6 +4552,7 @@ self: super: { "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"; @@ -4736,6 +4773,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 +4917,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 +4964,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"; @@ -5066,6 +5106,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"; @@ -5167,6 +5208,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5245,6 +5288,7 @@ self: super: { "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"; @@ -5274,6 +5318,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"; @@ -5318,6 +5363,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"; @@ -5331,6 +5377,7 @@ self: super: { "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"; @@ -5389,6 +5436,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5578,6 +5626,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5601,6 +5650,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5683,6 +5733,7 @@ self: super: { "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"; @@ -5900,6 +5951,7 @@ self: super: { "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"; @@ -5992,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"; @@ -6088,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"; @@ -6250,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"; @@ -6284,6 +6337,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"; @@ -6309,6 +6363,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6319,6 +6374,7 @@ self: super: { "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"; @@ -6327,6 +6383,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6496,6 +6553,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6655,6 +6713,7 @@ self: super: { "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"; @@ -6851,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"; @@ -7088,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"; @@ -7096,6 +7157,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7268,6 +7330,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7383,6 +7446,7 @@ self: super: { "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"; @@ -7462,6 +7526,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7501,6 +7566,7 @@ self: super: { "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"; @@ -7514,6 +7580,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7901,6 +7968,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7911,6 +7979,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8070,6 +8140,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8100,10 +8171,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8137,6 +8210,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8335,6 +8409,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8346,6 +8421,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"; @@ -8355,6 +8431,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8378,6 +8455,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8457,6 +8537,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index d77685d0a06a81a7ca19b0d5f75385eeaec1077d..93ff9524400e93fe60b0a23c2120d0f8cd9fbeb2 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"; @@ -804,6 +807,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1151,6 +1155,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1578,6 +1583,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1743,6 +1749,7 @@ self: super: { "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"; @@ -1760,6 +1767,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1798,6 +1806,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1907,7 +1916,9 @@ self: super: { "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"; @@ -1956,6 +1967,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"; @@ -2030,6 +2042,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2170,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"; @@ -2426,6 +2440,7 @@ self: super: { "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"; @@ -2608,6 +2623,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"; @@ -2664,6 +2680,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2798,6 +2815,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"; @@ -2963,6 +2981,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2996,6 +3015,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"; @@ -3222,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"; @@ -3358,6 +3379,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3419,6 +3441,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3440,6 +3463,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"; @@ -3481,10 +3505,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3635,6 +3664,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3751,6 +3781,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"; @@ -3812,6 +3843,7 @@ self: super: { "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"; @@ -3921,6 +3953,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4214,6 +4247,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"; @@ -4489,6 +4523,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"; @@ -4496,6 +4531,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4515,6 +4551,7 @@ self: super: { "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"; @@ -4588,6 +4625,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"; @@ -4734,6 +4772,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"; @@ -4877,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"; @@ -4923,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"; @@ -5064,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"; @@ -5165,6 +5207,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5243,6 +5287,7 @@ self: super: { "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"; @@ -5272,6 +5317,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"; @@ -5316,6 +5362,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"; @@ -5329,6 +5376,7 @@ self: super: { "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"; @@ -5387,6 +5435,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = dontDistribute super."machines-directory"; "machines-io" = dontDistribute super."machines-io"; "machines-process" = dontDistribute super."machines-process"; @@ -5576,6 +5625,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5599,6 +5649,7 @@ self: super: { "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5681,6 +5732,7 @@ self: super: { "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"; @@ -5898,6 +5950,7 @@ self: super: { "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"; @@ -5990,6 +6043,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"; @@ -6047,6 +6101,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"; @@ -6085,7 +6140,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"; @@ -6247,6 +6301,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"; @@ -6281,6 +6336,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"; @@ -6306,6 +6362,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6316,6 +6373,7 @@ self: super: { "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"; @@ -6324,6 +6382,7 @@ self: super: { "plat" = dontDistribute super."plat"; "playlists" = dontDistribute super."playlists"; "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; "plivo" = dontDistribute super."plivo"; "plot" = dontDistribute super."plot"; "plot-gtk" = dontDistribute super."plot-gtk"; @@ -6493,6 +6552,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6652,6 +6712,7 @@ self: super: { "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"; @@ -6848,6 +6909,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"; @@ -7085,6 +7147,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"; @@ -7093,6 +7156,7 @@ self: super: { "servant-docs" = dontDistribute super."servant-docs"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7265,6 +7329,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7380,6 +7445,7 @@ self: super: { "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"; @@ -7459,6 +7525,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_3_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7498,6 +7565,7 @@ self: super: { "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"; @@ -7511,6 +7579,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_2"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7898,6 +7967,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = dontDistribute super."time-locale-compat"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7908,6 +7978,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -8067,6 +8139,7 @@ self: super: { "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-eq" = doDistribute super."type-eq_0_4_2"; "type-equality" = dontDistribute super."type-equality"; @@ -8097,10 +8170,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8134,6 +8209,7 @@ self: super: { "unbound-generics" = dontDistribute super."unbound-generics"; "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"; @@ -8332,6 +8408,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8343,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"; @@ -8352,6 +8430,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_2"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8375,6 +8454,9 @@ self: super: { "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-consul" = dontDistribute super."wai-middleware-consul"; "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; @@ -8454,6 +8536,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_0_4"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index dc3f8a03f8ba34df71bf125a9acb22e993bdd698..6e14e24c7ac391b3a060af441c57ad0ce7968c1d 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1140,6 +1145,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1515,6 +1521,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"; @@ -1563,6 +1570,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1725,6 +1733,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1742,6 +1751,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1780,6 +1790,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1871,6 +1882,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1888,7 +1900,9 @@ self: super: { "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"; @@ -1938,6 +1952,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"; @@ -2010,6 +2025,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2149,6 +2165,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"; @@ -2399,6 +2416,7 @@ self: super: { "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"; @@ -2536,6 +2554,7 @@ self: super: { "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"; @@ -2580,6 +2599,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"; @@ -2636,6 +2656,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2770,6 +2791,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"; @@ -2932,6 +2954,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2966,6 +2989,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"; @@ -3188,6 +3212,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"; @@ -3324,6 +3349,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3385,6 +3411,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3405,6 +3432,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"; @@ -3446,10 +3474,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3597,6 +3630,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3712,6 +3746,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"; @@ -3773,6 +3808,7 @@ self: super: { "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"; @@ -3882,6 +3918,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4172,6 +4209,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"; @@ -4444,6 +4482,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"; @@ -4451,6 +4490,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4471,6 +4511,7 @@ self: super: { "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"; @@ -4543,6 +4584,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 +4725,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 +4867,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 +4912,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"; @@ -5006,6 +5051,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"; @@ -5104,6 +5150,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5181,6 +5229,7 @@ self: super: { "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"; @@ -5210,6 +5259,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"; @@ -5254,6 +5304,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"; @@ -5267,6 +5318,7 @@ self: super: { "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"; @@ -5324,6 +5376,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5511,6 +5564,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5532,6 +5586,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5609,6 +5664,7 @@ self: super: { "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"; @@ -5818,6 +5874,7 @@ self: super: { "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"; @@ -5910,6 +5967,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"; @@ -5967,6 +6025,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 +6225,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 +6259,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"; @@ -6223,6 +6284,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6233,6 +6295,7 @@ self: super: { "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"; @@ -6241,6 +6304,7 @@ self: super: { "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"; @@ -6410,6 +6474,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6566,6 +6631,7 @@ self: super: { "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"; @@ -6762,6 +6828,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"; @@ -6998,6 +7065,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"; @@ -7006,6 +7074,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7176,6 +7245,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7288,6 +7358,7 @@ self: super: { "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"; @@ -7366,6 +7437,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7404,6 +7476,7 @@ self: super: { "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"; @@ -7417,6 +7490,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7796,6 +7870,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7806,6 +7881,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7965,6 +8042,7 @@ self: super: { "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"; @@ -7994,10 +8072,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8031,6 +8111,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8228,6 +8309,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8239,6 +8321,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"; @@ -8248,6 +8331,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8271,6 +8355,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8349,6 +8436,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 16ab241c515373a2192c009b9b3cdc9a58439355..24a931f7d920d655b05493c98080e77a2fcc1d9a 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1140,6 +1145,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1515,6 +1521,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"; @@ -1563,6 +1570,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1725,6 +1733,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1742,6 +1751,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1780,6 +1790,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1870,6 +1881,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1887,7 +1899,9 @@ self: super: { "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"; @@ -1937,6 +1951,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"; @@ -2009,6 +2024,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2148,6 +2164,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 +2415,7 @@ self: super: { "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"; @@ -2535,6 +2553,7 @@ self: super: { "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"; @@ -2579,6 +2598,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"; @@ -2635,6 +2655,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2769,6 +2790,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"; @@ -2931,6 +2953,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2965,6 +2988,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"; @@ -3187,6 +3211,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"; @@ -3323,6 +3348,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3384,6 +3410,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3404,6 +3431,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"; @@ -3445,10 +3473,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3596,6 +3629,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3711,6 +3745,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"; @@ -3772,6 +3807,7 @@ self: super: { "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"; @@ -3881,6 +3917,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_8"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4170,6 +4207,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"; @@ -4442,6 +4480,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"; @@ -4449,6 +4488,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4469,6 +4509,7 @@ self: super: { "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"; @@ -4541,6 +4582,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"; @@ -4681,6 +4723,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"; @@ -4822,6 +4865,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"; @@ -4866,6 +4910,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"; @@ -5004,6 +5049,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"; @@ -5102,6 +5148,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5179,6 +5227,7 @@ self: super: { "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"; @@ -5208,6 +5257,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"; @@ -5252,6 +5302,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"; @@ -5265,6 +5316,7 @@ self: super: { "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"; @@ -5322,6 +5374,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5509,6 +5562,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5530,6 +5584,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5607,6 +5662,7 @@ self: super: { "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"; @@ -5816,6 +5872,7 @@ self: super: { "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"; @@ -5908,6 +5965,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"; @@ -5965,6 +6023,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"; @@ -6164,6 +6223,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"; @@ -6197,6 +6257,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"; @@ -6221,6 +6282,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6231,6 +6293,7 @@ self: super: { "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"; @@ -6239,6 +6302,7 @@ self: super: { "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"; @@ -6408,6 +6472,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6564,6 +6629,7 @@ self: super: { "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"; @@ -6760,6 +6826,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 +7063,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"; @@ -7004,6 +7072,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7174,6 +7243,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7286,6 +7356,7 @@ self: super: { "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"; @@ -7364,6 +7435,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7402,6 +7474,7 @@ self: super: { "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"; @@ -7415,6 +7488,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7794,6 +7868,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7804,6 +7879,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7963,6 +8040,7 @@ self: super: { "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"; @@ -7992,10 +8070,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8029,6 +8109,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8225,6 +8306,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8236,6 +8318,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"; @@ -8245,6 +8328,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8268,6 +8352,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8346,6 +8433,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3f109fadc731dbd6c26dfda0e8399a4239b522e3..462a8aee2f1dceca4b394280b53d560de056838c 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1507,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"; @@ -1555,6 +1562,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1716,6 +1724,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1733,6 +1742,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1771,6 +1781,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1859,6 +1870,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1876,7 +1888,9 @@ self: super: { "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"; @@ -1925,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"; @@ -1997,6 +2012,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2135,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"; @@ -2384,6 +2401,7 @@ self: super: { "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"; @@ -2520,6 +2538,7 @@ self: super: { "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"; @@ -2564,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"; @@ -2620,6 +2640,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2753,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"; @@ -2914,6 +2936,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2948,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"; @@ -3168,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"; @@ -3304,6 +3329,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3349,6 +3375,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3364,6 +3391,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3384,6 +3412,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"; @@ -3424,10 +3453,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3575,6 +3609,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3688,6 +3723,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"; @@ -3749,6 +3785,7 @@ self: super: { "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"; @@ -3858,6 +3895,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4146,6 +4184,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"; @@ -4417,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"; @@ -4424,6 +4464,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4444,6 +4485,7 @@ self: super: { "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"; @@ -4514,6 +4556,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"; @@ -4653,6 +4696,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"; @@ -4794,6 +4838,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"; @@ -4835,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"; @@ -4972,6 +5018,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"; @@ -5070,6 +5117,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5146,6 +5195,7 @@ self: super: { "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"; @@ -5175,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"; @@ -5218,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"; @@ -5231,6 +5283,7 @@ self: super: { "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"; @@ -5288,6 +5341,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5470,6 +5524,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5491,6 +5546,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5568,6 +5624,7 @@ self: super: { "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"; @@ -5776,6 +5833,7 @@ self: super: { "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"; @@ -5868,6 +5926,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"; @@ -5925,6 +5984,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"; @@ -5979,6 +6039,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6121,6 +6182,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"; @@ -6153,6 +6215,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"; @@ -6177,6 +6240,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6187,6 +6251,7 @@ self: super: { "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"; @@ -6195,6 +6260,7 @@ self: super: { "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"; @@ -6267,6 +6333,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"; @@ -6362,6 +6429,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6517,6 +6585,7 @@ self: super: { "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"; @@ -6712,6 +6781,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"; @@ -6947,6 +7017,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"; @@ -6955,6 +7026,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7124,6 +7196,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7235,6 +7308,7 @@ self: super: { "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"; @@ -7313,6 +7387,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7345,6 +7420,7 @@ self: super: { "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"; @@ -7358,6 +7434,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7735,6 +7812,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7745,6 +7823,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7902,6 +7982,7 @@ self: super: { "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"; @@ -7931,10 +8012,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7968,6 +8051,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8164,6 +8248,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8175,6 +8260,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"; @@ -8184,6 +8270,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8207,6 +8294,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8285,6 +8375,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index af11314a5bac02b5a2d74980e300f2ca420100b0..4353c8d898c7ec68d837029381ae1d9d66462f3a 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1506,6 +1512,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"; @@ -1554,6 +1561,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1715,6 +1723,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1732,6 +1741,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1770,6 +1780,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1858,6 +1869,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1875,7 +1887,9 @@ self: super: { "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"; @@ -1924,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"; @@ -1996,6 +2011,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2134,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"; @@ -2383,6 +2400,7 @@ self: super: { "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"; @@ -2519,6 +2537,7 @@ self: super: { "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"; @@ -2563,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"; @@ -2619,6 +2639,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2752,6 +2773,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"; @@ -2913,6 +2935,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2947,6 +2970,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"; @@ -3167,6 +3191,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"; @@ -3302,6 +3327,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3347,6 +3373,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3362,6 +3389,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3382,6 +3410,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"; @@ -3422,10 +3451,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3573,6 +3607,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3686,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"; @@ -3747,6 +3783,7 @@ self: super: { "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"; @@ -3856,6 +3893,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4143,6 +4181,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"; @@ -4413,6 +4452,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"; @@ -4420,6 +4460,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4440,6 +4481,7 @@ self: super: { "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"; @@ -4510,6 +4552,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"; @@ -4649,6 +4692,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"; @@ -4790,6 +4834,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"; @@ -4830,6 +4875,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"; @@ -4967,6 +5013,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"; @@ -5065,6 +5112,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5141,6 +5190,7 @@ self: super: { "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"; @@ -5170,6 +5220,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"; @@ -5213,6 +5264,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"; @@ -5226,6 +5278,7 @@ self: super: { "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"; @@ -5283,6 +5336,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5465,6 +5519,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5486,6 +5541,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5562,6 +5618,7 @@ self: super: { "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"; @@ -5770,6 +5827,7 @@ self: super: { "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"; @@ -5862,6 +5920,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"; @@ -5919,6 +5978,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"; @@ -5972,6 +6032,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_3"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6114,6 +6175,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"; @@ -6146,6 +6208,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"; @@ -6170,6 +6233,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6180,6 +6244,7 @@ self: super: { "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"; @@ -6188,6 +6253,7 @@ self: super: { "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"; @@ -6260,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"; @@ -6355,6 +6422,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6510,6 +6578,7 @@ self: super: { "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"; @@ -6704,6 +6773,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"; @@ -6939,6 +7009,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"; @@ -6947,6 +7018,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7116,6 +7188,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7227,6 +7300,7 @@ self: super: { "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"; @@ -7305,6 +7379,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7337,6 +7412,7 @@ self: super: { "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"; @@ -7350,6 +7426,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7725,6 +7802,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7735,6 +7813,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7892,6 +7972,7 @@ self: super: { "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"; @@ -7921,10 +8002,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7958,6 +8041,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8154,6 +8238,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8165,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"; @@ -8174,6 +8260,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8197,6 +8284,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8275,6 +8365,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 439771557df8b2914d1c07a227fd5ad8dcd1e09b..4f4ce4b86e13e2580760cd5c5b25be8f28a46a55 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1506,6 +1512,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"; @@ -1554,6 +1561,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1715,6 +1723,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1732,6 +1741,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1770,6 +1780,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1858,6 +1869,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1875,7 +1887,9 @@ self: super: { "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"; @@ -1924,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"; @@ -1996,6 +2011,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2134,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"; @@ -2383,6 +2400,7 @@ self: super: { "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"; @@ -2519,6 +2537,7 @@ self: super: { "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"; @@ -2563,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"; @@ -2619,6 +2639,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2752,6 +2773,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"; @@ -2913,6 +2935,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2947,6 +2970,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"; @@ -3167,6 +3191,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"; @@ -3302,6 +3327,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3347,6 +3373,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3362,6 +3389,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3382,6 +3410,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"; @@ -3422,10 +3451,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3573,6 +3607,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3686,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"; @@ -3747,6 +3783,7 @@ self: super: { "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"; @@ -3856,6 +3893,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4143,6 +4181,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"; @@ -4413,6 +4452,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"; @@ -4420,6 +4460,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4440,6 +4481,7 @@ self: super: { "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"; @@ -4510,6 +4552,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"; @@ -4649,6 +4692,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"; @@ -4790,6 +4834,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"; @@ -4830,6 +4875,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"; @@ -4967,6 +5013,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"; @@ -5065,6 +5112,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5141,6 +5190,7 @@ self: super: { "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"; @@ -5170,6 +5220,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"; @@ -5213,6 +5264,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"; @@ -5226,6 +5278,7 @@ self: super: { "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"; @@ -5283,6 +5336,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5465,6 +5519,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5486,6 +5541,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5562,6 +5618,7 @@ self: super: { "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"; @@ -5770,6 +5827,7 @@ self: super: { "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"; @@ -5862,6 +5920,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"; @@ -5919,6 +5978,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"; @@ -5972,6 +6032,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_3"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6114,6 +6175,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"; @@ -6146,6 +6208,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"; @@ -6170,6 +6233,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6180,6 +6244,7 @@ self: super: { "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"; @@ -6188,6 +6253,7 @@ self: super: { "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"; @@ -6260,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"; @@ -6355,6 +6422,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6510,6 +6578,7 @@ self: super: { "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"; @@ -6704,6 +6773,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"; @@ -6938,6 +7008,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"; @@ -6946,6 +7017,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7115,6 +7187,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7226,6 +7299,7 @@ self: super: { "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"; @@ -7304,6 +7378,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7336,6 +7411,7 @@ self: super: { "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"; @@ -7349,6 +7425,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7724,6 +7801,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7734,6 +7812,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7891,6 +7971,7 @@ self: super: { "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"; @@ -7920,10 +8001,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7957,6 +8040,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8153,6 +8237,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8164,6 +8249,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"; @@ -8173,6 +8259,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8196,6 +8283,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8274,6 +8364,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 681a3bbcce6ff0eff1303f18ee130f71903b37ce..c9464238e84317f73671d9fa0609a9945503de85 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1506,6 +1512,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"; @@ -1554,6 +1561,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1715,6 +1723,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1732,6 +1741,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1770,6 +1780,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1858,6 +1869,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1875,7 +1887,9 @@ self: super: { "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"; @@ -1924,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"; @@ -1996,6 +2011,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2134,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"; @@ -2383,6 +2400,7 @@ self: super: { "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"; @@ -2519,6 +2537,7 @@ self: super: { "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"; @@ -2563,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"; @@ -2619,6 +2639,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2752,6 +2773,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"; @@ -2913,6 +2935,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2947,6 +2970,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"; @@ -3167,6 +3191,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"; @@ -3302,6 +3327,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3347,6 +3373,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3362,6 +3389,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3382,6 +3410,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"; @@ -3422,10 +3451,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3573,6 +3607,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3685,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"; @@ -3746,6 +3782,7 @@ self: super: { "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"; @@ -3855,6 +3892,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4142,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_21"; "hlogger" = dontDistribute super."hlogger"; @@ -4412,6 +4451,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"; @@ -4419,6 +4459,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4439,6 +4480,7 @@ self: super: { "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"; @@ -4509,6 +4551,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"; @@ -4647,6 +4690,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"; @@ -4788,6 +4832,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"; @@ -4828,6 +4873,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"; @@ -4965,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"; @@ -5063,6 +5110,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5139,6 +5188,7 @@ self: super: { "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"; @@ -5168,6 +5218,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"; @@ -5211,6 +5262,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"; @@ -5224,6 +5276,7 @@ self: super: { "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"; @@ -5281,6 +5334,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5463,6 +5517,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5484,6 +5539,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5560,6 +5616,7 @@ self: super: { "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"; @@ -5767,6 +5824,7 @@ self: super: { "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"; @@ -5859,6 +5917,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"; @@ -5916,6 +5975,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"; @@ -5969,6 +6029,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6111,6 +6172,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"; @@ -6143,6 +6205,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"; @@ -6167,6 +6230,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6177,6 +6241,7 @@ self: super: { "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"; @@ -6185,6 +6250,7 @@ self: super: { "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"; @@ -6257,6 +6323,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"; @@ -6352,6 +6419,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6507,6 +6575,7 @@ self: super: { "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"; @@ -6701,6 +6770,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"; @@ -6935,6 +7005,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"; @@ -6943,6 +7014,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7112,6 +7184,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7223,6 +7296,7 @@ self: super: { "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"; @@ -7301,6 +7375,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7333,6 +7408,7 @@ self: super: { "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"; @@ -7346,6 +7422,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7721,6 +7798,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7731,6 +7809,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7888,6 +7968,7 @@ self: super: { "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"; @@ -7917,10 +7998,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7954,6 +8037,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8150,6 +8234,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8161,6 +8246,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"; @@ -8170,6 +8256,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8193,6 +8280,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8271,6 +8361,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 65ec277782b7e5fbbd04271cde5a4e33c0a444fb..e2a9927cabfaf4e24c117b468e03c890c5442e3a 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1505,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"; @@ -1553,6 +1560,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1714,6 +1722,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1731,6 +1740,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1769,6 +1779,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1857,6 +1868,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1874,7 +1886,9 @@ self: super: { "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"; @@ -1923,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"; @@ -1995,6 +2010,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2133,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"; @@ -2382,6 +2399,7 @@ self: super: { "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"; @@ -2518,6 +2536,7 @@ self: super: { "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"; @@ -2562,6 +2581,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"; @@ -2618,6 +2638,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2751,6 +2772,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"; @@ -2912,6 +2934,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2946,6 +2969,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"; @@ -3165,6 +3189,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"; @@ -3300,6 +3325,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3345,6 +3371,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3360,6 +3387,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3380,6 +3408,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"; @@ -3420,10 +3449,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3571,6 +3605,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3683,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"; @@ -3744,6 +3780,7 @@ self: super: { "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"; @@ -3853,6 +3890,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4140,6 +4178,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"; @@ -4410,6 +4449,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"; @@ -4417,6 +4457,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4436,6 +4477,7 @@ self: super: { "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"; @@ -4506,6 +4548,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 +4687,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 +4829,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 +4870,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 +5008,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"; @@ -5060,6 +5107,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5136,6 +5185,7 @@ self: super: { "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"; @@ -5165,6 +5215,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 +5259,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"; @@ -5221,6 +5273,7 @@ self: super: { "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"; @@ -5278,6 +5331,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5460,6 +5514,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5481,6 +5536,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5557,6 +5613,7 @@ self: super: { "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"; @@ -5764,6 +5821,7 @@ self: super: { "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"; @@ -5856,6 +5914,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 +5972,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"; @@ -5966,6 +6026,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6108,6 +6169,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"; @@ -6140,6 +6202,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"; @@ -6164,6 +6227,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6174,6 +6238,7 @@ self: super: { "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"; @@ -6182,6 +6247,7 @@ self: super: { "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"; @@ -6254,6 +6320,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"; @@ -6348,6 +6415,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6503,6 +6571,7 @@ self: super: { "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"; @@ -6697,6 +6766,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"; @@ -6931,6 +7001,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"; @@ -6939,6 +7010,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7107,6 +7179,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7218,6 +7291,7 @@ self: super: { "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"; @@ -7296,6 +7370,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7328,6 +7403,7 @@ self: super: { "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"; @@ -7341,6 +7417,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7716,6 +7793,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7726,6 +7804,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7883,6 +7963,7 @@ self: super: { "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"; @@ -7912,10 +7993,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7949,6 +8032,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8145,6 +8229,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8156,6 +8241,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"; @@ -8165,6 +8251,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8187,6 +8274,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8265,6 +8355,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 835f61f833432e0aaea0fe4d59159b1136e35966..53c0e3d69bdab7013b9bcf78d7836cfe428bc0a1 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1505,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"; @@ -1553,6 +1560,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1714,6 +1722,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1731,6 +1740,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1769,6 +1779,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1857,6 +1868,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1874,7 +1886,9 @@ self: super: { "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"; @@ -1923,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"; @@ -1995,6 +2010,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2133,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"; @@ -2382,6 +2399,7 @@ self: super: { "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"; @@ -2518,6 +2536,7 @@ self: super: { "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"; @@ -2562,6 +2581,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"; @@ -2618,6 +2638,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2751,6 +2772,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"; @@ -2911,6 +2933,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2945,6 +2968,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"; @@ -3164,6 +3188,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"; @@ -3299,6 +3324,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3344,6 +3370,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3359,6 +3386,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3379,6 +3407,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"; @@ -3419,10 +3448,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3570,6 +3604,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3682,6 +3717,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"; @@ -3743,6 +3779,7 @@ self: super: { "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"; @@ -3852,6 +3889,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4139,6 +4177,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"; @@ -4409,6 +4448,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"; @@ -4416,6 +4456,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4435,6 +4476,7 @@ self: super: { "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"; @@ -4505,6 +4547,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"; @@ -4643,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"; @@ -4784,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"; @@ -4824,6 +4869,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"; @@ -4961,6 +5007,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"; @@ -5059,6 +5106,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5135,6 +5184,7 @@ self: super: { "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"; @@ -5164,6 +5214,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"; @@ -5207,6 +5258,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"; @@ -5220,6 +5272,7 @@ self: super: { "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"; @@ -5277,6 +5330,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5459,6 +5513,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5480,6 +5535,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5555,6 +5611,7 @@ self: super: { "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"; @@ -5760,6 +5817,7 @@ self: super: { "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"; @@ -5852,6 +5910,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"; @@ -5909,6 +5968,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"; @@ -5962,6 +6022,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6104,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"; @@ -6136,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"; @@ -6160,6 +6223,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6170,6 +6234,7 @@ self: super: { "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"; @@ -6178,6 +6243,7 @@ self: super: { "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"; @@ -6250,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"; @@ -6344,6 +6411,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6499,6 +6567,7 @@ self: super: { "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"; @@ -6693,6 +6762,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"; @@ -6927,6 +6997,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"; @@ -6935,6 +7006,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7103,6 +7175,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7214,6 +7287,7 @@ self: super: { "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"; @@ -7291,6 +7365,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7323,6 +7398,7 @@ self: super: { "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"; @@ -7336,6 +7412,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7711,6 +7788,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7721,6 +7799,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7878,6 +7958,7 @@ self: super: { "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"; @@ -7907,10 +7988,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7944,6 +8027,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8140,6 +8224,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8151,6 +8236,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"; @@ -8160,6 +8246,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8182,6 +8269,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8260,6 +8350,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index c6d5421a1be645376e80602a2305d294b792814b..14116331de75dd789362dca0b291fb3470843c53 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1134,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1504,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"; @@ -1552,6 +1559,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1713,6 +1721,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1730,6 +1739,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1768,6 +1778,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1856,6 +1867,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1873,7 +1885,9 @@ self: super: { "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"; @@ -1922,6 +1936,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"; @@ -1993,6 +2008,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2131,6 +2147,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"; @@ -2379,6 +2396,7 @@ self: super: { "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"; @@ -2515,6 +2533,7 @@ self: super: { "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"; @@ -2558,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"; @@ -2614,6 +2634,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2747,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"; @@ -2907,6 +2929,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2941,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"; @@ -3158,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"; @@ -3293,6 +3318,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3338,6 +3364,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3353,6 +3380,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3373,6 +3401,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"; @@ -3413,10 +3442,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3564,6 +3598,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3676,6 +3711,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"; @@ -3737,6 +3773,7 @@ self: super: { "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"; @@ -3845,6 +3882,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4132,6 +4170,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 +4441,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"; @@ -4409,6 +4449,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4428,6 +4469,7 @@ self: super: { "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"; @@ -4498,6 +4540,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 +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"; @@ -4777,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"; @@ -4817,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"; @@ -4954,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"; @@ -5051,6 +5098,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5127,6 +5176,7 @@ self: super: { "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"; @@ -5156,6 +5206,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 +5250,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"; @@ -5212,6 +5264,7 @@ self: super: { "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"; @@ -5269,6 +5322,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5451,6 +5505,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5472,6 +5527,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5547,6 +5603,7 @@ self: super: { "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"; @@ -5752,6 +5809,7 @@ self: super: { "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"; @@ -5844,6 +5902,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 +5960,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"; @@ -5954,6 +6014,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6096,6 +6157,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"; @@ -6128,6 +6190,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"; @@ -6152,6 +6215,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6162,6 +6226,7 @@ self: super: { "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"; @@ -6170,6 +6235,7 @@ self: super: { "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"; @@ -6242,6 +6308,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 +6403,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6491,6 +6559,7 @@ self: super: { "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"; @@ -6685,6 +6754,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"; @@ -6919,6 +6989,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"; @@ -6927,6 +6998,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7095,6 +7167,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7143,6 +7216,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"; @@ -7205,6 +7279,7 @@ self: super: { "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"; @@ -7282,6 +7357,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7314,6 +7390,7 @@ self: super: { "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"; @@ -7327,6 +7404,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7702,6 +7780,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7712,6 +7791,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7869,6 +7950,7 @@ self: super: { "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"; @@ -7898,10 +7980,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7935,6 +8019,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8131,6 +8216,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8142,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"; @@ -8151,6 +8238,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8173,6 +8261,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8251,6 +8342,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index b0ec9efa812de302a8c1c5134a54c1f1b5a6e371..e1a2bbbc968c9bac4a89b3336be22b42cac161b4 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1134,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1436,6 +1442,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 +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"; @@ -1550,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1710,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1727,6 +1737,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1765,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1853,6 +1865,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1870,7 +1883,9 @@ self: super: { "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"; @@ -1919,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"; @@ -1990,6 +2006,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2128,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"; @@ -2376,6 +2394,7 @@ self: super: { "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"; @@ -2512,6 +2531,7 @@ self: super: { "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"; @@ -2555,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"; @@ -2611,6 +2632,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2744,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"; @@ -2903,6 +2926,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2937,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"; @@ -3153,6 +3178,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"; @@ -3287,6 +3313,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3332,6 +3359,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3347,6 +3375,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3367,6 +3396,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"; @@ -3407,10 +3437,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3558,6 +3593,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3670,6 +3706,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"; @@ -3731,6 +3768,7 @@ self: super: { "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"; @@ -3827,6 +3865,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"; @@ -3838,6 +3877,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4125,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"; @@ -4395,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"; @@ -4402,6 +4444,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4421,6 +4464,7 @@ self: super: { "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"; @@ -4491,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"; @@ -4629,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"; @@ -4770,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"; @@ -4810,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"; @@ -4947,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"; @@ -5044,6 +5093,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5120,6 +5171,7 @@ self: super: { "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"; @@ -5149,6 +5201,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"; @@ -5192,6 +5245,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"; @@ -5205,6 +5259,7 @@ self: super: { "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"; @@ -5262,6 +5317,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5444,6 +5500,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5465,6 +5522,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; @@ -5540,6 +5598,7 @@ self: super: { "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"; @@ -5745,6 +5804,7 @@ self: super: { "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"; @@ -5836,6 +5896,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"; @@ -5893,6 +5954,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"; @@ -5946,6 +6008,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6088,6 +6151,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"; @@ -6120,6 +6184,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"; @@ -6144,6 +6209,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6154,6 +6220,7 @@ self: super: { "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"; @@ -6162,6 +6229,7 @@ self: super: { "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"; @@ -6234,6 +6302,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"; @@ -6328,6 +6397,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6483,6 +6553,7 @@ self: super: { "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"; @@ -6566,6 +6637,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6676,6 +6748,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"; @@ -6910,6 +6983,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"; @@ -6918,6 +6992,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7086,6 +7161,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7134,6 +7210,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"; @@ -7196,6 +7273,7 @@ self: super: { "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"; @@ -7273,6 +7351,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7305,6 +7384,7 @@ self: super: { "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"; @@ -7318,6 +7398,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7693,6 +7774,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7703,6 +7785,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7860,6 +7944,7 @@ self: super: { "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"; @@ -7889,10 +7974,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7926,6 +8013,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8122,6 +8210,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8133,6 +8222,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"; @@ -8142,6 +8232,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8164,6 +8255,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8242,6 +8336,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 18328bd080eebcbb631f5a865edb5b1708af7957..28058c94292e0e6fbe3d29980d5770bda3ffc8eb 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1134,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1436,6 +1442,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 +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"; @@ -1550,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1710,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1722,10 +1732,12 @@ 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"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1764,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1851,6 +1864,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1882,9 @@ self: super: { "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"; @@ -1917,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"; @@ -1988,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2126,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"; @@ -2374,6 +2393,7 @@ self: super: { "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"; @@ -2510,6 +2530,7 @@ self: super: { "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"; @@ -2553,6 +2574,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"; @@ -2609,6 +2631,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2742,6 +2765,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"; @@ -2900,6 +2924,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2934,6 +2959,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"; @@ -3150,6 +3176,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"; @@ -3284,6 +3311,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3329,6 +3357,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3344,6 +3373,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3364,6 +3394,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"; @@ -3404,10 +3435,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3555,6 +3591,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3574,6 +3611,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"; @@ -3666,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"; @@ -3727,6 +3766,7 @@ self: super: { "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"; @@ -3823,6 +3863,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"; @@ -3834,6 +3875,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4120,6 +4162,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"; @@ -4390,6 +4433,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"; @@ -4397,6 +4441,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4416,6 +4461,7 @@ self: super: { "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"; @@ -4486,6 +4532,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"; @@ -4624,6 +4671,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"; @@ -4765,6 +4813,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"; @@ -4805,6 +4854,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"; @@ -4942,6 +4992,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"; @@ -5039,6 +5090,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5115,6 +5168,7 @@ self: super: { "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"; @@ -5144,6 +5198,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"; @@ -5187,6 +5242,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"; @@ -5200,6 +5256,7 @@ self: super: { "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"; @@ -5257,6 +5314,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5439,6 +5497,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5460,6 +5519,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5535,6 +5595,7 @@ self: super: { "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"; @@ -5739,6 +5800,7 @@ self: super: { "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"; @@ -5830,6 +5892,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"; @@ -5887,6 +5950,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"; @@ -5940,6 +6004,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6082,6 +6147,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"; @@ -6114,6 +6180,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"; @@ -6137,6 +6204,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6147,6 +6215,7 @@ self: super: { "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"; @@ -6155,6 +6224,7 @@ self: super: { "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"; @@ -6227,6 +6297,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"; @@ -6321,6 +6392,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6476,6 +6548,7 @@ self: super: { "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"; @@ -6559,6 +6632,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6669,6 +6743,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"; @@ -6903,6 +6978,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"; @@ -6911,6 +6987,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7079,6 +7156,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7127,6 +7205,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"; @@ -7189,6 +7268,7 @@ self: super: { "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"; @@ -7266,6 +7346,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7298,6 +7379,7 @@ self: super: { "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"; @@ -7311,6 +7393,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7685,6 +7768,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7695,6 +7779,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7852,6 +7938,7 @@ self: super: { "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"; @@ -7881,10 +7968,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7918,6 +8007,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8114,6 +8204,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8125,6 +8216,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"; @@ -8134,6 +8226,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8155,6 +8248,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8233,6 +8329,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index f4fbe751b3bf8e1414a354630e151b3162cf24c8..26cb22600e13a17e4b94cdd1d54d92b7ac02f35e 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1134,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1436,6 +1442,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 +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"; @@ -1550,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1710,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1722,10 +1732,12 @@ 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"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1764,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1851,6 +1864,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1882,9 @@ self: super: { "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"; @@ -1917,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"; @@ -1988,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2126,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"; @@ -2374,6 +2393,7 @@ self: super: { "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"; @@ -2510,6 +2530,7 @@ self: super: { "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"; @@ -2553,6 +2574,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"; @@ -2609,6 +2631,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2742,6 +2765,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"; @@ -2900,6 +2924,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2934,6 +2959,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"; @@ -3149,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"; @@ -3283,6 +3310,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3328,6 +3356,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3343,6 +3372,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3363,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"; @@ -3403,10 +3434,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3554,6 +3590,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3573,6 +3610,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"; @@ -3665,6 +3703,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"; @@ -3726,6 +3765,7 @@ self: super: { "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"; @@ -3822,6 +3862,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"; @@ -3833,6 +3874,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4119,6 +4161,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"; @@ -4389,6 +4432,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"; @@ -4396,6 +4440,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4415,6 +4460,7 @@ self: super: { "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"; @@ -4485,6 +4531,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"; @@ -4623,6 +4670,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"; @@ -4764,6 +4812,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"; @@ -4804,6 +4853,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"; @@ -4941,6 +4991,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"; @@ -5038,6 +5089,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5114,6 +5167,7 @@ self: super: { "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"; @@ -5143,6 +5197,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"; @@ -5186,6 +5241,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"; @@ -5199,6 +5255,7 @@ self: super: { "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"; @@ -5256,6 +5313,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5437,6 +5495,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5458,6 +5517,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5532,6 +5592,7 @@ self: super: { "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"; @@ -5736,6 +5797,7 @@ self: super: { "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"; @@ -5827,6 +5889,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"; @@ -5884,6 +5947,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"; @@ -5937,6 +6001,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6079,6 +6144,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"; @@ -6111,6 +6177,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"; @@ -6134,6 +6201,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6144,6 +6212,7 @@ self: super: { "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"; @@ -6152,6 +6221,7 @@ self: super: { "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"; @@ -6224,6 +6294,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"; @@ -6318,6 +6389,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6473,6 +6545,7 @@ self: super: { "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"; @@ -6556,6 +6629,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6666,6 +6740,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"; @@ -6900,6 +6975,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"; @@ -6908,6 +6984,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7076,6 +7153,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7123,6 +7201,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"; @@ -7184,6 +7263,7 @@ self: super: { "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"; @@ -7261,6 +7341,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7293,6 +7374,7 @@ self: super: { "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"; @@ -7306,6 +7388,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7680,6 +7763,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7690,6 +7774,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7847,6 +7933,7 @@ self: super: { "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"; @@ -7876,10 +7963,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7913,6 +8002,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8109,6 +8199,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8120,6 +8211,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"; @@ -8129,6 +8221,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8150,6 +8243,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8228,6 +8324,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index fa88242206fbd7c9332b205b25d00c70693d891c..86dc3b2988a41e2c80a955382c186ba77d2fd7eb 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1139,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1514,6 +1520,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"; @@ -1562,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1724,6 +1732,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1741,6 +1750,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1779,6 +1789,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1867,6 +1878,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1884,7 +1896,9 @@ self: super: { "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"; @@ -1934,6 +1948,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"; @@ -2006,6 +2021,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2145,6 +2161,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"; @@ -2395,6 +2412,7 @@ self: super: { "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"; @@ -2532,6 +2550,7 @@ self: super: { "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"; @@ -2576,6 +2595,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"; @@ -2632,6 +2652,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2766,6 +2787,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"; @@ -2928,6 +2950,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2962,6 +2985,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"; @@ -3184,6 +3208,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"; @@ -3320,6 +3345,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3365,6 +3391,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3380,6 +3407,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3400,6 +3428,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"; @@ -3441,10 +3470,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3592,6 +3626,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3707,6 +3742,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"; @@ -3768,6 +3804,7 @@ self: super: { "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"; @@ -3877,6 +3914,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4166,6 +4204,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"; @@ -4438,6 +4477,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"; @@ -4445,6 +4485,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4465,6 +4506,7 @@ self: super: { "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"; @@ -4537,6 +4579,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"; @@ -4677,6 +4720,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"; @@ -4818,6 +4862,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"; @@ -4862,6 +4907,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"; @@ -5000,6 +5046,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"; @@ -5098,6 +5145,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5175,6 +5224,7 @@ self: super: { "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"; @@ -5204,6 +5254,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"; @@ -5248,6 +5299,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"; @@ -5261,6 +5313,7 @@ self: super: { "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"; @@ -5318,6 +5371,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5505,6 +5559,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5526,6 +5581,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5603,6 +5659,7 @@ self: super: { "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"; @@ -5812,6 +5869,7 @@ self: super: { "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"; @@ -5904,6 +5962,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"; @@ -5961,6 +6020,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"; @@ -6016,6 +6076,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6159,6 +6220,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"; @@ -6192,6 +6254,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"; @@ -6216,6 +6279,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6226,6 +6290,7 @@ self: super: { "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"; @@ -6234,6 +6299,7 @@ self: super: { "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"; @@ -6403,6 +6469,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6559,6 +6626,7 @@ self: super: { "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"; @@ -6755,6 +6823,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"; @@ -6991,6 +7060,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"; @@ -6999,6 +7069,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7169,6 +7240,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7281,6 +7353,7 @@ self: super: { "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"; @@ -7359,6 +7432,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7397,6 +7471,7 @@ self: super: { "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"; @@ -7410,6 +7485,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7789,6 +7865,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7799,6 +7876,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7958,6 +8037,7 @@ self: super: { "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"; @@ -7987,10 +8067,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8024,6 +8106,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8220,6 +8303,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8231,6 +8315,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"; @@ -8240,6 +8325,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8263,6 +8349,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8341,6 +8430,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index beb329bab16d615acf38484228951940976bf451..b931af0d41aa6344d4dca1d3d4c8ad355dcaba24 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1134,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1436,6 +1442,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 +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"; @@ -1550,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1710,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1722,10 +1732,12 @@ 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"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1764,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1851,6 +1864,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1882,9 @@ self: super: { "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"; @@ -1917,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"; @@ -1988,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2125,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"; @@ -2373,6 +2392,7 @@ self: super: { "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"; @@ -2509,6 +2529,7 @@ self: super: { "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"; @@ -2552,6 +2573,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"; @@ -2608,6 +2630,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2741,6 +2764,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"; @@ -2899,6 +2923,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2933,6 +2958,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"; @@ -2951,6 +2977,7 @@ self: super: { "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-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3147,6 +3174,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"; @@ -3281,6 +3309,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3326,6 +3355,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3341,6 +3371,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3361,6 +3392,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"; @@ -3401,10 +3433,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3552,6 +3589,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3571,6 +3609,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"; @@ -3663,6 +3702,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"; @@ -3724,6 +3764,7 @@ self: super: { "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"; @@ -3819,6 +3860,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"; @@ -3830,6 +3872,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4116,6 +4159,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"; @@ -4386,6 +4430,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"; @@ -4393,6 +4438,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4412,6 +4458,7 @@ self: super: { "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"; @@ -4482,6 +4529,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"; @@ -4620,6 +4668,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"; @@ -4761,6 +4810,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"; @@ -4801,6 +4851,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"; @@ -4938,6 +4989,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"; @@ -5035,6 +5087,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5111,6 +5165,7 @@ self: super: { "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"; @@ -5140,6 +5195,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"; @@ -5183,6 +5239,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"; @@ -5196,6 +5253,7 @@ self: super: { "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"; @@ -5253,6 +5311,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5434,6 +5493,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_0"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5455,6 +5515,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5529,6 +5590,7 @@ self: super: { "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"; @@ -5733,6 +5795,7 @@ self: super: { "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"; @@ -5824,6 +5887,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"; @@ -5881,6 +5945,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"; @@ -5934,6 +5999,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6076,6 +6142,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"; @@ -6108,6 +6175,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"; @@ -6130,6 +6198,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6140,6 +6209,7 @@ self: super: { "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"; @@ -6148,6 +6218,7 @@ self: super: { "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"; @@ -6220,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"; @@ -6314,6 +6386,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6469,6 +6542,7 @@ self: super: { "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"; @@ -6552,6 +6626,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6662,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"; @@ -6896,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"; @@ -6904,6 +6981,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7071,6 +7149,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7118,6 +7197,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"; @@ -7179,6 +7259,7 @@ self: super: { "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"; @@ -7256,6 +7337,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7288,6 +7370,7 @@ self: super: { "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"; @@ -7301,6 +7384,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7675,6 +7759,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7685,6 +7770,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7842,6 +7929,7 @@ self: super: { "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"; @@ -7871,10 +7959,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7908,6 +7998,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8104,6 +8195,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8115,6 +8207,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"; @@ -8124,6 +8217,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8145,6 +8239,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8223,6 +8320,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 962ee75a7bcd25b75e838ca594d941870118ef25..d9d7c49b0a3ce8ae725554fd19824ca41702ec22 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1134,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1436,6 +1442,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 +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"; @@ -1550,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1710,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1722,10 +1732,12 @@ 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"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1764,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1851,6 +1864,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1868,7 +1882,9 @@ self: super: { "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"; @@ -1917,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"; @@ -1988,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2125,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"; @@ -2373,6 +2392,7 @@ self: super: { "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"; @@ -2509,6 +2529,7 @@ self: super: { "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"; @@ -2552,6 +2573,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"; @@ -2608,6 +2630,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2741,6 +2764,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"; @@ -2899,6 +2923,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2933,6 +2958,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"; @@ -2951,6 +2977,7 @@ self: super: { "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-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3147,6 +3174,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"; @@ -3281,6 +3309,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3326,6 +3355,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3341,6 +3371,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3361,12 +3392,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3400,10 +3433,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3551,6 +3589,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3570,6 +3609,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"; @@ -3662,6 +3702,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"; @@ -3723,6 +3764,7 @@ self: super: { "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"; @@ -3818,6 +3860,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"; @@ -3829,6 +3872,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4115,6 +4159,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"; @@ -4385,6 +4430,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"; @@ -4392,6 +4438,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4411,6 +4458,7 @@ self: super: { "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"; @@ -4481,6 +4529,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"; @@ -4619,6 +4668,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"; @@ -4760,6 +4810,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"; @@ -4800,6 +4851,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"; @@ -4937,6 +4989,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"; @@ -5033,6 +5086,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5109,6 +5164,7 @@ self: super: { "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"; @@ -5138,6 +5194,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"; @@ -5181,6 +5238,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"; @@ -5194,6 +5252,7 @@ self: super: { "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"; @@ -5251,6 +5310,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5432,6 +5492,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_0"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5453,6 +5514,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5527,6 +5589,7 @@ self: super: { "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"; @@ -5731,6 +5794,7 @@ self: super: { "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"; @@ -5822,6 +5886,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"; @@ -5879,6 +5944,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"; @@ -5932,6 +5998,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6074,6 +6141,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"; @@ -6106,6 +6174,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"; @@ -6128,6 +6197,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6138,6 +6208,7 @@ self: super: { "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"; @@ -6146,6 +6217,7 @@ self: super: { "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"; @@ -6218,6 +6290,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"; @@ -6311,6 +6384,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6466,6 +6540,7 @@ self: super: { "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"; @@ -6549,6 +6624,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6659,6 +6735,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"; @@ -6893,6 +6970,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"; @@ -6901,6 +6979,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7068,6 +7147,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7115,6 +7195,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"; @@ -7176,6 +7257,7 @@ self: super: { "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"; @@ -7253,6 +7335,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7285,6 +7368,7 @@ self: super: { "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"; @@ -7298,6 +7382,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7672,6 +7757,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7682,6 +7768,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7839,6 +7927,7 @@ self: super: { "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"; @@ -7868,10 +7957,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7905,6 +7996,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8099,6 +8191,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8110,6 +8203,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"; @@ -8119,6 +8213,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8140,6 +8235,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8218,6 +8316,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 800e96ff390e4c62f32bba7aad14038c958ef919..032fc30dfae7cc135bafa71b04f531f3ff8f433e 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"; @@ -721,6 +724,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -792,6 +796,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -902,6 +907,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1133,6 +1139,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1435,6 +1442,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"; @@ -1501,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"; @@ -1549,6 +1558,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1709,6 +1719,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1721,10 +1732,12 @@ 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"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1763,6 +1776,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1850,6 +1864,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1867,7 +1882,9 @@ self: super: { "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"; @@ -1916,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"; @@ -1987,6 +2005,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2124,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"; @@ -2372,6 +2392,7 @@ self: super: { "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"; @@ -2508,6 +2529,7 @@ self: super: { "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"; @@ -2551,6 +2573,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"; @@ -2607,6 +2630,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_4"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2740,6 +2764,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"; @@ -2898,6 +2923,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2932,6 +2958,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"; @@ -2950,6 +2977,7 @@ self: super: { "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-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3146,6 +3174,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"; @@ -3280,6 +3309,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3325,6 +3355,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3340,6 +3371,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3360,12 +3392,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3399,10 +3433,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3550,6 +3589,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3569,6 +3609,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"; @@ -3661,6 +3702,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"; @@ -3722,6 +3764,7 @@ self: super: { "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"; @@ -3817,6 +3860,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"; @@ -3828,6 +3872,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4113,6 +4158,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"; @@ -4383,6 +4429,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"; @@ -4390,6 +4437,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4409,6 +4457,7 @@ self: super: { "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"; @@ -4479,6 +4528,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"; @@ -4617,6 +4667,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"; @@ -4758,6 +4809,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"; @@ -4798,6 +4850,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"; @@ -4807,6 +4860,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"; @@ -4934,6 +4988,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"; @@ -5030,6 +5085,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5106,6 +5163,7 @@ self: super: { "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"; @@ -5135,6 +5193,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"; @@ -5178,6 +5237,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"; @@ -5191,6 +5251,7 @@ self: super: { "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"; @@ -5248,6 +5309,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5428,6 +5490,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5449,6 +5512,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5523,6 +5587,7 @@ self: super: { "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"; @@ -5727,6 +5792,7 @@ self: super: { "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"; @@ -5818,6 +5884,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"; @@ -5875,6 +5942,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"; @@ -5928,6 +5996,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6070,6 +6139,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"; @@ -6102,6 +6172,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"; @@ -6124,6 +6195,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6134,6 +6206,7 @@ self: super: { "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"; @@ -6142,6 +6215,7 @@ self: super: { "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"; @@ -6214,6 +6288,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"; @@ -6307,6 +6382,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6462,6 +6538,7 @@ self: super: { "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"; @@ -6545,6 +6622,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6655,6 +6733,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"; @@ -6889,6 +6968,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"; @@ -6897,6 +6977,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7064,6 +7145,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7111,6 +7193,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"; @@ -7172,6 +7255,7 @@ self: super: { "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"; @@ -7249,6 +7333,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7281,6 +7366,7 @@ self: super: { "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"; @@ -7294,6 +7380,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_5_4"; @@ -7668,6 +7755,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7678,6 +7766,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7835,6 +7925,7 @@ self: super: { "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"; @@ -7864,10 +7955,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7901,6 +7994,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8095,6 +8189,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8106,6 +8201,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"; @@ -8115,6 +8211,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8136,6 +8233,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8214,6 +8314,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 732e6c33b7fcdd08c10fe08cd78d2ce85a307813..a73b8c61ac76cbe4409ee353724fa3e30188c6df 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1139,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1514,6 +1520,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"; @@ -1562,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1724,6 +1732,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1741,6 +1750,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1779,6 +1789,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1867,6 +1878,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1884,7 +1896,9 @@ self: super: { "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"; @@ -1934,6 +1948,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"; @@ -2006,6 +2021,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2145,6 +2161,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"; @@ -2395,6 +2412,7 @@ self: super: { "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"; @@ -2532,6 +2550,7 @@ self: super: { "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"; @@ -2576,6 +2595,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"; @@ -2632,6 +2652,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2766,6 +2787,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"; @@ -2928,6 +2950,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2962,6 +2985,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 +3207,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"; @@ -3319,6 +3344,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3364,6 +3390,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3379,6 +3406,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3399,6 +3427,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"; @@ -3440,10 +3469,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3591,6 +3625,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3706,6 +3741,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"; @@ -3767,6 +3803,7 @@ self: super: { "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"; @@ -3876,6 +3913,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4165,6 +4203,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"; @@ -4437,6 +4476,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"; @@ -4444,6 +4484,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4464,6 +4505,7 @@ self: super: { "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"; @@ -4536,6 +4578,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"; @@ -4675,6 +4718,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"; @@ -4816,6 +4860,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"; @@ -4860,6 +4905,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"; @@ -4998,6 +5044,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"; @@ -5096,6 +5143,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5173,6 +5222,7 @@ self: super: { "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"; @@ -5202,6 +5252,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"; @@ -5246,6 +5297,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"; @@ -5259,6 +5311,7 @@ self: super: { "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"; @@ -5316,6 +5369,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5503,6 +5557,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5524,6 +5579,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5601,6 +5657,7 @@ self: super: { "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"; @@ -5810,6 +5867,7 @@ self: super: { "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"; @@ -5902,6 +5960,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"; @@ -5959,6 +6018,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"; @@ -6014,6 +6074,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6157,6 +6218,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"; @@ -6190,6 +6252,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"; @@ -6214,6 +6277,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6224,6 +6288,7 @@ self: super: { "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"; @@ -6232,6 +6297,7 @@ self: super: { "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"; @@ -6401,6 +6467,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6557,6 +6624,7 @@ self: super: { "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"; @@ -6753,6 +6821,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"; @@ -6989,6 +7058,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"; @@ -6997,6 +7067,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7166,6 +7237,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7278,6 +7350,7 @@ self: super: { "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"; @@ -7356,6 +7429,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7394,6 +7468,7 @@ self: super: { "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"; @@ -7407,6 +7482,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7786,6 +7862,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7796,6 +7873,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7955,6 +8034,7 @@ self: super: { "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"; @@ -7984,10 +8064,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8021,6 +8103,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8217,6 +8300,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8228,6 +8312,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"; @@ -8237,6 +8322,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8260,6 +8346,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8338,6 +8427,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index d39ef0b551dd3f81880004399454ad22d3c0024f..027b53e251f9d4f34218d4f302380ebacb2e256d 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1139,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1514,6 +1520,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"; @@ -1562,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1723,6 +1731,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1740,6 +1749,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1778,6 +1788,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1866,6 +1877,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1883,7 +1895,9 @@ self: super: { "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"; @@ -1933,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"; @@ -2005,6 +2020,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2144,6 +2160,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"; @@ -2394,6 +2411,7 @@ self: super: { "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"; @@ -2531,6 +2549,7 @@ self: super: { "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"; @@ -2575,6 +2594,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"; @@ -2631,6 +2651,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2765,6 +2786,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"; @@ -2927,6 +2949,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2961,6 +2984,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"; @@ -3182,6 +3206,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"; @@ -3318,6 +3343,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3363,6 +3389,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3378,6 +3405,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3398,6 +3426,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"; @@ -3439,10 +3468,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3590,6 +3624,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3705,6 +3740,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"; @@ -3766,6 +3802,7 @@ self: super: { "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"; @@ -3875,6 +3912,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4164,6 +4202,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"; @@ -4436,6 +4475,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"; @@ -4443,6 +4483,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4463,6 +4504,7 @@ self: super: { "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"; @@ -4535,6 +4577,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"; @@ -4674,6 +4717,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"; @@ -4815,6 +4859,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"; @@ -4859,6 +4904,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"; @@ -4997,6 +5043,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"; @@ -5095,6 +5142,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5172,6 +5221,7 @@ self: super: { "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"; @@ -5201,6 +5251,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"; @@ -5245,6 +5296,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"; @@ -5258,6 +5310,7 @@ self: super: { "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"; @@ -5315,6 +5368,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5501,6 +5555,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5522,6 +5577,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5599,6 +5655,7 @@ self: super: { "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"; @@ -5808,6 +5865,7 @@ self: super: { "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"; @@ -5900,6 +5958,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"; @@ -5957,6 +6016,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"; @@ -6011,6 +6071,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6153,6 +6214,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"; @@ -6186,6 +6248,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"; @@ -6210,6 +6273,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6220,6 +6284,7 @@ self: super: { "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"; @@ -6228,6 +6293,7 @@ self: super: { "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"; @@ -6397,6 +6463,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6553,6 +6620,7 @@ self: super: { "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"; @@ -6748,6 +6816,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 +7053,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"; @@ -6992,6 +7062,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7161,6 +7232,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7273,6 +7345,7 @@ self: super: { "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"; @@ -7351,6 +7424,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7389,6 +7463,7 @@ self: super: { "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"; @@ -7402,6 +7477,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7781,6 +7857,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7791,6 +7868,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7950,6 +8029,7 @@ self: super: { "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"; @@ -7979,10 +8059,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8016,6 +8098,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8212,6 +8295,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8223,6 +8307,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"; @@ -8232,6 +8317,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8255,6 +8341,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8333,6 +8422,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index bc182e5e660f9ded40b7911e8bb122f78c0b4b39..d23b46cfd4b081d24608ecc7f77253f995cfd1fa 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1139,6 +1144,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1514,6 +1520,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"; @@ -1562,6 +1569,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1723,6 +1731,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1740,6 +1749,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1778,6 +1788,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1866,6 +1877,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1883,7 +1895,9 @@ self: super: { "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"; @@ -1933,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"; @@ -2005,6 +2020,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2144,6 +2160,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 +2410,7 @@ self: super: { "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"; @@ -2530,6 +2548,7 @@ self: super: { "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"; @@ -2574,6 +2593,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"; @@ -2630,6 +2650,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2764,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"; @@ -2926,6 +2948,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2960,6 +2983,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"; @@ -3181,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"; @@ -3317,6 +3342,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3362,6 +3388,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3377,6 +3404,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3397,6 +3425,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"; @@ -3438,10 +3467,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3589,6 +3623,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3704,6 +3739,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"; @@ -3765,6 +3801,7 @@ self: super: { "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"; @@ -3874,6 +3911,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4163,6 +4201,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"; @@ -4435,6 +4474,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"; @@ -4442,6 +4482,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4462,6 +4503,7 @@ self: super: { "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"; @@ -4534,6 +4576,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"; @@ -4673,6 +4716,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"; @@ -4814,6 +4858,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"; @@ -4858,6 +4903,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"; @@ -4996,6 +5042,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"; @@ -5094,6 +5141,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5171,6 +5220,7 @@ self: super: { "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"; @@ -5200,6 +5250,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"; @@ -5243,6 +5294,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"; @@ -5256,6 +5308,7 @@ self: super: { "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"; @@ -5313,6 +5366,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5499,6 +5553,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5520,6 +5575,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5597,6 +5653,7 @@ self: super: { "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"; @@ -5806,6 +5863,7 @@ self: super: { "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"; @@ -5898,6 +5956,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"; @@ -5955,6 +6014,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"; @@ -6009,6 +6069,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6151,6 +6212,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"; @@ -6184,6 +6246,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"; @@ -6208,6 +6271,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6218,6 +6282,7 @@ self: super: { "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"; @@ -6226,6 +6291,7 @@ self: super: { "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"; @@ -6395,6 +6461,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6551,6 +6618,7 @@ self: super: { "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"; @@ -6746,6 +6814,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"; @@ -6982,6 +7051,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"; @@ -6990,6 +7060,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7159,6 +7230,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7271,6 +7343,7 @@ self: super: { "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"; @@ -7349,6 +7422,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7386,6 +7460,7 @@ self: super: { "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"; @@ -7399,6 +7474,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7778,6 +7854,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7788,6 +7865,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7947,6 +8026,7 @@ self: super: { "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"; @@ -7976,10 +8056,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8013,6 +8095,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8209,6 +8292,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8220,6 +8304,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"; @@ -8229,6 +8314,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8252,6 +8338,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8330,6 +8419,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index c37a385b4a6bc97cc794eb2ff9848562d9bd5262..079c34dca60464cf87b6eebe322cf15a3d4dd51a 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"; @@ -724,6 +727,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -795,6 +799,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1137,6 +1142,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1511,6 +1517,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"; @@ -1559,6 +1566,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1720,6 +1728,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1737,6 +1746,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1775,6 +1785,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1863,6 +1874,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1880,7 +1892,9 @@ self: super: { "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"; @@ -1930,6 +1944,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"; @@ -2002,6 +2017,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2141,6 +2157,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"; @@ -2390,6 +2407,7 @@ self: super: { "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"; @@ -2527,6 +2545,7 @@ self: super: { "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"; @@ -2571,6 +2590,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"; @@ -2627,6 +2647,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2761,6 +2782,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"; @@ -2923,6 +2945,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2957,6 +2980,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 +3202,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"; @@ -3314,6 +3339,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3359,6 +3385,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3374,6 +3401,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3394,6 +3422,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"; @@ -3435,10 +3464,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3586,6 +3620,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3699,6 +3734,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"; @@ -3760,6 +3796,7 @@ self: super: { "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"; @@ -3869,6 +3906,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4158,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_20"; "hlogger" = dontDistribute super."hlogger"; @@ -4430,6 +4469,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"; @@ -4437,6 +4477,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4457,6 +4498,7 @@ self: super: { "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"; @@ -4529,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"; @@ -4668,6 +4711,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 +4853,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"; @@ -4853,6 +4898,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"; @@ -4991,6 +5037,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"; @@ -5089,6 +5136,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5166,6 +5215,7 @@ self: super: { "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"; @@ -5195,6 +5245,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"; @@ -5238,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"; @@ -5251,6 +5303,7 @@ self: super: { "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"; @@ -5308,6 +5361,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5494,6 +5548,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5515,6 +5570,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5592,6 +5648,7 @@ self: super: { "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"; @@ -5800,6 +5857,7 @@ self: super: { "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"; @@ -5892,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"; @@ -5949,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"; @@ -6003,6 +6063,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6145,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"; @@ -6178,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"; @@ -6202,6 +6265,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6212,6 +6276,7 @@ self: super: { "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"; @@ -6220,6 +6285,7 @@ self: super: { "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"; @@ -6389,6 +6455,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6545,6 +6612,7 @@ self: super: { "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"; @@ -6740,6 +6808,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"; @@ -6976,6 +7045,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"; @@ -6984,6 +7054,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7153,6 +7224,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7265,6 +7337,7 @@ self: super: { "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"; @@ -7343,6 +7416,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7380,6 +7454,7 @@ self: super: { "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"; @@ -7393,6 +7468,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7772,6 +7848,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7782,6 +7859,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7939,6 +8018,7 @@ self: super: { "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"; @@ -7968,10 +8048,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8005,6 +8087,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8201,6 +8284,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8212,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"; @@ -8221,6 +8306,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8244,6 +8330,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8322,6 +8411,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 761dd29669a62153ad40d037ff8d528d94d97e64..992831b11e599378539d51a2488434c9c8e47cb3 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"; @@ -723,6 +726,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -794,6 +798,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1136,6 +1141,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1510,6 +1516,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"; @@ -1558,6 +1565,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1719,6 +1727,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1736,6 +1745,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1774,6 +1784,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1862,6 +1873,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1879,7 +1891,9 @@ self: super: { "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"; @@ -1929,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"; @@ -2001,6 +2016,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2140,6 +2156,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 +2406,7 @@ self: super: { "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"; @@ -2526,6 +2544,7 @@ self: super: { "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"; @@ -2570,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"; @@ -2626,6 +2646,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2760,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"; @@ -2922,6 +2944,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2956,6 +2979,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"; @@ -3177,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"; @@ -3313,6 +3338,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3358,6 +3384,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3373,6 +3400,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3393,6 +3421,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"; @@ -3434,10 +3463,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3585,6 +3619,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3698,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"; @@ -3759,6 +3795,7 @@ self: super: { "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"; @@ -3868,6 +3905,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4157,6 +4195,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"; @@ -4429,6 +4468,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"; @@ -4436,6 +4476,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4456,6 +4497,7 @@ self: super: { "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"; @@ -4528,6 +4570,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"; @@ -4667,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"; @@ -4808,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"; @@ -4852,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"; @@ -4990,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"; @@ -5088,6 +5135,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5165,6 +5214,7 @@ self: super: { "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"; @@ -5194,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-attoparsec" = dontDistribute super."list-t-attoparsec"; "list-t-html-parser" = dontDistribute super."list-t-html-parser"; @@ -5237,6 +5288,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"; @@ -5250,6 +5302,7 @@ self: super: { "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"; @@ -5307,6 +5360,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5493,6 +5547,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5514,6 +5569,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5591,6 +5647,7 @@ self: super: { "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"; @@ -5799,6 +5856,7 @@ self: super: { "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"; @@ -5891,6 +5949,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"; @@ -5948,6 +6007,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"; @@ -6002,6 +6062,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6144,6 +6205,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"; @@ -6177,6 +6239,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"; @@ -6201,6 +6264,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6211,6 +6275,7 @@ self: super: { "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"; @@ -6219,6 +6284,7 @@ self: super: { "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"; @@ -6388,6 +6454,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6544,6 +6611,7 @@ self: super: { "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"; @@ -6739,6 +6807,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"; @@ -6975,6 +7044,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"; @@ -6983,6 +7053,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7152,6 +7223,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7264,6 +7336,7 @@ self: super: { "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"; @@ -7342,6 +7415,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_6_0_1"; "stackage-build-plan" = dontDistribute super."stackage-build-plan"; @@ -7379,6 +7453,7 @@ self: super: { "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"; @@ -7392,6 +7467,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7771,6 +7847,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7781,6 +7858,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7938,6 +8017,7 @@ self: super: { "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"; @@ -7967,10 +8047,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -8004,6 +8086,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1"; "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"; @@ -8200,6 +8283,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8211,6 +8295,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"; @@ -8220,6 +8305,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8243,6 +8329,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8321,6 +8410,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 1745628da63c3c607532c92def0e63854f9107c6..0ba988c6a2d3fd17c0784232d4e80b420c56bdf2 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1509,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"; @@ -1557,6 +1564,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1718,6 +1726,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1735,6 +1744,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1773,6 +1783,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1861,6 +1872,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1878,7 +1890,9 @@ self: super: { "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"; @@ -1928,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"; @@ -2000,6 +2015,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2139,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"; @@ -2388,6 +2405,7 @@ self: super: { "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"; @@ -2525,6 +2543,7 @@ self: super: { "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"; @@ -2569,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"; @@ -2625,6 +2645,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2759,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_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2921,6 +2943,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2955,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"; @@ -3175,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"; @@ -3311,6 +3336,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3356,6 +3382,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3371,6 +3398,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3391,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_6"; "gl-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; @@ -3432,10 +3461,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3583,6 +3617,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3696,6 +3731,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"; @@ -3757,6 +3793,7 @@ self: super: { "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"; @@ -3866,6 +3903,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4155,6 +4193,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"; @@ -4427,6 +4466,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"; @@ -4434,6 +4474,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4454,6 +4495,7 @@ self: super: { "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"; @@ -4525,6 +4567,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 +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"; @@ -4805,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"; @@ -4848,6 +4893,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"; @@ -4986,6 +5032,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"; @@ -5084,6 +5131,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5161,6 +5210,7 @@ self: super: { "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"; @@ -5190,6 +5240,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"; @@ -5233,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"; @@ -5246,6 +5298,7 @@ self: super: { "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"; @@ -5303,6 +5356,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_0"; "machines-io" = doDistribute super."machines-io_0_2_0_0"; "machines-process" = doDistribute super."machines-process_0_2_0_0"; @@ -5489,6 +5543,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5510,6 +5565,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5587,6 +5643,7 @@ self: super: { "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"; @@ -5795,6 +5852,7 @@ self: super: { "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"; @@ -5887,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"; @@ -5944,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" = doDistribute super."optparse-simple_0_0_2"; "orc" = dontDistribute super."orc"; @@ -5998,6 +6058,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6140,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"; @@ -6173,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"; @@ -6197,6 +6260,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6207,6 +6271,7 @@ self: super: { "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"; @@ -6215,6 +6280,7 @@ self: super: { "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"; @@ -6384,6 +6450,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6540,6 +6607,7 @@ self: super: { "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"; @@ -6735,6 +6803,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"; @@ -6970,6 +7039,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"; @@ -6978,6 +7048,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7147,6 +7218,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7258,6 +7330,7 @@ self: super: { "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"; @@ -7336,6 +7409,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7371,6 +7445,7 @@ self: super: { "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"; @@ -7384,6 +7459,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7763,6 +7839,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7773,6 +7850,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7930,6 +8009,7 @@ self: super: { "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"; @@ -7959,10 +8039,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7996,6 +8078,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8192,6 +8275,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8203,6 +8287,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"; @@ -8212,6 +8297,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8235,6 +8321,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8313,6 +8402,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index cd600bcdea7cdc3065eb7b9405607d306b199197..122ffd8e54b091978f8b6f5dd9dbedfcff5027e8 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"; @@ -722,6 +725,7 @@ self: super: { "OTP" = dontDistribute super."OTP"; "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; + "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; @@ -793,6 +797,7 @@ self: super: { "QIO" = dontDistribute super."QIO"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1135,6 +1140,7 @@ self: super: { "aeson-better-errors" = dontDistribute super."aeson-better-errors"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1507,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"; @@ -1555,6 +1562,7 @@ self: super: { "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; "bifunctors" = doDistribute super."bifunctors_4_2_1"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1716,6 +1724,7 @@ self: super: { "blunt" = dontDistribute super."blunt"; "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1733,6 +1742,7 @@ self: super: { "bounded-tchan" = dontDistribute super."bounded-tchan"; "boundingboxes" = dontDistribute super."boundingboxes"; "bower-json" = dontDistribute super."bower-json"; + "bowntz" = dontDistribute super."bowntz"; "boxes" = dontDistribute super."boxes"; "bpann" = dontDistribute super."bpann"; "brainfuck" = dontDistribute super."brainfuck"; @@ -1771,6 +1781,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1859,6 +1870,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1876,7 +1888,9 @@ self: super: { "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"; @@ -1925,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"; @@ -1997,6 +2012,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = dontDistribute super."clash-ghc"; "clash-lib" = dontDistribute super."clash-lib"; @@ -2136,6 +2152,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"; @@ -2385,6 +2402,7 @@ self: super: { "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"; @@ -2522,6 +2540,7 @@ self: super: { "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"; @@ -2566,6 +2585,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"; @@ -2622,6 +2642,7 @@ self: super: { "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "disk-free-space" = dontDistribute super."disk-free-space"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; "distributed-process" = doDistribute super."distributed-process_0_5_3"; "distributed-process-async" = doDistribute super."distributed-process-async_0_2_1"; "distributed-process-azure" = dontDistribute super."distributed-process-azure"; @@ -2755,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_3"; "edit-distance-vector" = dontDistribute super."edit-distance-vector"; "edit-lenses" = dontDistribute super."edit-lenses"; @@ -2916,6 +2938,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2950,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"; @@ -3170,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"; @@ -3306,6 +3331,7 @@ self: super: { "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-mod" = doDistribute super."ghc-mod_5_2_1_2"; + "ghc-options" = dontDistribute super."ghc-options"; "ghc-parmake" = dontDistribute super."ghc-parmake"; "ghc-parser" = dontDistribute super."ghc-parser"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3351,6 +3377,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_0_2"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3366,6 +3393,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3386,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-capture" = dontDistribute super."gl-capture"; "glade" = dontDistribute super."glade"; "gladexml-accessor" = dontDistribute super."gladexml-accessor"; @@ -3426,10 +3455,15 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = dontDistribute super."gnuidn"; "gnuplot" = dontDistribute super."gnuplot"; "gnutls" = dontDistribute super."gnutls"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3577,6 +3611,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3690,6 +3725,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"; @@ -3751,6 +3787,7 @@ self: super: { "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"; @@ -3860,6 +3897,7 @@ self: super: { "haskell-reflect" = dontDistribute super."haskell-reflect"; "haskell-rules" = dontDistribute super."haskell-rules"; "haskell-spacegoo" = dontDistribute super."haskell-spacegoo"; + "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" = doDistribute super."haskell-src-meta_0_6_0_9"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -4149,6 +4187,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"; @@ -4420,6 +4459,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"; @@ -4427,6 +4467,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-wai-json" = doDistribute super."hspec-wai-json_0_6_0"; "hspec-webdriver" = dontDistribute super."hspec-webdriver"; "hspec2" = dontDistribute super."hspec2"; @@ -4447,6 +4488,7 @@ self: super: { "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"; @@ -4517,6 +4559,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"; @@ -4656,6 +4699,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"; @@ -4797,6 +4841,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 +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"; @@ -4978,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"; @@ -5076,6 +5123,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -5152,6 +5201,7 @@ self: super: { "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"; @@ -5181,6 +5231,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 +5275,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"; @@ -5237,6 +5289,7 @@ self: super: { "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"; @@ -5294,6 +5347,7 @@ self: super: { "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; + "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_2"; "machines-io" = doDistribute super."machines-io_0_2_0_2"; "machines-process" = doDistribute super."machines-process_0_2_0_2"; @@ -5479,6 +5533,7 @@ self: super: { "mockery" = dontDistribute super."mockery"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5500,6 +5555,7 @@ self: super: { "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; @@ -5577,6 +5633,7 @@ self: super: { "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"; @@ -5785,6 +5842,7 @@ self: super: { "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"; @@ -5877,6 +5935,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"; @@ -5934,6 +5993,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"; @@ -5988,6 +6048,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6130,6 +6191,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"; @@ -6162,6 +6224,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"; @@ -6186,6 +6249,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-wai" = dontDistribute super."pipes-wai"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6196,6 +6260,7 @@ self: super: { "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"; @@ -6204,6 +6269,7 @@ self: super: { "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"; @@ -6277,6 +6343,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"; @@ -6372,6 +6439,7 @@ self: super: { "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; "project-template" = doDistribute super."project-template_0_1_4_2"; "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"; @@ -6528,6 +6596,7 @@ self: super: { "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"; @@ -6723,6 +6792,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"; @@ -6958,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"; @@ -6966,6 +7037,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_3_1"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7135,6 +7207,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -7246,6 +7319,7 @@ self: super: { "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"; @@ -7324,6 +7398,7 @@ self: super: { "stack" = dontDistribute super."stack"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage" = doDistribute super."stackage_0_7_2_0"; "stackage-cabal" = dontDistribute super."stackage-cabal"; @@ -7357,6 +7432,7 @@ self: super: { "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"; @@ -7370,6 +7446,7 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chans" = doDistribute super."stm-chans_3_0_0_3"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; @@ -7747,6 +7824,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_0_1"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7757,6 +7835,8 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeit" = dontDistribute super."timeit"; "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"; @@ -7914,6 +7994,7 @@ self: super: { "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"; @@ -7943,10 +8024,12 @@ self: super: { "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"; "types-compat" = dontDistribute super."types-compat"; @@ -7980,6 +8063,7 @@ self: super: { "unbound-generics" = doDistribute super."unbound-generics_0_1_2_1"; "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"; @@ -8176,6 +8260,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -8187,6 +8272,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"; @@ -8196,6 +8282,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_2_3"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; @@ -8219,6 +8306,9 @@ self: super: { "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-crowd" = dontDistribute super."wai-middleware-crowd"; @@ -8297,6 +8387,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_1"; "webdriver-angular" = dontDistribute super."webdriver-angular"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 906696b4b9f65ca31c7b4d4ad4af82c5fcd81910..0ddbfe9d767a349266a7154a955fa18449abe084 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"; @@ -437,6 +438,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -470,6 +472,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 +505,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"; @@ -779,6 +783,7 @@ self: super: { "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"; @@ -882,6 +887,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1108,6 +1114,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1393,6 +1400,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"; @@ -1457,6 +1465,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"; @@ -1500,6 +1509,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1652,6 +1663,7 @@ self: super: { "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"; @@ -1664,9 +1676,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1687,6 +1701,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"; @@ -1701,6 +1716,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1743,6 +1759,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1784,6 +1801,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1801,7 +1819,9 @@ self: super: { "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"; @@ -1849,6 +1869,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"; @@ -1917,6 +1938,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -1952,6 +1974,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 +2074,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"; @@ -2294,6 +2318,7 @@ self: super: { "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"; @@ -2419,11 +2444,14 @@ 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"; "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"; @@ -2465,6 +2493,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"; @@ -2516,6 +2545,7 @@ self: super: { "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"; @@ -2647,6 +2677,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"; @@ -2797,6 +2828,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2830,6 +2862,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"; @@ -2847,6 +2880,7 @@ self: super: { "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-jquery" = doDistribute super."fay-jquery_0_6_0_3"; @@ -3036,6 +3070,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"; @@ -3168,6 +3203,7 @@ self: super: { "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-parser" = doDistribute super."ghc-parser_0_1_7_0"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3211,6 +3247,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3227,6 +3264,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3245,12 +3283,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3284,9 +3324,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3433,6 +3478,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3450,6 +3496,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"; @@ -3542,6 +3589,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"; @@ -3600,6 +3648,7 @@ self: super: { "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"; @@ -3696,6 +3745,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"; @@ -3705,6 +3755,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3769,6 +3820,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"; @@ -3929,6 +3981,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3983,6 +4036,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"; @@ -4149,6 +4204,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"; @@ -4189,6 +4245,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"; @@ -4246,6 +4303,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 +4311,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_2"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4272,6 +4331,7 @@ self: super: { "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"; @@ -4339,6 +4399,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 +4528,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 +4704,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 +4714,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"; @@ -4766,6 +4830,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"; @@ -4807,6 +4872,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"; @@ -4857,6 +4923,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4930,6 +4998,7 @@ self: super: { "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"; @@ -4957,6 +5026,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"; @@ -5000,6 +5070,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"; @@ -5012,6 +5083,7 @@ self: super: { "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"; @@ -5043,6 +5115,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"; @@ -5066,6 +5139,7 @@ self: super: { "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"; @@ -5239,6 +5313,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5259,6 +5334,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5331,6 +5407,7 @@ self: super: { "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"; @@ -5443,6 +5520,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"; @@ -5527,6 +5605,7 @@ self: super: { "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"; @@ -5615,6 +5694,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 +5749,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"; @@ -5721,6 +5802,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5858,6 +5940,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 +5962,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 +5971,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"; @@ -5906,6 +5991,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5915,6 +6001,7 @@ self: super: { "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"; @@ -5923,6 +6010,7 @@ self: super: { "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"; @@ -5995,6 +6083,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"; @@ -6087,6 +6176,7 @@ self: super: { "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"; @@ -6240,6 +6330,7 @@ self: super: { "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"; @@ -6320,6 +6411,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6432,6 +6524,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 +6655,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6661,6 +6755,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"; @@ -6669,6 +6764,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6826,6 +6922,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6872,6 +6969,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"; @@ -6936,6 +7034,7 @@ self: super: { "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"; @@ -7011,6 +7110,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7037,6 +7137,7 @@ self: super: { "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"; @@ -7050,8 +7151,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7159,6 +7262,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"; @@ -7323,6 +7427,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7414,6 +7519,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7423,6 +7529,8 @@ self: super: { "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"; @@ -7573,6 +7681,7 @@ self: super: { "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"; @@ -7601,10 +7710,12 @@ self: super: { "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"; @@ -7635,8 +7746,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7821,6 +7934,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7832,6 +7946,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"; @@ -7841,6 +7956,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7862,6 +7978,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7936,6 +8055,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7993,6 +8113,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 77d7e97b3e540a47fab7bfed938dbbe5eaecd94b..7ee9850aed0bb0a5ed044c00c8eaef14cd8fe518 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"; @@ -437,6 +438,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -470,6 +472,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 +505,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"; @@ -779,6 +783,7 @@ self: super: { "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"; @@ -882,6 +887,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1108,6 +1114,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1392,6 +1399,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"; @@ -1455,6 +1463,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"; @@ -1498,6 +1508,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1650,6 +1662,7 @@ self: super: { "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"; @@ -1662,9 +1675,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1685,6 +1700,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"; @@ -1699,6 +1715,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1741,6 +1758,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1782,6 +1800,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1799,7 +1818,9 @@ self: super: { "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"; @@ -1847,6 +1868,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"; @@ -1915,6 +1937,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -1950,6 +1973,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 +2073,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"; @@ -2292,6 +2317,7 @@ self: super: { "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"; @@ -2417,11 +2443,14 @@ 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"; "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"; @@ -2463,6 +2492,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"; @@ -2514,6 +2544,7 @@ self: super: { "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"; @@ -2645,6 +2676,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 +2827,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2828,6 +2861,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"; @@ -2844,6 +2878,7 @@ self: super: { "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"; @@ -3031,6 +3066,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"; @@ -3163,6 +3199,7 @@ self: super: { "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-parser" = doDistribute super."ghc-parser_0_1_7_0"; "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; @@ -3206,6 +3243,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3222,6 +3260,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3240,12 +3279,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3279,9 +3320,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3428,6 +3474,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3445,6 +3492,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"; @@ -3537,6 +3585,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"; @@ -3595,6 +3644,7 @@ self: super: { "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"; @@ -3691,6 +3741,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"; @@ -3700,6 +3751,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3764,6 +3816,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"; @@ -3923,6 +3976,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3977,6 +4031,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"; @@ -4143,6 +4199,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"; @@ -4183,6 +4240,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4240,6 +4298,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"; @@ -4247,6 +4306,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_2"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4266,6 +4326,7 @@ self: super: { "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"; @@ -4333,6 +4394,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"; @@ -4461,6 +4523,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"; @@ -4636,6 +4699,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"; @@ -4645,6 +4709,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"; @@ -4760,6 +4825,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"; @@ -4801,6 +4867,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"; @@ -4851,6 +4918,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4924,6 +4993,7 @@ self: super: { "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"; @@ -4951,6 +5021,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"; @@ -4994,6 +5065,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"; @@ -5006,6 +5078,7 @@ self: super: { "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"; @@ -5037,6 +5110,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"; @@ -5059,6 +5133,7 @@ self: super: { "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"; @@ -5232,6 +5307,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5252,6 +5328,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5324,6 +5401,7 @@ self: super: { "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"; @@ -5435,6 +5513,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"; @@ -5519,6 +5598,7 @@ self: super: { "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"; @@ -5607,6 +5687,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"; @@ -5661,6 +5742,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"; @@ -5713,6 +5795,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5850,6 +5933,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"; @@ -5870,6 +5954,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"; @@ -5878,6 +5963,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"; @@ -5897,6 +5983,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5906,6 +5993,7 @@ self: super: { "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"; @@ -5914,6 +6002,7 @@ self: super: { "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"; @@ -5986,6 +6075,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"; @@ -6078,6 +6168,7 @@ self: super: { "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"; @@ -6231,6 +6322,7 @@ self: super: { "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"; @@ -6311,6 +6403,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6422,6 +6515,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"; @@ -6552,6 +6646,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6651,6 +6746,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"; @@ -6659,6 +6755,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6816,6 +6913,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6862,6 +6960,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"; @@ -6926,6 +7025,7 @@ self: super: { "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"; @@ -7001,6 +7101,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7027,6 +7128,7 @@ self: super: { "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"; @@ -7040,8 +7142,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7149,6 +7253,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"; @@ -7313,6 +7418,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7404,6 +7510,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7413,6 +7520,8 @@ self: super: { "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"; @@ -7563,6 +7672,7 @@ self: super: { "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"; @@ -7591,10 +7701,12 @@ self: super: { "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"; @@ -7625,8 +7737,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7810,6 +7924,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7821,6 +7936,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"; @@ -7830,6 +7946,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7851,6 +7968,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7925,6 +8045,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7982,6 +8103,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index d0f30d1255679c36682ecc2d32109f2e670b4371..fef41afa423e87ef6a36549c722d0880c3f625df 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"; @@ -432,6 +434,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -464,6 +467,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 +499,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"; @@ -771,6 +776,7 @@ self: super: { "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"; @@ -874,6 +880,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1099,6 +1106,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1321,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"; @@ -1375,6 +1384,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 +1448,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 +1493,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1498,6 +1512,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1629,6 +1644,7 @@ self: super: { "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"; @@ -1641,9 +1657,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1664,6 +1682,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"; @@ -1678,6 +1697,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1720,6 +1740,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1760,6 +1781,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1777,7 +1799,9 @@ self: super: { "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"; @@ -1821,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"; @@ -1889,6 +1914,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1924,6 +1950,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"; @@ -2021,6 +2048,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"; @@ -2171,6 +2199,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2259,6 +2288,7 @@ self: super: { "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"; @@ -2383,11 +2413,14 @@ 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"; "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"; @@ -2426,6 +2459,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"; @@ -2474,6 +2508,7 @@ self: super: { "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"; @@ -2602,6 +2637,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"; @@ -2748,6 +2784,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2780,6 +2817,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"; @@ -2796,6 +2834,7 @@ self: super: { "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"; @@ -2975,6 +3014,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"; @@ -3107,6 +3147,7 @@ self: super: { "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"; @@ -3149,6 +3190,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3165,6 +3207,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3181,12 +3224,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3220,9 +3265,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3369,6 +3419,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3386,6 +3437,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"; @@ -3405,6 +3457,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3477,6 +3530,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"; @@ -3515,6 +3569,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3534,6 +3589,7 @@ self: super: { "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"; @@ -3629,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"; @@ -3637,6 +3694,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3701,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"; @@ -3857,6 +3916,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3910,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"; @@ -4075,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"; @@ -4115,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"; @@ -4171,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"; @@ -4178,6 +4243,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4197,6 +4263,7 @@ self: super: { "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"; @@ -4242,6 +4309,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4263,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"; @@ -4388,6 +4457,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"; @@ -4560,6 +4630,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"; @@ -4569,6 +4640,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"; @@ -4681,6 +4753,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"; @@ -4689,6 +4762,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4721,6 +4795,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"; @@ -4769,6 +4844,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4842,6 +4919,7 @@ self: super: { "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"; @@ -4866,8 +4944,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"; @@ -4911,6 +4991,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"; @@ -4923,6 +5004,7 @@ self: super: { "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"; @@ -4954,6 +5036,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"; @@ -4976,6 +5059,7 @@ self: super: { "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"; @@ -5145,6 +5229,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5165,6 +5250,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -5235,6 +5321,7 @@ self: super: { "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"; @@ -5345,7 +5432,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5426,6 +5515,7 @@ self: super: { "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"; @@ -5514,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"; @@ -5567,6 +5658,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"; @@ -5618,6 +5710,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5754,6 +5847,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"; @@ -5774,6 +5868,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"; @@ -5781,6 +5876,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"; @@ -5798,6 +5894,7 @@ self: super: { "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"; @@ -5807,6 +5904,7 @@ self: super: { "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"; @@ -5815,6 +5913,7 @@ self: super: { "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"; @@ -5886,6 +5985,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"; @@ -5972,6 +6072,7 @@ self: super: { "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"; @@ -6121,6 +6222,7 @@ self: super: { "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"; @@ -6201,6 +6303,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6310,6 +6413,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"; @@ -6440,6 +6544,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6537,11 +6642,13 @@ 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"; "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-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6694,6 +6801,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6738,6 +6846,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"; @@ -6800,6 +6909,7 @@ self: super: { "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"; @@ -6874,6 +6984,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6899,6 +7010,7 @@ self: super: { "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"; @@ -6912,8 +7024,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6980,6 +7094,7 @@ self: super: { "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"; @@ -7019,6 +7134,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"; @@ -7176,7 +7292,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7268,6 +7386,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7277,6 +7396,8 @@ self: super: { "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"; @@ -7425,6 +7546,7 @@ self: super: { "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"; @@ -7453,10 +7575,12 @@ self: super: { "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"; @@ -7487,8 +7611,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7669,6 +7795,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7679,6 +7806,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"; @@ -7688,6 +7816,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7709,8 +7838,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7778,6 +7911,7 @@ self: super: { "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"; @@ -7833,6 +7967,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7857,6 +7992,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"; @@ -7884,6 +8020,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 98e84ca9f108034a13164383879fa9b7cb16463e..bf8a60ac2a89274048f533b052f257933c3037d4 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"; @@ -432,6 +434,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -464,6 +467,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 +499,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"; @@ -771,6 +776,7 @@ self: super: { "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"; @@ -874,6 +880,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1099,6 +1106,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1321,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"; @@ -1375,6 +1384,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 +1448,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 +1493,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1498,6 +1512,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1628,6 +1643,7 @@ self: super: { "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"; @@ -1640,9 +1656,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1663,6 +1681,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"; @@ -1677,6 +1696,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1718,6 +1738,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1758,6 +1779,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1775,7 +1797,9 @@ self: super: { "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"; @@ -1819,6 +1843,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"; @@ -1887,6 +1912,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1922,6 +1948,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 +2046,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"; @@ -2169,6 +2197,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2257,6 +2286,7 @@ self: super: { "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"; @@ -2381,11 +2411,14 @@ 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"; "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"; @@ -2424,6 +2457,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"; @@ -2472,6 +2506,7 @@ self: super: { "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"; @@ -2600,6 +2635,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"; @@ -2745,6 +2781,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2777,6 +2814,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"; @@ -2793,6 +2831,7 @@ self: super: { "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"; @@ -2972,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"; @@ -3104,6 +3144,7 @@ self: super: { "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"; @@ -3145,6 +3186,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3161,6 +3203,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3177,12 +3220,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3216,9 +3261,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3365,6 +3415,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3382,6 +3433,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"; @@ -3401,6 +3453,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3473,6 +3526,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"; @@ -3500,6 +3554,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"; @@ -3510,6 +3565,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3529,6 +3585,7 @@ self: super: { "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"; @@ -3624,6 +3681,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"; @@ -3632,6 +3690,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3696,6 +3755,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"; @@ -3852,6 +3912,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3905,6 +3966,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"; @@ -4070,6 +4133,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"; @@ -4110,6 +4174,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"; @@ -4166,6 +4231,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"; @@ -4173,6 +4239,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4192,6 +4259,7 @@ self: super: { "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"; @@ -4235,7 +4303,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4257,6 +4327,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 +4453,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 +4626,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 +4636,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 +4749,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"; @@ -4683,6 +4758,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4715,6 +4791,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"; @@ -4763,6 +4840,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4836,6 +4915,7 @@ self: super: { "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"; @@ -4860,8 +4940,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 +4987,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"; @@ -4917,6 +5000,7 @@ self: super: { "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"; @@ -4948,6 +5032,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"; @@ -4970,6 +5055,7 @@ self: super: { "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"; @@ -5139,6 +5225,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5159,6 +5246,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -5229,6 +5317,7 @@ self: super: { "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"; @@ -5339,7 +5428,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5420,6 +5511,7 @@ self: super: { "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"; @@ -5508,6 +5600,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"; @@ -5561,6 +5654,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"; @@ -5612,6 +5706,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5728,6 +5823,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5746,6 +5842,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"; @@ -5766,6 +5863,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"; @@ -5773,6 +5871,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"; @@ -5790,6 +5889,7 @@ self: super: { "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"; @@ -5799,6 +5899,7 @@ self: super: { "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"; @@ -5807,6 +5908,7 @@ self: super: { "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"; @@ -5878,6 +5980,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"; @@ -5964,6 +6067,7 @@ self: super: { "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"; @@ -6113,6 +6217,7 @@ self: super: { "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"; @@ -6193,6 +6298,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6302,6 +6408,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"; @@ -6431,6 +6538,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6528,11 +6636,13 @@ 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"; "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-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6684,6 +6794,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6728,6 +6839,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"; @@ -6790,6 +6902,7 @@ self: super: { "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"; @@ -6864,6 +6977,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6889,6 +7003,7 @@ self: super: { "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"; @@ -6902,8 +7017,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6970,6 +7087,7 @@ self: super: { "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"; @@ -7009,6 +7127,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"; @@ -7165,7 +7284,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7257,6 +7378,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7266,6 +7388,8 @@ self: super: { "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"; @@ -7414,6 +7538,7 @@ self: super: { "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"; @@ -7442,10 +7567,12 @@ self: super: { "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"; @@ -7476,8 +7603,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7658,6 +7787,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7668,6 +7798,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"; @@ -7677,6 +7808,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7698,8 +7830,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7767,6 +7903,7 @@ self: super: { "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"; @@ -7822,6 +7959,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7846,6 +7984,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"; @@ -7873,6 +8012,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 154bd227acc044b485493c90e1efc0be0f31934c..1cb9c893f806a474053d5ba606bbcdb078d7ad10 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"; @@ -431,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -463,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"; @@ -494,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"; @@ -770,6 +775,7 @@ self: super: { "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"; @@ -873,6 +879,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1098,6 +1105,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1320,6 +1328,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"; @@ -1374,6 +1383,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1437,6 +1447,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"; @@ -1480,6 +1492,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1497,6 +1511,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1627,6 +1642,7 @@ self: super: { "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"; @@ -1639,9 +1655,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1662,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"; @@ -1676,6 +1695,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1717,6 +1737,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1757,6 +1778,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1774,7 +1796,9 @@ self: super: { "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"; @@ -1818,6 +1842,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"; @@ -1885,6 +1910,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1917,6 +1943,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"; @@ -2014,6 +2041,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"; @@ -2164,6 +2192,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2252,6 +2281,7 @@ self: super: { "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"; @@ -2376,11 +2406,14 @@ 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"; "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"; @@ -2419,6 +2452,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"; @@ -2467,6 +2501,7 @@ self: super: { "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"; @@ -2595,6 +2630,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"; @@ -2740,6 +2776,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2772,6 +2809,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"; @@ -2788,6 +2826,7 @@ self: super: { "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"; @@ -2967,6 +3006,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"; @@ -3099,6 +3139,7 @@ self: super: { "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"; @@ -3140,6 +3181,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3156,6 +3198,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3172,12 +3215,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3211,8 +3256,13 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3359,6 +3409,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3376,6 +3427,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"; @@ -3395,6 +3447,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3467,6 +3520,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"; @@ -3494,6 +3548,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"; @@ -3504,6 +3559,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3523,6 +3579,7 @@ self: super: { "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"; @@ -3618,6 +3675,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"; @@ -3626,6 +3684,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3690,6 +3749,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"; @@ -3846,6 +3906,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3899,6 +3960,9 @@ 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"; "hls" = dontDistribute super."hls"; @@ -4063,6 +4127,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"; @@ -4103,6 +4168,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"; @@ -4159,6 +4225,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"; @@ -4166,6 +4233,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4185,6 +4253,7 @@ self: super: { "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"; @@ -4228,7 +4297,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4250,6 +4321,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"; @@ -4375,6 +4447,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"; @@ -4547,6 +4620,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"; @@ -4556,6 +4630,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"; @@ -4668,6 +4743,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"; @@ -4676,6 +4752,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4708,6 +4785,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"; @@ -4756,6 +4834,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4829,6 +4909,7 @@ self: super: { "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"; @@ -4853,8 +4934,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"; @@ -4898,6 +4981,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"; @@ -4910,6 +4994,7 @@ self: super: { "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"; @@ -4941,6 +5026,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"; @@ -4963,6 +5049,7 @@ self: super: { "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"; @@ -5132,6 +5219,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5152,8 +5240,10 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5221,6 +5311,7 @@ self: super: { "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"; @@ -5331,7 +5422,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5412,6 +5505,7 @@ self: super: { "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"; @@ -5500,6 +5594,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"; @@ -5553,6 +5648,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"; @@ -5604,6 +5700,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5719,6 +5816,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5737,6 +5835,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 +5856,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"; @@ -5764,6 +5864,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"; @@ -5781,6 +5882,7 @@ self: super: { "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"; @@ -5790,6 +5892,7 @@ self: super: { "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"; @@ -5798,6 +5901,7 @@ self: super: { "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"; @@ -5869,6 +5973,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"; @@ -5955,6 +6060,7 @@ self: super: { "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"; @@ -6104,6 +6210,7 @@ self: super: { "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"; @@ -6184,6 +6291,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6293,6 +6401,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"; @@ -6422,6 +6531,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6519,11 +6629,13 @@ 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"; "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-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6675,6 +6787,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6719,6 +6832,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"; @@ -6781,6 +6895,7 @@ self: super: { "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"; @@ -6855,6 +6970,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6880,6 +6996,7 @@ self: super: { "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"; @@ -6893,8 +7010,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6961,6 +7080,7 @@ self: super: { "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"; @@ -7000,6 +7120,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"; @@ -7065,6 +7186,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7154,7 +7276,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7245,6 +7369,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7254,6 +7379,8 @@ self: super: { "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"; @@ -7402,6 +7529,7 @@ self: super: { "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"; @@ -7430,10 +7558,12 @@ self: super: { "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"; @@ -7464,8 +7594,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7646,6 +7778,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7656,6 +7789,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"; @@ -7665,6 +7799,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7686,8 +7821,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7755,6 +7894,7 @@ self: super: { "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"; @@ -7810,6 +7950,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7834,6 +7975,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"; @@ -7861,6 +8003,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 2e0005770485b150a271ca2066efd4cedc7402d5..271da896c6eb3bde68a0b8c4261c011a2bed0645 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"; @@ -431,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -463,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"; @@ -494,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"; @@ -770,6 +775,7 @@ self: super: { "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"; @@ -873,6 +879,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1098,6 +1105,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1320,6 +1328,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"; @@ -1374,6 +1383,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1437,6 +1447,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"; @@ -1480,6 +1492,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1497,6 +1511,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1627,6 +1642,7 @@ self: super: { "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"; @@ -1639,9 +1655,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1662,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"; @@ -1676,6 +1695,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1717,6 +1737,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1757,6 +1778,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1774,7 +1796,9 @@ self: super: { "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"; @@ -1818,6 +1842,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"; @@ -1885,6 +1910,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1917,6 +1943,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"; @@ -2014,6 +2041,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"; @@ -2164,6 +2192,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2252,6 +2281,7 @@ self: super: { "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"; @@ -2376,11 +2406,14 @@ 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"; "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"; @@ -2419,6 +2452,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"; @@ -2467,6 +2501,7 @@ self: super: { "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"; @@ -2595,6 +2630,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"; @@ -2740,6 +2776,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2772,6 +2809,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"; @@ -2788,6 +2826,7 @@ self: super: { "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"; @@ -2967,6 +3006,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"; @@ -3099,6 +3139,7 @@ self: super: { "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"; @@ -3140,6 +3181,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3156,6 +3198,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3172,12 +3215,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3211,8 +3256,13 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3359,6 +3409,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3376,6 +3427,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"; @@ -3395,6 +3447,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3467,6 +3520,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"; @@ -3494,6 +3548,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"; @@ -3504,6 +3559,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3523,6 +3579,7 @@ self: super: { "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"; @@ -3618,6 +3675,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"; @@ -3626,6 +3684,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3690,6 +3749,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"; @@ -3845,6 +3905,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3898,6 +3959,9 @@ 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"; "hls" = dontDistribute super."hls"; @@ -4062,6 +4126,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"; @@ -4102,6 +4167,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"; @@ -4158,6 +4224,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"; @@ -4165,6 +4232,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4184,6 +4252,7 @@ self: super: { "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"; @@ -4227,7 +4296,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4249,6 +4320,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"; @@ -4374,6 +4446,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"; @@ -4546,6 +4619,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"; @@ -4555,6 +4629,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"; @@ -4667,6 +4742,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"; @@ -4675,6 +4751,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4707,6 +4784,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"; @@ -4754,6 +4832,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4827,6 +4907,7 @@ self: super: { "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"; @@ -4851,8 +4932,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"; @@ -4896,6 +4979,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"; @@ -4908,6 +4992,7 @@ self: super: { "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"; @@ -4939,6 +5024,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"; @@ -4961,6 +5047,7 @@ self: super: { "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"; @@ -5130,6 +5217,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5150,8 +5238,10 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5218,6 +5308,7 @@ self: super: { "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"; @@ -5328,7 +5419,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5409,6 +5502,7 @@ self: super: { "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"; @@ -5497,6 +5591,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"; @@ -5550,6 +5645,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"; @@ -5601,6 +5697,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5715,6 +5812,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5733,6 +5831,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"; @@ -5753,6 +5852,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"; @@ -5760,6 +5860,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"; @@ -5777,6 +5878,7 @@ self: super: { "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"; @@ -5786,6 +5888,7 @@ self: super: { "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"; @@ -5794,6 +5897,7 @@ self: super: { "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"; @@ -5865,6 +5969,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"; @@ -5951,6 +6056,7 @@ self: super: { "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"; @@ -6100,6 +6206,7 @@ self: super: { "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"; @@ -6180,6 +6287,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6289,6 +6397,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"; @@ -6418,6 +6527,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6515,11 +6625,13 @@ 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"; "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-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6671,6 +6783,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6715,6 +6828,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"; @@ -6777,6 +6891,7 @@ self: super: { "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"; @@ -6851,6 +6966,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6876,6 +6992,7 @@ self: super: { "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"; @@ -6889,8 +7006,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6957,6 +7076,7 @@ self: super: { "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"; @@ -6996,6 +7116,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"; @@ -7060,6 +7181,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7149,7 +7271,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7240,6 +7364,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7249,6 +7374,8 @@ self: super: { "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"; @@ -7397,6 +7524,7 @@ self: super: { "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"; @@ -7425,10 +7553,12 @@ self: super: { "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"; @@ -7459,8 +7589,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7641,6 +7773,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7651,6 +7784,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"; @@ -7660,6 +7794,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7680,8 +7815,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7749,6 +7888,7 @@ self: super: { "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"; @@ -7804,6 +7944,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7828,6 +7969,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"; @@ -7855,6 +7997,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 15706031f7af293e36058cf188fe21352188ea52..99ac875508ef36381b7086bd6cc27df87adfd191 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"; @@ -431,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -463,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"; @@ -494,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"; @@ -770,6 +775,7 @@ self: super: { "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"; @@ -873,6 +879,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1096,7 +1103,9 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1317,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"; @@ -1371,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"; @@ -1434,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"; @@ -1477,6 +1490,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1494,6 +1509,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1624,6 +1640,7 @@ self: super: { "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"; @@ -1636,9 +1653,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1658,6 +1677,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"; @@ -1672,6 +1692,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1713,6 +1734,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1753,6 +1775,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1770,7 +1793,9 @@ self: super: { "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"; @@ -1814,6 +1839,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"; @@ -1881,6 +1907,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1913,6 +1940,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"; @@ -2010,6 +2038,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"; @@ -2159,6 +2188,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2247,6 +2277,7 @@ self: super: { "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"; @@ -2371,11 +2402,14 @@ 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"; "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"; @@ -2409,7 +2443,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"; @@ -2458,6 +2494,7 @@ self: super: { "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"; @@ -2585,6 +2622,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"; @@ -2730,6 +2768,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2762,6 +2801,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"; @@ -2778,6 +2818,7 @@ self: super: { "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"; @@ -2957,6 +2998,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"; @@ -3089,6 +3131,7 @@ self: super: { "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"; @@ -3130,6 +3173,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3146,6 +3190,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3162,12 +3207,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3201,8 +3248,13 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3349,6 +3401,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3366,6 +3419,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"; @@ -3385,6 +3439,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3457,6 +3512,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"; @@ -3484,6 +3540,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"; @@ -3494,6 +3551,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3513,6 +3571,7 @@ self: super: { "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"; @@ -3608,6 +3667,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"; @@ -3616,7 +3676,9 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3679,6 +3741,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"; @@ -3834,6 +3897,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3887,6 +3951,9 @@ 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"; "hls" = dontDistribute super."hls"; @@ -4051,6 +4118,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"; @@ -4091,6 +4159,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"; @@ -4147,6 +4216,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"; @@ -4154,6 +4224,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4173,6 +4244,7 @@ self: super: { "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"; @@ -4215,7 +4287,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4237,6 +4311,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"; @@ -4362,6 +4437,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"; @@ -4534,6 +4610,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"; @@ -4543,6 +4620,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"; @@ -4655,6 +4733,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"; @@ -4663,6 +4742,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4695,6 +4775,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"; @@ -4742,6 +4823,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4815,6 +4898,7 @@ self: super: { "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"; @@ -4839,8 +4923,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"; @@ -4884,6 +4970,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"; @@ -4896,6 +4983,7 @@ self: super: { "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"; @@ -4926,6 +5014,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"; @@ -4948,6 +5037,7 @@ self: super: { "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"; @@ -5117,6 +5207,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5137,8 +5228,10 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5204,6 +5297,7 @@ self: super: { "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"; @@ -5314,7 +5408,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5395,6 +5491,7 @@ self: super: { "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"; @@ -5483,6 +5580,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"; @@ -5536,6 +5634,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"; @@ -5587,6 +5686,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5701,6 +5801,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5719,6 +5820,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"; @@ -5738,6 +5840,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"; @@ -5745,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"; @@ -5762,6 +5866,7 @@ self: super: { "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"; @@ -5771,6 +5876,7 @@ self: super: { "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"; @@ -5779,6 +5885,7 @@ self: super: { "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"; @@ -5850,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"; @@ -5936,6 +6044,7 @@ self: super: { "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"; @@ -6085,6 +6194,7 @@ self: super: { "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"; @@ -6165,6 +6275,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6274,6 +6385,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"; @@ -6403,6 +6515,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6500,11 +6613,13 @@ 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"; "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-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; @@ -6656,6 +6771,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6700,6 +6816,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"; @@ -6762,6 +6879,7 @@ self: super: { "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"; @@ -6836,6 +6954,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_6_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6861,6 +6980,7 @@ self: super: { "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"; @@ -6874,8 +6994,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6942,6 +7064,7 @@ self: super: { "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"; @@ -6981,6 +7104,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"; @@ -7045,6 +7169,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7133,7 +7258,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7224,6 +7351,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7233,6 +7361,8 @@ self: super: { "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"; @@ -7347,6 +7477,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"; @@ -7380,6 +7511,7 @@ self: super: { "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"; @@ -7408,10 +7540,12 @@ self: super: { "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"; @@ -7442,8 +7576,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7624,6 +7760,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7634,6 +7771,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"; @@ -7643,6 +7781,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_2"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7663,8 +7802,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7731,6 +7874,7 @@ self: super: { "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"; @@ -7785,6 +7929,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7809,6 +7954,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"; @@ -7836,6 +7982,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 a7dfcdb3f68212dd4204adcdefcf63e73f20b750..2096bbe0e0fcd5f23dce5f0c325cca05b1a641e6 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"; @@ -431,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -463,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"; @@ -494,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"; @@ -769,6 +774,7 @@ self: super: { "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"; @@ -872,6 +878,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1095,7 +1102,9 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1316,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"; @@ -1370,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"; @@ -1433,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"; @@ -1476,6 +1489,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1493,6 +1508,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1623,6 +1639,7 @@ self: super: { "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"; @@ -1635,9 +1652,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1657,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"; @@ -1671,6 +1691,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1712,6 +1733,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1752,6 +1774,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1769,7 +1792,9 @@ self: super: { "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"; @@ -1813,6 +1838,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"; @@ -1880,6 +1906,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1912,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"; @@ -2009,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"; @@ -2158,6 +2187,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2246,6 +2276,7 @@ self: super: { "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"; @@ -2370,11 +2401,14 @@ 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"; "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"; @@ -2408,7 +2442,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"; @@ -2457,6 +2493,7 @@ self: super: { "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"; @@ -2584,6 +2621,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"; @@ -2729,6 +2767,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2761,6 +2800,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"; @@ -2777,6 +2817,7 @@ self: super: { "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"; @@ -2956,6 +2997,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"; @@ -3087,6 +3129,7 @@ self: super: { "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"; @@ -3128,6 +3171,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3144,6 +3188,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3160,12 +3205,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3199,8 +3246,13 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3347,6 +3399,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3364,6 +3417,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"; @@ -3383,6 +3437,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3455,6 +3510,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"; @@ -3482,6 +3538,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"; @@ -3492,6 +3549,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3511,6 +3569,7 @@ self: super: { "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"; @@ -3605,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"; @@ -3613,7 +3673,9 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3676,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"; @@ -3831,6 +3894,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3884,6 +3948,9 @@ 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"; "hls" = dontDistribute super."hls"; @@ -4047,6 +4114,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"; @@ -4087,6 +4155,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"; @@ -4143,6 +4212,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"; @@ -4150,6 +4220,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4169,6 +4240,7 @@ self: super: { "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"; @@ -4211,7 +4283,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "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 +4306,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 +4432,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"; @@ -4529,6 +4605,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"; @@ -4538,6 +4615,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"; @@ -4650,6 +4728,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"; @@ -4658,6 +4737,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4690,6 +4770,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"; @@ -4737,6 +4818,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4810,6 +4893,7 @@ self: super: { "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"; @@ -4834,8 +4918,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"; @@ -4879,6 +4965,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"; @@ -4891,6 +4978,7 @@ self: super: { "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"; @@ -4921,6 +5009,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"; @@ -4943,6 +5032,7 @@ self: super: { "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"; @@ -5112,6 +5202,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5132,8 +5223,10 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5199,6 +5292,7 @@ self: super: { "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"; @@ -5309,7 +5403,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5390,6 +5486,7 @@ self: super: { "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"; @@ -5478,6 +5575,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"; @@ -5531,6 +5629,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"; @@ -5581,6 +5680,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5695,6 +5795,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5713,6 +5814,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"; @@ -5732,6 +5834,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"; @@ -5739,6 +5842,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"; @@ -5756,6 +5860,7 @@ self: super: { "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"; @@ -5765,6 +5870,7 @@ self: super: { "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"; @@ -5773,6 +5879,7 @@ self: super: { "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"; @@ -5844,6 +5951,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"; @@ -5930,6 +6038,7 @@ self: super: { "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"; @@ -6078,6 +6187,7 @@ self: super: { "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"; @@ -6158,6 +6268,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6267,6 +6378,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"; @@ -6396,6 +6508,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6493,11 +6606,13 @@ 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"; "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"; @@ -6648,6 +6763,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6692,6 +6808,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"; @@ -6754,6 +6871,7 @@ self: super: { "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"; @@ -6828,6 +6946,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6853,6 +6972,7 @@ self: super: { "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"; @@ -6866,8 +6986,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6934,6 +7056,7 @@ self: super: { "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"; @@ -6973,6 +7096,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"; @@ -7037,6 +7161,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7125,7 +7250,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7215,6 +7342,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7224,6 +7352,8 @@ self: super: { "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"; @@ -7338,6 +7468,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"; @@ -7371,6 +7502,7 @@ self: super: { "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"; @@ -7399,10 +7531,12 @@ self: super: { "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"; @@ -7433,8 +7567,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7615,6 +7751,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7625,6 +7762,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"; @@ -7634,7 +7772,9 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7652,8 +7792,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7720,6 +7864,7 @@ self: super: { "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"; @@ -7774,6 +7919,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7798,6 +7944,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"; @@ -7825,6 +7972,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 ad66fe7f027797e6725827adc47708ae2d6c2d85..985b46e2af47169940111a73a45783c889880ae4 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"; @@ -431,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -463,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"; @@ -494,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"; @@ -768,6 +773,7 @@ self: super: { "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"; @@ -871,6 +877,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1094,7 +1101,9 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1315,6 +1324,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"; @@ -1369,6 +1379,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"; @@ -1431,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"; @@ -1474,6 +1487,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1491,6 +1506,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1621,6 +1637,7 @@ self: super: { "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"; @@ -1633,9 +1650,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1655,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"; @@ -1669,6 +1689,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1710,6 +1731,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1750,6 +1772,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1767,7 +1790,9 @@ self: super: { "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"; @@ -1811,6 +1836,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"; @@ -1878,6 +1904,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1910,6 +1937,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 +2035,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"; @@ -2156,6 +2185,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2244,6 +2274,7 @@ self: super: { "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"; @@ -2368,11 +2399,14 @@ 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"; "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"; @@ -2406,7 +2440,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"; @@ -2455,6 +2491,7 @@ self: super: { "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"; @@ -2582,6 +2619,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"; @@ -2726,6 +2764,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2758,6 +2797,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"; @@ -2774,6 +2814,7 @@ self: super: { "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"; @@ -2953,6 +2994,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"; @@ -3084,6 +3126,7 @@ self: super: { "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"; @@ -3125,6 +3168,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3141,6 +3185,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3157,12 +3202,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3196,8 +3243,13 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3344,6 +3396,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3361,6 +3414,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"; @@ -3379,6 +3433,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3451,6 +3506,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"; @@ -3478,6 +3534,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"; @@ -3488,6 +3545,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3507,6 +3565,7 @@ self: super: { "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"; @@ -3601,6 +3660,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"; @@ -3609,7 +3669,9 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3672,6 +3734,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"; @@ -3827,6 +3890,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3880,6 +3944,9 @@ 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"; "hls" = dontDistribute super."hls"; @@ -4043,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"; @@ -4083,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"; @@ -4139,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"; @@ -4146,6 +4216,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4165,6 +4236,7 @@ self: super: { "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"; @@ -4207,7 +4279,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4228,6 +4302,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"; @@ -4353,6 +4428,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"; @@ -4525,6 +4601,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"; @@ -4534,6 +4611,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"; @@ -4646,6 +4724,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"; @@ -4654,6 +4733,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4685,6 +4765,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"; @@ -4732,6 +4813,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4804,6 +4887,7 @@ self: super: { "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"; @@ -4828,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"; @@ -4873,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"; @@ -4885,6 +4972,7 @@ self: super: { "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"; @@ -4915,6 +5003,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"; @@ -4937,6 +5026,7 @@ self: super: { "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"; @@ -5105,6 +5195,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5125,8 +5216,10 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5192,6 +5285,7 @@ self: super: { "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"; @@ -5302,7 +5396,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5383,6 +5479,7 @@ self: super: { "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"; @@ -5471,6 +5568,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"; @@ -5524,6 +5622,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"; @@ -5574,6 +5673,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5687,6 +5787,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5705,6 +5806,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"; @@ -5724,6 +5826,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"; @@ -5731,6 +5834,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"; @@ -5748,6 +5852,7 @@ self: super: { "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"; @@ -5757,6 +5862,7 @@ self: super: { "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"; @@ -5765,6 +5871,7 @@ self: super: { "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"; @@ -5835,6 +5942,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"; @@ -5921,6 +6029,7 @@ self: super: { "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"; @@ -6069,6 +6178,7 @@ self: super: { "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"; @@ -6148,6 +6258,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6256,6 +6367,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"; @@ -6385,6 +6497,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6481,11 +6594,13 @@ 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"; "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"; @@ -6636,6 +6751,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6680,6 +6796,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"; @@ -6742,6 +6859,7 @@ self: super: { "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"; @@ -6816,6 +6934,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_8_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6841,6 +6960,7 @@ self: super: { "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"; @@ -6854,8 +6974,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6921,6 +7043,7 @@ self: super: { "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"; @@ -6960,6 +7083,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"; @@ -7024,6 +7148,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7110,7 +7235,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7199,6 +7326,7 @@ self: super: { "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7208,6 +7336,8 @@ self: super: { "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"; @@ -7322,6 +7452,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"; @@ -7355,6 +7486,7 @@ self: super: { "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"; @@ -7383,10 +7515,12 @@ self: super: { "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"; @@ -7417,8 +7551,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7599,6 +7735,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7609,6 +7746,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"; @@ -7618,7 +7756,9 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7636,8 +7776,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7704,6 +7848,7 @@ self: super: { "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"; @@ -7758,6 +7903,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7782,6 +7928,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"; @@ -7805,9 +7952,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 261627066da2260f540f89a40d7b14e1723b40fa..0793e3e1caea39083b23f90e7a53e6e217cf4537 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"; @@ -431,6 +433,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -462,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"; @@ -493,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"; @@ -766,6 +771,7 @@ self: super: { "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"; @@ -869,6 +875,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1092,7 +1099,9 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_2_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; "aeson-lens" = dontDistribute super."aeson-lens"; @@ -1311,6 +1320,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"; @@ -1365,6 +1375,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"; @@ -1427,6 +1438,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"; @@ -1470,6 +1483,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1487,6 +1502,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1617,6 +1633,7 @@ self: super: { "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"; @@ -1629,9 +1646,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1651,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"; @@ -1665,6 +1685,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1705,6 +1726,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1745,6 +1767,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1762,7 +1785,9 @@ self: super: { "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"; @@ -1806,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-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1872,6 +1898,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1904,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"; @@ -2001,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"; @@ -2148,6 +2177,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2236,6 +2266,7 @@ self: super: { "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"; @@ -2360,11 +2391,14 @@ 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"; "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"; @@ -2397,7 +2431,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"; @@ -2446,6 +2482,7 @@ self: super: { "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"; @@ -2573,6 +2610,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"; @@ -2717,6 +2755,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2749,6 +2788,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"; @@ -2765,6 +2805,7 @@ self: super: { "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"; @@ -2944,6 +2985,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"; @@ -3075,6 +3117,7 @@ self: super: { "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"; @@ -3116,6 +3159,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3132,6 +3176,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3148,12 +3193,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3187,8 +3234,13 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3335,6 +3387,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3352,6 +3405,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"; @@ -3370,6 +3424,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3441,6 +3496,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"; @@ -3468,6 +3524,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"; @@ -3478,6 +3535,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3497,6 +3555,7 @@ self: super: { "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"; @@ -3591,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"; @@ -3599,7 +3659,9 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_12"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; "haskell-token-utils" = dontDistribute super."haskell-token-utils"; "haskell-tor" = dontDistribute super."haskell-tor"; @@ -3662,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"; @@ -3817,6 +3880,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3870,6 +3934,9 @@ 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"; "hls" = dontDistribute super."hls"; @@ -3983,6 +4050,7 @@ self: super: { "hpodder" = dontDistribute super."hpodder"; "hpp" = dontDistribute super."hpp"; "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_9"; "hprotoc-fork" = dontDistribute super."hprotoc-fork"; "hps" = dontDistribute super."hps"; "hps-cairo" = dontDistribute super."hps-cairo"; @@ -4032,6 +4100,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"; @@ -4072,6 +4141,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"; @@ -4128,6 +4198,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"; @@ -4135,6 +4206,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4154,6 +4226,7 @@ self: super: { "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"; @@ -4196,7 +4269,9 @@ self: super: { "htsn-common" = dontDistribute super."htsn-common"; "htsn-import" = dontDistribute super."htsn-import"; "http-accept" = dontDistribute super."http-accept"; + "http-api-data" = doDistribute super."http-api-data_0_2_1"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4217,6 +4292,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"; @@ -4342,6 +4418,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"; @@ -4512,6 +4589,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"; @@ -4521,6 +4599,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"; @@ -4633,6 +4712,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"; @@ -4641,6 +4721,7 @@ self: super: { "language-boogie" = dontDistribute super."language-boogie"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -4672,6 +4753,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"; @@ -4719,6 +4801,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4791,6 +4875,7 @@ self: super: { "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"; @@ -4815,8 +4900,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"; @@ -4860,6 +4947,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"; @@ -4871,6 +4959,7 @@ self: super: { "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"; @@ -4901,6 +4990,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"; @@ -4923,6 +5013,7 @@ self: super: { "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"; @@ -5091,6 +5182,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5111,8 +5203,10 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5177,6 +5271,7 @@ self: super: { "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"; @@ -5287,7 +5382,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5368,6 +5465,7 @@ self: super: { "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"; @@ -5456,6 +5554,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"; @@ -5509,6 +5608,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"; @@ -5559,6 +5659,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5659,6 +5760,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"; @@ -5670,6 +5772,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_4"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5688,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"; @@ -5707,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"; @@ -5714,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"; @@ -5731,6 +5837,7 @@ self: super: { "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"; @@ -5740,6 +5847,7 @@ self: super: { "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"; @@ -5748,6 +5856,7 @@ self: super: { "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"; @@ -5818,6 +5927,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"; @@ -5903,6 +6013,7 @@ self: super: { "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"; @@ -5920,6 +6031,8 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_9"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_9"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; "proton-haskell" = dontDistribute super."proton-haskell"; @@ -6049,6 +6162,7 @@ self: super: { "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"; @@ -6128,6 +6242,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6235,6 +6350,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"; @@ -6364,6 +6480,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6460,11 +6577,13 @@ 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"; "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"; @@ -6523,6 +6642,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_4_1"; "shelly-extra" = dontDistribute super."shelly-extra"; "shivers-cfg" = dontDistribute super."shivers-cfg"; "shoap" = dontDistribute super."shoap"; @@ -6614,6 +6734,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6658,6 +6779,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"; @@ -6720,6 +6842,7 @@ self: super: { "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"; @@ -6791,8 +6914,10 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_0_1_10_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6818,6 +6943,7 @@ self: super: { "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"; @@ -6831,8 +6957,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -6898,6 +7026,7 @@ self: super: { "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"; @@ -6937,6 +7066,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"; @@ -7001,6 +7131,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7087,7 +7218,9 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7176,6 +7309,7 @@ self: super: { "time-http" = dontDistribute super."time-http"; "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7185,6 +7319,8 @@ self: super: { "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"; @@ -7299,6 +7435,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"; @@ -7332,6 +7469,7 @@ self: super: { "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"; @@ -7360,10 +7498,12 @@ self: super: { "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"; @@ -7394,8 +7534,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7575,6 +7717,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7585,6 +7728,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"; @@ -7594,7 +7738,9 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7612,8 +7758,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7679,6 +7829,7 @@ self: super: { "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"; @@ -7733,6 +7884,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7757,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"; @@ -7780,9 +7933,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"; @@ -7880,6 +8035,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 new file mode 100644 index 0000000000000000000000000000000000000000..de54f3f85ee90b5b303bde077608e59f841e1fc1 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -0,0 +1,8129 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-3.18 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_4"; + "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"; + "HList" = doDistribute super."HList_0_4_1_0"; + "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" = doDistribute super."StateVar_1_1_0_1"; + "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-compat" = dontDistribute super."aeson-compat"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; + "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"; + "asn1-types" = doDistribute super."asn1-types_0_3_1"; + "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"; + "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"; + "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"; + "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"; + "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"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "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-orphans" = doDistribute super."binary-orphans_0_1_2_0"; + "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" = doDistribute super."bound_1_0_6"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "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" = doDistribute super."buffer-builder_0_2_4_0"; + "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"; + "butterflies" = dontDistribute super."butterflies"; + "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" = doDistribute super."cabal-install_1_22_6_0"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = 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"; + "clarifai" = dontDistribute super."clarifai"; + "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-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"; + "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"; + "cryptol" = doDistribute super."cryptol_2_2_5"; + "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-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-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"; + "gitHUD" = dontDistribute super."gitHUD"; + "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"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = 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"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "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" = 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"; + "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_1"; + "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"; + "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"; + "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"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_0"; + "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" = 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"; + "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-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"; + "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-c-quote" = doDistribute super."language-c-quote_0_11_3"; + "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"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "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-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"; + "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"; + "modify-fasta" = dontDistribute super."modify-fasta"; + "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-http" = dontDistribute super."monad-http"; + "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"; + "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"; + "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" = doDistribute super."persistent_2_2_3"; + "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-template" = doDistribute super."persistent-template_2_1_4"; + "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-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"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-concurrency" = doDistribute super."pipes-concurrency_2_0_3"; + "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" = doDistribute super."regex-applicative_0_3_2_1"; + "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"; + "rev-state" = doDistribute super."rev-state_0_1"; + "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"; + "sbv" = doDistribute super."sbv_4_4"; + "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"; + "slug" = dontDistribute super."slug"; + "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-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"; + "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" = doDistribute super."stack_0_1_10_0"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "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" = doDistribute super."stm_2_4_4"; + "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" = doDistribute super."tagsoup_0_13_5"; + "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_1"; + "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" = doDistribute super."text_1_2_1_3"; + "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-parsers" = dontDistribute super."time-parsers"; + "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"; + "turtle" = doDistribute super."turtle_1_2_3"; + "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"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; + "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"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = 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-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; + "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" = doDistribute super."wreq_0_4_0_0"; + "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-system" = doDistribute super."x509-system_1_6_1"; + "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-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"; + "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.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix new file mode 100644 index 0000000000000000000000000000000000000000..9a3e399043ac4b779aef710977d9e53cd00ca6f0 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -0,0 +1,8105 @@ +{ 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"; + "HList" = doDistribute super."HList_0_4_1_0"; + "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" = doDistribute super."StateVar_1_1_0_1"; + "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-compat" = dontDistribute super."aeson-compat"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_2_3_0"; + "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"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "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-orphans" = doDistribute super."binary-orphans_0_1_2_0"; + "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"; + "bowntz" = dontDistribute super."bowntz"; + "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"; + "butterflies" = dontDistribute super."butterflies"; + "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" = doDistribute super."cabal-install_1_22_6_0"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = 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"; + "clarifai" = dontDistribute super."clarifai"; + "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"; + "cryptol" = doDistribute super."cryptol_2_2_5"; + "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-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-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"; + "gitHUD" = dontDistribute super."gitHUD"; + "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"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = 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"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "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" = doDistribute super."http-client_0_4_26_1"; + "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-c-quote" = doDistribute super."language-c-quote_0_11_3"; + "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"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "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"; + "modify-fasta" = dontDistribute super."modify-fasta"; + "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-http" = dontDistribute super."monad-http"; + "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-template" = doDistribute super."persistent-template_2_1_4"; + "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" = doDistribute super."regex-applicative_0_3_2_1"; + "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"; + "sbv" = doDistribute super."sbv_4_4"; + "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"; + "slug" = dontDistribute super."slug"; + "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" = doDistribute super."stack_0_1_10_1"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "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" = doDistribute super."stm_2_4_4"; + "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" = doDistribute super."tagsoup_0_13_5"; + "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" = doDistribute super."text_1_2_1_3"; + "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-parsers" = dontDistribute super."time-parsers"; + "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"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; + "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"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = 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-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-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" = doDistribute super."wreq_0_4_0_0"; + "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 631da53ead64de568c94fea84be1c041ac66cbe8..4461c0812ff3dd1632a61b579a79544da2b25417 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"; @@ -436,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -468,6 +470,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 +503,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"; @@ -777,6 +781,7 @@ self: super: { "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"; @@ -880,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1106,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1389,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"; @@ -1452,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"; @@ -1495,6 +1505,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1647,6 +1659,7 @@ self: super: { "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"; @@ -1659,9 +1672,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1682,6 +1697,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_0"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffon" = dontDistribute super."buffon"; "bugzilla" = dontDistribute super."bugzilla"; @@ -1696,6 +1712,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1738,6 +1755,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1779,6 +1797,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1796,7 +1815,9 @@ self: super: { "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"; @@ -1844,6 +1865,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"; @@ -1912,6 +1934,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -1947,6 +1970,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 +2070,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"; @@ -2289,6 +2314,7 @@ self: super: { "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"; @@ -2414,11 +2440,14 @@ 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"; "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"; @@ -2460,6 +2489,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"; @@ -2511,6 +2541,7 @@ self: super: { "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"; @@ -2641,6 +2672,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"; @@ -2791,6 +2823,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2824,6 +2857,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"; @@ -2840,6 +2874,7 @@ self: super: { "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"; @@ -3027,6 +3062,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"; @@ -3159,6 +3195,7 @@ self: super: { "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"; @@ -3201,6 +3238,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3217,6 +3255,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3235,12 +3274,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3274,9 +3315,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3423,6 +3469,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3440,6 +3487,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"; @@ -3459,6 +3507,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3531,6 +3580,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"; @@ -3589,6 +3639,7 @@ self: super: { "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"; @@ -3685,6 +3736,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"; @@ -3694,6 +3746,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3758,6 +3811,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"; @@ -3917,6 +3971,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3971,6 +4026,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"; @@ -4137,6 +4194,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"; @@ -4177,6 +4235,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"; @@ -4234,6 +4293,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"; @@ -4241,6 +4301,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4260,6 +4321,7 @@ self: super: { "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"; @@ -4327,6 +4389,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"; @@ -4455,6 +4518,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 +4694,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 +4704,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 +4819,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 +4861,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"; @@ -4843,6 +4911,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4916,6 +4986,7 @@ self: super: { "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"; @@ -4943,6 +5014,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"; @@ -4986,6 +5058,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"; @@ -4998,6 +5071,7 @@ self: super: { "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"; @@ -5029,6 +5103,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"; @@ -5051,6 +5126,7 @@ self: super: { "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"; @@ -5224,6 +5300,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5244,6 +5321,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5316,6 +5394,7 @@ self: super: { "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"; @@ -5427,6 +5506,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"; @@ -5511,6 +5591,7 @@ self: super: { "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"; @@ -5599,6 +5680,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"; @@ -5653,6 +5735,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"; @@ -5705,6 +5788,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5842,6 +5926,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"; @@ -5862,6 +5947,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"; @@ -5870,6 +5956,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"; @@ -5888,6 +5975,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5897,6 +5985,7 @@ self: super: { "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"; @@ -5905,6 +5994,7 @@ self: super: { "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"; @@ -5977,6 +6067,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"; @@ -6069,6 +6160,7 @@ self: super: { "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"; @@ -6221,6 +6313,7 @@ self: super: { "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"; @@ -6301,6 +6394,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6411,6 +6505,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"; @@ -6541,6 +6636,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6639,6 +6735,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"; @@ -6647,6 +6744,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6803,6 +6901,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6848,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"; @@ -6912,6 +7012,7 @@ self: super: { "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"; @@ -6987,6 +7088,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7013,6 +7115,7 @@ self: super: { "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"; @@ -7026,8 +7129,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7134,6 +7239,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"; @@ -7298,6 +7404,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7389,6 +7496,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7398,6 +7506,8 @@ self: super: { "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"; @@ -7548,6 +7658,7 @@ self: super: { "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"; @@ -7576,10 +7687,12 @@ self: super: { "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"; @@ -7610,8 +7723,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7795,6 +7910,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7806,6 +7922,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"; @@ -7815,6 +7932,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7836,6 +7954,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7909,6 +8030,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7966,6 +8088,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix new file mode 100644 index 0000000000000000000000000000000000000000..407b9840cddd989408d54a32962c842d081bd204 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -0,0 +1,8091 @@ +{ 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.20 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-extra" = doDistribute super."aeson-extra_0_2_3_0"; + "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"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "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"; + "bowntz" = dontDistribute super."bowntz"; + "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"; + "butterflies" = dontDistribute super."butterflies"; + "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"; + "clarifai" = dontDistribute super."clarifai"; + "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"; + "cryptol" = doDistribute super."cryptol_2_2_5"; + "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-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-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"; + "gitHUD" = dontDistribute super."gitHUD"; + "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"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = 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"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "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"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "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"; + "modify-fasta" = dontDistribute super."modify-fasta"; + "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-http" = dontDistribute super."monad-http"; + "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"; + "sbv" = doDistribute super."sbv_4_4"; + "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"; + "slug" = dontDistribute super."slug"; + "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" = doDistribute super."stack_0_1_10_1"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "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-parsers" = dontDistribute super."time-parsers"; + "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"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; + "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"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = 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-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-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-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.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 55cf748dfe588956f57c1f2171ddb2d59c906c50..ebe29e181a89b82fe0b9bdd74f0e755032300405 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"; @@ -436,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -468,6 +470,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 +503,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"; @@ -777,6 +781,7 @@ self: super: { "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"; @@ -880,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1106,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1388,6 +1395,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1451,6 +1459,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 +1504,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1646,6 +1658,7 @@ self: super: { "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"; @@ -1658,9 +1671,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1681,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"; @@ -1695,6 +1711,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1737,6 +1754,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1778,6 +1796,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1795,7 +1814,9 @@ self: super: { "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"; @@ -1843,6 +1864,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"; @@ -1911,6 +1933,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -1946,6 +1969,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 +2068,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"; @@ -2285,6 +2310,7 @@ self: super: { "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"; @@ -2410,11 +2436,14 @@ 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"; "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"; @@ -2456,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"; @@ -2507,6 +2537,7 @@ self: super: { "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"; @@ -2637,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"; @@ -2787,6 +2819,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2820,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"; @@ -2836,6 +2870,7 @@ self: super: { "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"; @@ -3022,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"; @@ -3154,6 +3190,7 @@ self: super: { "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"; @@ -3196,6 +3233,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3212,6 +3250,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3230,12 +3269,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3269,9 +3310,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3418,6 +3464,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3435,6 +3482,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"; @@ -3454,6 +3502,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3526,6 +3575,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"; @@ -3584,6 +3634,7 @@ self: super: { "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"; @@ -3680,6 +3731,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"; @@ -3689,6 +3741,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3753,6 +3806,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"; @@ -3912,6 +3966,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3965,6 +4020,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"; @@ -4130,6 +4187,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"; @@ -4170,6 +4228,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"; @@ -4227,6 +4286,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"; @@ -4234,6 +4294,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4253,6 +4314,7 @@ self: super: { "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"; @@ -4320,6 +4382,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"; @@ -4448,6 +4511,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"; @@ -4623,6 +4687,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"; @@ -4632,6 +4697,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"; @@ -4746,6 +4812,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"; @@ -4787,6 +4854,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"; @@ -4836,6 +4904,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4909,6 +4979,7 @@ self: super: { "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"; @@ -4936,6 +5007,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"; @@ -4979,6 +5051,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"; @@ -4991,6 +5064,7 @@ self: super: { "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"; @@ -5022,6 +5096,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"; @@ -5044,6 +5119,7 @@ self: super: { "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"; @@ -5217,6 +5293,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5237,6 +5314,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5309,6 +5387,7 @@ self: super: { "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"; @@ -5420,7 +5499,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5503,6 +5584,7 @@ self: super: { "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"; @@ -5591,6 +5673,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"; @@ -5645,6 +5728,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"; @@ -5697,6 +5781,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5834,6 +5919,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"; @@ -5854,6 +5940,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"; @@ -5862,6 +5949,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 +5968,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5889,6 +5978,7 @@ self: super: { "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"; @@ -5897,6 +5987,7 @@ self: super: { "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"; @@ -5969,6 +6060,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"; @@ -6061,6 +6153,7 @@ self: super: { "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"; @@ -6213,6 +6306,7 @@ self: super: { "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"; @@ -6293,6 +6387,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6402,6 +6497,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"; @@ -6532,6 +6628,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6630,6 +6727,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"; @@ -6638,6 +6736,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6794,6 +6893,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6839,6 +6939,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"; @@ -6902,6 +7003,7 @@ self: super: { "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"; @@ -6977,6 +7079,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "stackage-sandbox" = doDistribute super."stackage-sandbox_0_1_5"; @@ -7003,6 +7106,7 @@ self: super: { "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"; @@ -7016,8 +7120,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7124,6 +7230,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"; @@ -7287,6 +7394,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7378,6 +7486,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7387,6 +7496,8 @@ self: super: { "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"; @@ -7537,6 +7648,7 @@ self: super: { "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"; @@ -7565,10 +7677,12 @@ self: super: { "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"; @@ -7599,8 +7713,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7783,6 +7899,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7794,6 +7911,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"; @@ -7803,6 +7921,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7824,6 +7943,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7897,6 +8019,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7954,6 +8077,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index cd1858c17747220b16cd5e14020c7f3eab5f508f..8a8faeb882912ca07ceedec24167862180b8452a 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"; @@ -436,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -468,6 +470,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 +503,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"; @@ -777,6 +781,7 @@ self: super: { "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"; @@ -880,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1106,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1388,6 +1395,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1451,6 +1459,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 +1504,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1646,6 +1658,7 @@ self: super: { "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"; @@ -1658,9 +1671,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1681,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"; @@ -1695,6 +1711,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1737,6 +1754,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1778,6 +1796,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1795,7 +1814,9 @@ self: super: { "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"; @@ -1842,6 +1863,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"; @@ -1910,6 +1932,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_11"; "clash-lib" = doDistribute super."clash-lib_0_5_10"; @@ -1945,6 +1968,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"; @@ -2043,6 +2067,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"; @@ -2284,6 +2309,7 @@ self: super: { "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"; @@ -2409,11 +2435,14 @@ 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"; "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"; @@ -2455,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"; @@ -2506,6 +2536,7 @@ self: super: { "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"; @@ -2636,6 +2667,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"; @@ -2786,6 +2818,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2819,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"; @@ -2835,6 +2869,7 @@ self: super: { "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"; @@ -3021,6 +3056,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"; @@ -3153,6 +3189,7 @@ self: super: { "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"; @@ -3195,6 +3232,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3211,6 +3249,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3229,12 +3268,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3268,9 +3309,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3417,6 +3463,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3434,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"; @@ -3453,6 +3501,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3525,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"; @@ -3583,6 +3633,7 @@ self: super: { "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"; @@ -3679,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"; @@ -3688,6 +3740,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3752,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"; @@ -3911,6 +3965,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3964,6 +4019,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"; @@ -4129,6 +4186,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"; @@ -4169,6 +4227,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"; @@ -4226,6 +4285,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"; @@ -4233,6 +4293,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4252,6 +4313,7 @@ self: super: { "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"; @@ -4319,6 +4381,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"; @@ -4447,6 +4510,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 +4686,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 +4696,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"; @@ -4745,6 +4811,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"; @@ -4786,6 +4853,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"; @@ -4835,6 +4903,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4908,6 +4978,7 @@ self: super: { "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"; @@ -4935,6 +5006,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"; @@ -4978,6 +5050,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"; @@ -4990,6 +5063,7 @@ self: super: { "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"; @@ -5021,6 +5095,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"; @@ -5043,6 +5118,7 @@ self: super: { "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"; @@ -5216,6 +5292,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5236,6 +5313,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5308,6 +5386,7 @@ self: super: { "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"; @@ -5419,7 +5498,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5502,6 +5583,7 @@ self: super: { "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"; @@ -5590,6 +5672,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 +5727,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"; @@ -5696,6 +5780,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5833,6 +5918,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 +5939,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"; @@ -5861,6 +5948,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"; @@ -5879,6 +5967,7 @@ self: super: { "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; @@ -5888,6 +5977,7 @@ self: super: { "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"; @@ -5896,6 +5986,7 @@ self: super: { "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"; @@ -5968,6 +6059,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"; @@ -6060,6 +6152,7 @@ self: super: { "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"; @@ -6212,6 +6305,7 @@ self: super: { "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"; @@ -6292,6 +6386,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6401,6 +6496,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 +6627,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6628,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_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; "servant-blaze" = dontDistribute super."servant-blaze"; @@ -6636,6 +6734,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6792,6 +6891,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6837,6 +6937,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"; @@ -6900,6 +7001,7 @@ self: super: { "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"; @@ -6975,6 +7077,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_3_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7000,6 +7103,7 @@ self: super: { "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"; @@ -7013,8 +7117,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7121,6 +7227,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"; @@ -7284,6 +7391,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7375,6 +7483,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7384,6 +7493,8 @@ self: super: { "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"; @@ -7534,6 +7645,7 @@ self: super: { "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"; @@ -7562,10 +7674,12 @@ self: super: { "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"; @@ -7596,8 +7710,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7780,6 +7896,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7791,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"; @@ -7800,6 +7918,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7821,6 +7940,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7893,6 +8015,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7950,6 +8073,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index c9b18487c15a02b93c192d4338328182558b54d3..b4746be33104f48ffadcf68f9d93bbb7a208211c 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"; @@ -436,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -468,6 +470,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 +503,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"; @@ -777,6 +781,7 @@ self: super: { "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"; @@ -880,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1106,6 +1112,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1387,6 +1394,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1450,6 +1458,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 +1503,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1645,6 +1657,7 @@ self: super: { "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"; @@ -1657,9 +1670,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1680,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"; @@ -1694,6 +1710,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1736,6 +1753,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1777,6 +1795,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1794,7 +1813,9 @@ self: super: { "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"; @@ -1840,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"; @@ -1908,6 +1930,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_13"; "clash-lib" = doDistribute super."clash-lib_0_5_11"; @@ -1943,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"; @@ -2041,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"; @@ -2281,6 +2306,7 @@ self: super: { "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"; @@ -2406,11 +2432,14 @@ 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"; "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"; @@ -2452,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"; @@ -2503,6 +2533,7 @@ self: super: { "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"; @@ -2633,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"; @@ -2783,6 +2815,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2816,6 +2849,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"; @@ -2832,6 +2866,7 @@ self: super: { "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"; @@ -3016,6 +3051,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"; @@ -3148,6 +3184,7 @@ self: super: { "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"; @@ -3190,6 +3227,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3206,6 +3244,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3224,12 +3263,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3263,9 +3304,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3412,6 +3458,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3429,6 +3476,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"; @@ -3448,6 +3496,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3520,6 +3569,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"; @@ -3578,6 +3628,7 @@ self: super: { "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"; @@ -3674,6 +3725,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"; @@ -3682,6 +3734,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3746,6 +3799,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"; @@ -3904,6 +3958,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3957,6 +4012,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"; @@ -4122,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"; @@ -4162,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"; @@ -4218,6 +4277,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"; @@ -4225,6 +4285,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4244,6 +4305,7 @@ self: super: { "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"; @@ -4311,6 +4373,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"; @@ -4437,6 +4500,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"; @@ -4611,6 +4675,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"; @@ -4620,6 +4685,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"; @@ -4734,6 +4800,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"; @@ -4775,6 +4842,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"; @@ -4824,6 +4892,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4897,6 +4967,7 @@ self: super: { "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"; @@ -4921,8 +4992,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"; @@ -4966,6 +5039,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"; @@ -4978,6 +5052,7 @@ self: super: { "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"; @@ -5009,6 +5084,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"; @@ -5031,6 +5107,7 @@ self: super: { "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"; @@ -5204,6 +5281,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5224,6 +5302,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5296,6 +5375,7 @@ self: super: { "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"; @@ -5406,7 +5486,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5489,6 +5571,7 @@ self: super: { "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"; @@ -5577,6 +5660,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"; @@ -5631,6 +5715,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"; @@ -5683,6 +5768,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5819,6 +5905,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"; @@ -5839,6 +5926,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"; @@ -5847,6 +5935,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"; @@ -5864,6 +5953,7 @@ self: super: { "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"; @@ -5873,6 +5963,7 @@ self: super: { "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"; @@ -5881,6 +5972,7 @@ self: super: { "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"; @@ -5953,6 +6045,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"; @@ -6043,6 +6136,7 @@ self: super: { "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"; @@ -6195,6 +6289,7 @@ self: super: { "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"; @@ -6275,6 +6370,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6384,6 +6480,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"; @@ -6514,6 +6611,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6611,6 +6709,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"; @@ -6619,6 +6718,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6774,6 +6874,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6819,6 +6920,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"; @@ -6882,6 +6984,7 @@ self: super: { "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"; @@ -6957,6 +7060,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6982,6 +7086,7 @@ self: super: { "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"; @@ -6995,8 +7100,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7103,6 +7210,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"; @@ -7263,6 +7371,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7354,6 +7463,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7363,6 +7473,8 @@ self: super: { "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"; @@ -7513,6 +7625,7 @@ self: super: { "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"; @@ -7541,10 +7654,12 @@ self: super: { "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"; @@ -7575,8 +7690,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7759,6 +7876,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7770,6 +7888,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"; @@ -7779,6 +7898,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7800,6 +7920,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7872,6 +7995,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7929,6 +8053,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7954,6 +8079,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 82a4183307a2dd02e3c9e00b4025914fa589787c..83635b005ae2c60ae9197da3dffd5377709f67fd 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"; @@ -436,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -468,6 +470,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 +503,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"; @@ -777,6 +781,7 @@ self: super: { "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"; @@ -880,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1105,6 +1111,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1386,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"; @@ -1449,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"; @@ -1492,6 +1502,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1644,6 +1656,7 @@ self: super: { "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"; @@ -1656,9 +1669,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1679,6 +1694,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"; @@ -1693,6 +1709,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1735,6 +1752,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1776,6 +1794,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1793,7 +1812,9 @@ self: super: { "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"; @@ -1838,6 +1859,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"; @@ -1906,6 +1928,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_14"; "clash-lib" = doDistribute super."clash-lib_0_5_12"; @@ -1941,6 +1964,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 +2063,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"; @@ -2279,6 +2304,7 @@ self: super: { "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"; @@ -2404,11 +2430,14 @@ 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"; "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"; @@ -2450,6 +2479,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"; @@ -2501,6 +2531,7 @@ self: super: { "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"; @@ -2631,6 +2662,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 +2812,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2812,6 +2845,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"; @@ -2828,6 +2862,7 @@ self: super: { "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"; @@ -3011,6 +3046,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"; @@ -3143,6 +3179,7 @@ self: super: { "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"; @@ -3185,6 +3222,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3201,6 +3239,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3217,12 +3256,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3256,9 +3297,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3405,6 +3451,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3422,6 +3469,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"; @@ -3441,6 +3489,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3513,6 +3562,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"; @@ -3551,6 +3601,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3570,6 +3621,7 @@ self: super: { "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"; @@ -3666,6 +3718,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"; @@ -3674,6 +3727,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3738,6 +3792,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"; @@ -3896,6 +3951,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3949,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"; @@ -4114,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"; @@ -4154,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"; @@ -4210,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"; @@ -4217,6 +4278,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4236,6 +4298,7 @@ self: super: { "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"; @@ -4303,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"; @@ -4429,6 +4493,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"; @@ -4602,6 +4667,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"; @@ -4611,6 +4677,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"; @@ -4723,6 +4790,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"; @@ -4764,6 +4832,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"; @@ -4812,6 +4881,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4885,6 +4956,7 @@ self: super: { "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"; @@ -4909,8 +4981,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"; @@ -4954,6 +5028,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 +5041,7 @@ self: super: { "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"; @@ -4997,6 +5073,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"; @@ -5019,6 +5096,7 @@ self: super: { "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"; @@ -5192,6 +5270,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5212,6 +5291,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5283,6 +5363,7 @@ self: super: { "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"; @@ -5393,7 +5474,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5476,6 +5559,7 @@ self: super: { "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"; @@ -5564,6 +5648,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"; @@ -5618,6 +5703,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"; @@ -5670,6 +5756,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5806,6 +5893,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"; @@ -5826,6 +5914,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"; @@ -5833,6 +5922,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"; @@ -5850,6 +5940,7 @@ self: super: { "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"; @@ -5859,6 +5950,7 @@ self: super: { "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"; @@ -5867,6 +5959,7 @@ self: super: { "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"; @@ -5939,6 +6032,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"; @@ -6029,6 +6123,7 @@ self: super: { "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"; @@ -6181,6 +6276,7 @@ self: super: { "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"; @@ -6261,6 +6357,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6370,6 +6467,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"; @@ -6500,6 +6598,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6597,6 +6696,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"; @@ -6605,6 +6705,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_2"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6760,6 +6861,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6805,6 +6907,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"; @@ -6868,6 +6971,7 @@ self: super: { "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"; @@ -6943,6 +7047,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_4_1"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6968,6 +7073,7 @@ self: super: { "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"; @@ -6981,8 +7087,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7089,6 +7197,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"; @@ -7249,6 +7358,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7340,6 +7450,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7349,6 +7460,8 @@ self: super: { "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"; @@ -7498,6 +7611,7 @@ self: super: { "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"; @@ -7526,10 +7640,12 @@ self: super: { "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"; @@ -7560,8 +7676,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7744,6 +7862,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7754,6 +7873,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"; @@ -7763,6 +7883,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7784,6 +7905,9 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_1_2"; @@ -7855,6 +7979,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_2_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7912,6 +8037,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7937,6 +8063,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 701852f4484a5f8f55027c056551ac4bafa78ee6..706ac59c44b851d1446fd02118b60e732eb3560c 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"; @@ -435,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -467,6 +470,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 +503,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"; @@ -776,6 +781,7 @@ self: super: { "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"; @@ -879,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1104,6 +1111,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1326,6 +1334,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"; @@ -1381,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"; @@ -1444,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"; @@ -1487,6 +1499,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1639,6 +1653,7 @@ self: super: { "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"; @@ -1651,9 +1666,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1674,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"; @@ -1688,6 +1706,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1730,6 +1749,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1771,6 +1791,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1788,7 +1809,9 @@ self: super: { "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"; @@ -1833,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"; @@ -1901,6 +1925,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1936,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"; @@ -2034,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"; @@ -2273,6 +2300,7 @@ self: super: { "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"; @@ -2398,11 +2426,14 @@ 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"; "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"; @@ -2444,6 +2475,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"; @@ -2494,6 +2526,7 @@ self: super: { "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"; @@ -2624,6 +2657,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"; @@ -2773,6 +2807,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2805,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"; @@ -2821,6 +2857,7 @@ self: super: { "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"; @@ -3002,6 +3039,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"; @@ -3134,6 +3172,7 @@ self: super: { "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"; @@ -3176,6 +3215,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3192,6 +3232,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3208,12 +3249,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3247,9 +3290,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3396,6 +3444,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3413,6 +3462,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"; @@ -3432,6 +3482,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3504,6 +3555,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"; @@ -3542,6 +3594,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3561,6 +3614,7 @@ self: super: { "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"; @@ -3657,6 +3711,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"; @@ -3665,6 +3720,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_10"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3729,6 +3785,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"; @@ -3885,6 +3942,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3938,6 +3996,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"; @@ -4103,6 +4163,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"; @@ -4143,6 +4204,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"; @@ -4199,6 +4261,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"; @@ -4206,6 +4269,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4225,6 +4289,7 @@ self: super: { "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"; @@ -4270,6 +4335,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4291,6 +4357,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"; @@ -4417,6 +4484,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"; @@ -4589,6 +4657,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"; @@ -4598,6 +4667,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"; @@ -4710,6 +4780,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"; @@ -4751,6 +4822,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"; @@ -4799,6 +4871,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4872,6 +4946,7 @@ self: super: { "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"; @@ -4896,8 +4971,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"; @@ -4941,6 +5018,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 +5031,7 @@ self: super: { "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"; @@ -4984,6 +5063,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"; @@ -5006,6 +5086,7 @@ self: super: { "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"; @@ -5177,6 +5258,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5197,6 +5279,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; @@ -5268,6 +5351,7 @@ self: super: { "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"; @@ -5378,7 +5462,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5461,6 +5547,7 @@ self: super: { "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"; @@ -5549,6 +5636,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"; @@ -5603,6 +5691,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"; @@ -5654,6 +5743,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5790,6 +5880,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"; @@ -5810,6 +5901,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"; @@ -5817,6 +5909,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"; @@ -5834,6 +5927,7 @@ self: super: { "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"; @@ -5843,6 +5937,7 @@ self: super: { "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"; @@ -5851,6 +5946,7 @@ self: super: { "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"; @@ -5922,6 +6018,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"; @@ -6011,6 +6108,7 @@ self: super: { "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"; @@ -6161,6 +6259,7 @@ self: super: { "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"; @@ -6241,6 +6340,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6350,6 +6450,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"; @@ -6480,6 +6581,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6577,6 +6679,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"; @@ -6585,6 +6688,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6740,6 +6844,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6784,6 +6889,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"; @@ -6847,6 +6953,7 @@ self: super: { "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"; @@ -6921,6 +7028,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6946,6 +7054,7 @@ self: super: { "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"; @@ -6959,8 +7068,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7067,6 +7178,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"; @@ -7227,6 +7339,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7318,6 +7431,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7327,6 +7441,8 @@ self: super: { "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"; @@ -7475,6 +7591,7 @@ self: super: { "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"; @@ -7503,10 +7620,12 @@ self: super: { "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"; @@ -7537,8 +7656,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7721,6 +7842,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7731,6 +7853,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"; @@ -7740,6 +7863,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7761,8 +7885,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7831,6 +7959,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7888,6 +8017,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7912,6 +8042,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 8886aa895e7f628378b6e3b2b5cb34688cd660e3..50f10a6262082c799ed0dbc3665b108e7ee89f9c 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"; @@ -435,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -467,6 +470,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 +503,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"; @@ -776,6 +781,7 @@ self: super: { "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"; @@ -879,6 +885,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1104,6 +1111,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1326,6 +1334,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"; @@ -1381,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"; @@ -1444,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"; @@ -1487,6 +1499,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1504,6 +1518,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1636,6 +1651,7 @@ self: super: { "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"; @@ -1648,9 +1664,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1671,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"; @@ -1685,6 +1704,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1727,6 +1747,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1768,6 +1789,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1785,7 +1807,9 @@ self: super: { "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"; @@ -1829,6 +1853,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"; @@ -1897,6 +1922,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1932,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"; @@ -2029,6 +2056,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"; @@ -2179,6 +2207,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2267,6 +2296,7 @@ self: super: { "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"; @@ -2392,11 +2422,14 @@ 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"; "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"; @@ -2435,6 +2468,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"; @@ -2483,6 +2517,7 @@ self: super: { "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"; @@ -2613,6 +2648,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"; @@ -2762,6 +2798,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2794,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"; @@ -2810,6 +2848,7 @@ self: super: { "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"; @@ -2991,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"; @@ -3123,6 +3163,7 @@ self: super: { "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"; @@ -3165,6 +3206,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3181,6 +3223,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3197,12 +3240,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3236,9 +3281,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3385,6 +3435,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3402,6 +3453,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"; @@ -3421,6 +3473,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3493,6 +3546,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"; @@ -3531,6 +3585,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3550,6 +3605,7 @@ self: super: { "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"; @@ -3646,6 +3702,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"; @@ -3654,6 +3711,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3718,6 +3776,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"; @@ -3874,6 +3933,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3927,6 +3987,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"; @@ -4092,6 +4154,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"; @@ -4132,6 +4195,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"; @@ -4188,6 +4252,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"; @@ -4195,6 +4260,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4214,6 +4280,7 @@ self: super: { "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"; @@ -4259,6 +4326,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4280,6 +4348,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"; @@ -4406,6 +4475,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"; @@ -4578,6 +4648,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"; @@ -4587,6 +4658,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"; @@ -4699,6 +4771,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"; @@ -4740,6 +4813,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"; @@ -4788,6 +4862,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4861,6 +4937,7 @@ self: super: { "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"; @@ -4885,8 +4962,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"; @@ -4930,6 +5009,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 +5022,7 @@ self: super: { "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"; @@ -4973,6 +5054,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"; @@ -4995,6 +5077,7 @@ self: super: { "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"; @@ -5164,6 +5247,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5184,6 +5268,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -5255,6 +5340,7 @@ self: super: { "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"; @@ -5365,7 +5451,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5448,6 +5536,7 @@ self: super: { "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"; @@ -5536,6 +5625,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"; @@ -5590,6 +5680,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"; @@ -5641,6 +5732,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5777,6 +5869,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"; @@ -5797,6 +5890,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"; @@ -5804,6 +5898,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"; @@ -5821,6 +5916,7 @@ self: super: { "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"; @@ -5830,6 +5926,7 @@ self: super: { "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"; @@ -5838,6 +5935,7 @@ self: super: { "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"; @@ -5909,6 +6007,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"; @@ -5996,6 +6095,7 @@ self: super: { "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"; @@ -6145,6 +6245,7 @@ self: super: { "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"; @@ -6225,6 +6326,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6334,6 +6436,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"; @@ -6464,6 +6567,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6561,6 +6665,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"; @@ -6569,6 +6674,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6724,6 +6830,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6768,6 +6875,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"; @@ -6831,6 +6939,7 @@ self: super: { "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"; @@ -6905,6 +7014,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6930,6 +7040,7 @@ self: super: { "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"; @@ -6943,8 +7054,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7011,6 +7124,7 @@ self: super: { "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"; @@ -7050,6 +7164,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"; @@ -7209,6 +7324,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7300,6 +7416,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7309,6 +7426,8 @@ self: super: { "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"; @@ -7457,6 +7576,7 @@ self: super: { "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"; @@ -7485,10 +7605,12 @@ self: super: { "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"; @@ -7519,8 +7641,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7703,6 +7827,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7713,6 +7838,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"; @@ -7722,6 +7848,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7743,8 +7870,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7813,6 +7944,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7870,6 +8002,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7894,6 +8027,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"; @@ -7921,6 +8055,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 e57c1488001686c29afbe26dfa651e7962130479..a05341eb8b4f167131fdbddccd5961b2ef8b5fc6 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"; @@ -435,6 +437,7 @@ self: super: { "HLearn-classification" = dontDistribute super."HLearn-classification"; "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HList" = doDistribute super."HList_0_4_1_0"; "HListPP" = dontDistribute super."HListPP"; "HLogger" = dontDistribute super."HLogger"; "HMM" = dontDistribute super."HMM"; @@ -467,6 +470,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 +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"; @@ -774,6 +779,7 @@ self: super: { "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"; @@ -877,6 +883,7 @@ self: super: { "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; + "StateVar" = doDistribute super."StateVar_1_1_0_1"; "StateVar-transformer" = dontDistribute super."StateVar-transformer"; "StatisticalMethods" = dontDistribute super."StatisticalMethods"; "Stomp" = dontDistribute super."Stomp"; @@ -1102,6 +1109,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-compat" = dontDistribute super."aeson-compat"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_2_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1324,6 +1332,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"; @@ -1379,6 +1388,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_2_2"; "autonix-deps" = dontDistribute super."autonix-deps"; "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; "autoproc" = dontDistribute super."autoproc"; @@ -1442,6 +1452,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"; @@ -1485,6 +1497,8 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; "billeksah-main" = dontDistribute super."billeksah-main"; @@ -1502,6 +1516,7 @@ self: super: { "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1633,6 +1648,7 @@ self: super: { "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"; @@ -1645,9 +1661,11 @@ 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"; + "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; @@ -1668,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"; @@ -1682,6 +1701,7 @@ self: super: { "buster-gtk" = dontDistribute super."buster-gtk"; "buster-network" = dontDistribute super."buster-network"; "bustle" = dontDistribute super."bustle"; + "butterflies" = dontDistribute super."butterflies"; "bv" = dontDistribute super."bv"; "byline" = dontDistribute super."byline"; "bytable" = dontDistribute super."bytable"; @@ -1724,6 +1744,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-helper" = dontDistribute super."cabal-helper"; + "cabal-install" = doDistribute super."cabal-install_1_22_6_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1764,6 +1785,7 @@ self: super: { "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_0"; "cairo-appbase" = dontDistribute super."cairo-appbase"; "cake" = dontDistribute super."cake"; "cake3" = dontDistribute super."cake3"; @@ -1781,7 +1803,9 @@ self: super: { "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"; @@ -1825,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"; @@ -1893,6 +1918,7 @@ self: super: { "claferwiki" = dontDistribute super."claferwiki"; "clang-pure" = dontDistribute super."clang-pure"; "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; "clash-lib" = doDistribute super."clash-lib_0_5_13"; @@ -1928,6 +1954,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"; @@ -2025,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"; @@ -2175,6 +2203,7 @@ self: super: { "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2263,6 +2292,7 @@ self: super: { "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"; @@ -2387,11 +2417,14 @@ 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"; "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"; @@ -2430,6 +2463,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"; @@ -2478,6 +2512,7 @@ self: super: { "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"; @@ -2607,6 +2642,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"; @@ -2755,6 +2791,7 @@ self: super: { "exinst-hashable" = dontDistribute super."exinst-hashable"; "exists" = dontDistribute super."exists"; "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; "exp-pairs" = dontDistribute super."exp-pairs"; "expand" = dontDistribute super."expand"; "expat-enumerator" = dontDistribute super."expat-enumerator"; @@ -2787,6 +2824,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"; @@ -2803,6 +2841,7 @@ self: super: { "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"; @@ -2983,6 +3022,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"; @@ -3115,6 +3155,7 @@ self: super: { "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"; @@ -3157,6 +3198,7 @@ self: super: { "gimlh" = dontDistribute super."gimlh"; "ginger" = dontDistribute super."ginger"; "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_0"; "gipeda" = doDistribute super."gipeda_0_1_2_1"; "gist" = dontDistribute super."gist"; "git-all" = dontDistribute super."git-all"; @@ -3173,6 +3215,7 @@ self: super: { "git-repair" = dontDistribute super."git-repair"; "git-sanity" = dontDistribute super."git-sanity"; "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; "gitcache" = dontDistribute super."gitcache"; "gitdo" = dontDistribute super."gitdo"; "github" = dontDistribute super."github"; @@ -3189,12 +3232,14 @@ 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"; "glambda" = dontDistribute super."glambda"; "glapp" = dontDistribute super."glapp"; "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_1"; "glicko" = dontDistribute super."glicko"; "glider-nlp" = dontDistribute super."glider-nlp"; "glintcollider" = dontDistribute super."glintcollider"; @@ -3228,9 +3273,14 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; "goatee" = dontDistribute super."goatee"; "goatee-gtk" = dontDistribute super."goatee-gtk"; "gofer-prelude" = dontDistribute super."gofer-prelude"; @@ -3377,6 +3427,7 @@ self: super: { "greencard" = dontDistribute super."greencard"; "greencard-lib" = dontDistribute super."greencard-lib"; "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; "grid" = dontDistribute super."grid"; "gridland" = dontDistribute super."gridland"; "grm" = dontDistribute super."grm"; @@ -3394,6 +3445,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"; @@ -3413,6 +3465,7 @@ self: super: { "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_1"; "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; "gtkglext" = dontDistribute super."gtkglext"; "gtkimageview" = dontDistribute super."gtkimageview"; @@ -3485,6 +3538,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"; @@ -3523,6 +3577,7 @@ self: super: { "hakyll-elm" = dontDistribute super."hakyll-elm"; "hakyll-sass" = dontDistribute super."hakyll-sass"; "halberd" = dontDistribute super."halberd"; + "half" = doDistribute super."half_0_2_2_1"; "halfs" = dontDistribute super."halfs"; "halipeto" = dontDistribute super."halipeto"; "halive" = dontDistribute super."halive"; @@ -3542,6 +3597,7 @@ self: super: { "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"; @@ -3638,6 +3694,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"; @@ -3646,6 +3703,7 @@ self: super: { "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" = doDistribute super."haskell-src-meta_0_6_0_11"; "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; @@ -3710,6 +3768,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"; @@ -3866,6 +3925,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -3919,6 +3979,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"; @@ -4084,6 +4146,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"; @@ -4124,6 +4187,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"; @@ -4180,6 +4244,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"; @@ -4187,6 +4252,7 @@ self: super: { "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_3"; "hspec-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; "hspec2" = dontDistribute super."hspec2"; "hspr-sh" = dontDistribute super."hspr-sh"; @@ -4206,6 +4272,7 @@ self: super: { "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"; @@ -4251,6 +4318,7 @@ self: super: { "http-accept" = dontDistribute super."http-accept"; "http-api-data" = dontDistribute super."http-api-data"; "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_24"; "http-client-auth" = dontDistribute super."http-client-auth"; "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; @@ -4272,6 +4340,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 +4467,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 +4640,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 +4650,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 +4763,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"; @@ -4732,6 +4805,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"; @@ -4780,6 +4854,8 @@ self: super: { "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; "lentil" = dontDistribute super."lentil"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; "leveldb-haskell" = dontDistribute super."leveldb-haskell"; "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; @@ -4853,6 +4929,7 @@ self: super: { "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"; @@ -4877,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"; @@ -4922,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"; @@ -4934,6 +5014,7 @@ self: super: { "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"; @@ -4965,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"; @@ -4987,6 +5069,7 @@ self: super: { "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"; @@ -5156,6 +5239,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = dontDistribute super."modify-fasta"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5176,6 +5260,7 @@ self: super: { "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; + "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; @@ -5247,6 +5332,7 @@ self: super: { "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"; @@ -5357,7 +5443,9 @@ 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"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5440,6 +5528,7 @@ self: super: { "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"; @@ -5528,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"; @@ -5581,6 +5671,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"; @@ -5632,6 +5723,7 @@ self: super: { "pandoc-placetable" = dontDistribute super."pandoc-placetable"; "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_0"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -5768,6 +5860,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 +5881,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 +5889,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"; @@ -5812,6 +5907,7 @@ self: super: { "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"; @@ -5821,6 +5917,7 @@ self: super: { "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"; @@ -5829,6 +5926,7 @@ self: super: { "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"; @@ -5900,6 +5998,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"; @@ -5987,6 +6086,7 @@ self: super: { "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"; @@ -6136,6 +6236,7 @@ self: super: { "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"; @@ -6216,6 +6317,7 @@ self: super: { "reform-hamlet" = dontDistribute super."reform-hamlet"; "reform-happstack" = dontDistribute super."reform-happstack"; "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative" = doDistribute super."regex-applicative_0_3_2_1"; "regex-applicative-text" = dontDistribute super."regex-applicative-text"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6325,6 +6427,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"; @@ -6455,6 +6558,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6552,6 +6656,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"; @@ -6560,6 +6665,7 @@ self: super: { "servant-docs" = doDistribute super."servant-docs_0_4_4_4"; "servant-ede" = dontDistribute super."servant-ede"; "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -6715,6 +6821,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = dontDistribute super."slug"; "smallarray" = dontDistribute super."smallarray"; "smallcaps" = dontDistribute super."smallcaps"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; @@ -6759,6 +6866,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"; @@ -6822,6 +6930,7 @@ self: super: { "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"; @@ -6896,6 +7005,7 @@ self: super: { "stack" = doDistribute super."stack_0_1_5_0"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; "stack-run-auto" = dontDistribute super."stack-run-auto"; "stackage-curator" = dontDistribute super."stackage-curator"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -6921,6 +7031,7 @@ self: super: { "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"; @@ -6934,8 +7045,10 @@ self: super: { "stepwise" = dontDistribute super."stepwise"; "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; "stitch" = dontDistribute super."stitch"; + "stm" = doDistribute super."stm_2_4_4"; "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"; @@ -7002,6 +7115,7 @@ self: super: { "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"; @@ -7041,6 +7155,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"; @@ -7200,6 +7315,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; + "text" = doDistribute super."text_1_2_1_3"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu-translit" = dontDistribute super."text-icu-translit"; @@ -7291,6 +7407,7 @@ self: super: { "time-interval" = dontDistribute super."time-interval"; "time-io-access" = dontDistribute super."time-io-access"; "time-locale-compat" = doDistribute super."time-locale-compat_0_1_1_0"; + "time-parsers" = dontDistribute super."time-parsers"; "time-patterns" = dontDistribute super."time-patterns"; "time-qq" = dontDistribute super."time-qq"; "time-recurrence" = dontDistribute super."time-recurrence"; @@ -7300,6 +7417,8 @@ self: super: { "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"; @@ -7448,6 +7567,7 @@ self: super: { "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"; @@ -7476,10 +7596,12 @@ self: super: { "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"; @@ -7510,8 +7632,10 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_2"; "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"; @@ -7694,6 +7818,7 @@ self: super: { "vinyl-utils" = dontDistribute super."vinyl-utils"; "vinyl-vectors" = dontDistribute super."vinyl-vectors"; "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; "vision" = dontDistribute super."vision"; "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; "visual-prof" = dontDistribute super."visual-prof"; @@ -7704,6 +7829,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"; @@ -7713,6 +7839,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_4_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-cors" = doDistribute super."wai-cors_0_2_3"; @@ -7734,8 +7861,12 @@ self: super: { "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-crowd" = doDistribute super."wai-middleware-crowd_0_1_2_1"; "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; @@ -7804,6 +7935,7 @@ self: super: { "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; "webkit" = dontDistribute super."webkit"; @@ -7861,6 +7993,7 @@ self: super: { "wp-archivebot" = dontDistribute super."wp-archivebot"; "wraparound" = dontDistribute super."wraparound"; "wraxml" = dontDistribute super."wraxml"; + "wreq" = doDistribute super."wreq_0_4_0_0"; "wreq-sb" = dontDistribute super."wreq-sb"; "wright" = dontDistribute super."wright"; "wsedit" = dontDistribute super."wsedit"; @@ -7885,6 +8018,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"; @@ -7912,6 +8046,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 16ad44023b727fb8a3605c804b2c8cd0cb53c6f9..26288e138846d90bb59fddb3cd06dd0a8e5e3704 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 @@ -747,6 +747,42 @@ self: { libraryToolDepends = [ alex cpphs happy ]; executableHaskellDepends = [ base directory filepath process ]; executableToolDepends = [ emacs ]; + jailbreak = true; + 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"; + 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 @@ -2459,6 +2495,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Cabal_1_22_6_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , deepseq, directory, extensible-exceptions, filepath, HUnit + , old-time, pretty, process, QuickCheck, regex-posix + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , time, unix + }: + mkDerivation { + pname = "Cabal"; + version = "1.22.6.0"; + sha256 = "e6a58714bd33ea107b5e99c7f149b48ddd3fbfa72e6105abbab4478bcf4f2433"; + libraryHaskellDepends = [ + array base binary bytestring containers deepseq directory filepath + pretty process time unix + ]; + testHaskellDepends = [ + base bytestring containers directory extensible-exceptions filepath + HUnit old-time process QuickCheck regex-posix test-framework + test-framework-hunit test-framework-quickcheck2 unix + ]; + doCheck = false; + homepage = "http://www.haskell.org/cabal/"; + description = "A framework for packaging Haskell software"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Cabal-ide-backend" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , deepseq, directory, extensible-exceptions, filepath, HUnit @@ -2567,6 +2630,7 @@ self: { version = "0.2.0.0"; sha256 = "8b0484241f389a9b83225f97ca0d903b7e5d3b0d98c34f5a526a0c7c3b934b45"; libraryHaskellDepends = [ base lens template-haskell ]; + jailbreak = true; description = "Coordinate systems"; license = stdenv.lib.licenses.mit; }) {}; @@ -2809,6 +2873,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; @@ -3943,7 +4008,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; }) {}; @@ -4444,6 +4508,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; @@ -5902,6 +5967,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 @@ -5915,6 +6003,7 @@ self: { executableHaskellDepends = [ base FTGL GLFW-b OpenGLRaw parallel random time ]; + jailbreak = true; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -6085,6 +6174,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; @@ -6243,8 +6333,8 @@ self: { ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }: mkDerivation { pname = "GLURaw"; - version = "1.5.0.2"; - sha256 = "dd24af039bef7f44dc580692b57a7a16a36a44b7261c8d3008aba60b696a4c3f"; + version = "1.5.0.3"; + sha256 = "066134b3c68442e074e67299f500d67cd769de7853e98ea01b89b19cd8c00b47"; libraryHaskellDepends = [ base OpenGLRaw transformers ]; librarySystemDepends = [ freeglut mesa ]; homepage = "http://www.haskell.org/haskellwiki/Opengl"; @@ -6315,8 +6405,8 @@ self: { }: mkDerivation { pname = "GLUT"; - version = "2.7.0.3"; - sha256 = "6292074f55c781f98468a526b09b70e6c08a3c108c10abac3aa44a10d8a5d1e1"; + version = "2.7.0.4"; + sha256 = "44e80e79895659e00e25033dfc29819f55226046ca6ca46b3373e031262b934c"; libraryHaskellDepends = [ array base containers OpenGL OpenGLRaw StateVar transformers ]; @@ -6328,8 +6418,8 @@ self: { }) {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 { @@ -6337,10 +6427,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; @@ -7372,20 +7461,19 @@ self: { }) {}; "HDBC-odbc" = callPackage - ({ mkDerivation, base, bytestring, HDBC, mtl, time, unixODBC - , utf8-string + ({ mkDerivation, base, bytestring, concurrent-extra, HDBC, mtl + , time, unixODBC, utf8-string }: mkDerivation { pname = "HDBC-odbc"; - version = "2.4.0.1"; - sha256 = "dbc6eecc122079ca396c86154bfe59553d65bea52f83f8c0630903f2292daee9"; + version = "2.5.0.0"; + sha256 = "729982fb31e2d7816e8600212236f32d9d9a59191d73ce57fce097be2234953b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring HDBC mtl time utf8-string + base bytestring concurrent-extra HDBC mtl time utf8-string ]; librarySystemDepends = [ unixODBC ]; - executableSystemDepends = [ unixODBC ]; homepage = "https://github.com/hdbc/hdbc-odbc"; description = "ODBC driver for HDBC"; license = stdenv.lib.licenses.bsd3; @@ -7541,6 +7629,7 @@ self: { messagepack text vect ]; librarySystemDepends = [ hgamer3d062 Urho3D ]; + jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; @@ -8056,7 +8145,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HList" = callPackage + "HList_0_4_1_0" = callPackage ({ mkDerivation, array, base, cmdargs, directory, doctest, filepath , ghc-prim, hspec, lens, mtl, process, profunctors, QuickCheck, syb , tagged, template-haskell @@ -8075,6 +8164,29 @@ self: { doCheck = false; description = "Heterogeneous lists"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HList" = callPackage + ({ mkDerivation, array, base, base-orphans, cmdargs, directory + , doctest, filepath, ghc-prim, hspec, lens, mtl, process + , profunctors, QuickCheck, syb, tagged, template-haskell + }: + mkDerivation { + pname = "HList"; + version = "0.4.2.0"; + sha256 = "cd99545a1dc4df7ceca09a93e4c4d391654a337882a25791f1c48e21317d7795"; + libraryHaskellDepends = [ + array base base-orphans ghc-prim mtl profunctors tagged + template-haskell + ]; + testHaskellDepends = [ + array base cmdargs directory doctest filepath hspec lens mtl + process QuickCheck syb template-haskell + ]; + doCheck = false; + description = "Heterogeneous lists"; + license = stdenv.lib.licenses.mit; }) {}; "HListPP" = callPackage @@ -8910,7 +9022,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HUnit" = callPackage + "HUnit_1_2_5_2" = callPackage ({ mkDerivation, base, deepseq }: mkDerivation { pname = "HUnit"; @@ -8920,9 +9032,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 +9046,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 +9907,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 +10135,8 @@ self: { }: mkDerivation { pname = "Hish"; - version = "0.1.2.1"; - sha256 = "fd3d404e8ea165e3011f5580d4f6556a596d7a24e6510e2ce5902779e29b6ca4"; + version = "0.1.2.2"; + sha256 = "5094eee275eb1d9dba7929c1bd812cb1b299dce18be5eefcfde3b2cd48d5365a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -10048,8 +10185,8 @@ self: { }: mkDerivation { pname = "Hoed"; - version = "0.3.2"; - sha256 = "b7a7101f0b27c0917ca8f1e4a9777735d86ffd05bf258ddef650a967e67d4735"; + version = "0.3.3"; + sha256 = "2ae2eed3c528a0c8ae9a797cddb66d64ddb5443d43181b00c90ab2ee9e0ef88d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -10310,20 +10447,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 +10598,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 +11790,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 +12643,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 +12729,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 +13547,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; }) {}; @@ -13864,7 +14005,7 @@ self: { kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; - "ObjectName" = callPackage + "ObjectName_1_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "ObjectName"; @@ -13874,6 +14015,19 @@ self: { homepage = "https://github.com/svenpanne/ObjectName"; description = "Explicitly handled object names"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ObjectName" = 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; }) {}; "Obsidian" = callPackage @@ -14029,8 +14183,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 +14299,8 @@ self: { }: mkDerivation { pname = "OpenGL"; - version = "2.13.1.1"; - sha256 = "6db5b3530e234bc643e3279ccbc78992b5e8f462f618593e2cebc80aa9abe0a6"; + version = "2.13.2.1"; + sha256 = "bc28e7e83bcf40c8654b74a35146a8d1a48fea76ea148c507b681c6d255f5734"; libraryHaskellDepends = [ base bytestring containers GLURaw ObjectName OpenGLRaw StateVar text transformers @@ -14219,8 +14373,8 @@ self: { }: mkDerivation { pname = "OpenGLRaw"; - version = "2.6.1.0"; - sha256 = "3d41249d8feb456889d79939a59e3f2a7b1c771b514fbdcc352ae4f676aa9db0"; + version = "2.6.1.1"; + sha256 = "bac2633ab2ae04ecaa26319aded375ad1c678fa33d9897ecd8c7d58998de183b"; libraryHaskellDepends = [ base bytestring containers half text transformers ]; @@ -14816,17 +14970,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"; @@ -15177,6 +15331,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Quelea" = callPackage + ({ mkDerivation, base, bytestring, cassandra-cql, cereal + , containers, derive, directory, lens, mtl, optparse-applicative + , process, random, template-haskell, text, time, transformers + , tuple, unix, uuid, z3, zeromq4-haskell + }: + mkDerivation { + pname = "Quelea"; + version = "1.0.0"; + sha256 = "b30b6516160a7d3ab9db3c1341b69c35f0a9230ac23bb819a7b42be48a67d7e3"; + libraryHaskellDepends = [ + base bytestring cassandra-cql cereal containers derive directory + lens mtl optparse-applicative process random template-haskell text + time transformers tuple unix uuid z3 zeromq4-haskell + ]; + homepage = "http://gowthamk.github.io/Quelea"; + description = "Programming with Eventual Consistency over Cassandra"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "QuickAnnotate" = callPackage ({ mkDerivation, base, haskell-src-exts }: mkDerivation { @@ -15218,6 +15392,8 @@ self: { pname = "QuickCheck"; version = "2.7.6"; sha256 = "80d8970a0c1dfcb714215cf11f2bf0f79339f70c01999dae2c31516100a0c527"; + revision = "1"; + editedCabalFile = "45ff46338dca0616041adade28d6b49d6a3ea810ba5dff619b2abdcbe7c93035"; libraryHaskellDepends = [ base random template-haskell tf-random transformers ]; @@ -15237,6 +15413,8 @@ self: { pname = "QuickCheck"; version = "2.8.1"; sha256 = "7073aa3635660476aa31df7cf0476926a1ac0231235020122eb276070675763b"; + revision = "1"; + editedCabalFile = "f8c84fee9ea7efc5d033cde7e4cd2ade67a30bb832f08e62394353481e16b4b7"; libraryHaskellDepends = [ base containers random template-haskell tf-random transformers ]; @@ -16158,16 +16336,17 @@ self: { }) {inherit (pkgs) SDL;}; "SDL-gfx" = callPackage - ({ mkDerivation, base, SDL }: + ({ mkDerivation, base, SDL, SDL_gfx }: mkDerivation { pname = "SDL-gfx"; - version = "0.6.0.1"; - sha256 = "8311da5762464cba671f5f2225d0777180d805f0b429ac5824ae2f9f4416c7ab"; + version = "0.6.0.2"; + sha256 = "ab0035335a2193d8fd3e468bc2e5ba74b086516b62bad35415153606a2770dc5"; libraryHaskellDepends = [ base SDL ]; + librarySystemDepends = [ SDL_gfx ]; description = "Binding to libSDL_gfx"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; + }) {inherit (pkgs) SDL_gfx;}; "SDL-image" = callPackage ({ mkDerivation, base, SDL, SDL_image }: @@ -16213,16 +16392,17 @@ self: { }) {inherit (pkgs) smpeg;}; "SDL-ttf" = callPackage - ({ mkDerivation, base, SDL }: + ({ mkDerivation, base, SDL, SDL_ttf }: mkDerivation { pname = "SDL-ttf"; - version = "0.6.2.1"; - sha256 = "3a9d43e99b85813aad4f6e731ed0cd01b8d9f3a4dfff51ec6143b3fc6428a5d1"; + version = "0.6.2.2"; + sha256 = "1621e4f1262f0c63aef84e02a9f53515ddcc4fce92a50d6954d947598a527499"; libraryHaskellDepends = [ base SDL ]; + librarySystemDepends = [ SDL_ttf ]; description = "Binding to libSDL_ttf"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; + }) {inherit (pkgs) SDL_ttf;}; "SDL2-ttf" = callPackage ({ mkDerivation, base, SDL2, SDL2_ttf }: @@ -16605,17 +16785,17 @@ self: { }) {}; "SciFlow" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lens, mtl - , optparse-applicative, shelly, split, template-haskell, text - , th-lift, unordered-containers, yaml + ({ mkDerivation, base, bytestring, containers, data-default-class + , fgl, graphviz, lens, mtl, optparse-applicative, shelly, split + , template-haskell, text, th-lift, yaml }: mkDerivation { pname = "SciFlow"; - version = "0.3.0"; - sha256 = "f23c90f2708edde150c16eff8692ac8cd47bbf2455aaa355c0546e1f9cb0becf"; + version = "0.4.0"; + sha256 = "6ab39de90c8f4b31ee57ebab575db36d53ef1800895bc87cfa3b9d443807661b"; libraryHaskellDepends = [ - base bytestring data-default-class lens mtl optparse-applicative - shelly split template-haskell text th-lift unordered-containers + base bytestring containers data-default-class fgl graphviz lens mtl + optparse-applicative shelly split template-haskell text th-lift yaml ]; description = "Scientific workflow management system"; @@ -17118,6 +17298,7 @@ self: { base Cabal containers directory fgl filepath Graphalyze graphviz haskell-src-exts mtl multiset random ]; + jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; }) {}; @@ -17585,7 +17766,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "StateVar" = callPackage + "StateVar_1_1_0_1" = callPackage ({ mkDerivation, base, stm, transformers }: mkDerivation { pname = "StateVar"; @@ -17595,6 +17776,19 @@ self: { homepage = "https://github.com/haskell-opengl/StateVar"; description = "State variables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "StateVar" = 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; }) {}; "StateVar-transformer" = callPackage @@ -18953,6 +19147,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; @@ -19582,6 +19777,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; @@ -20049,23 +20245,25 @@ self: { }) {}; "abcBridge" = callPackage - ({ mkDerivation, abc, aig, base, c2hs, containers, directory - , QuickCheck, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck - , vector + ({ mkDerivation, abc, aig, base, base-compat, c2hs, containers + , directory, QuickCheck, tasty, tasty-ant-xml, tasty-hunit + , tasty-quickcheck, vector }: mkDerivation { pname = "abcBridge"; - version = "0.14"; - sha256 = "6e3a8abe9b398649d4584df9dec79a86e7dbd40e0fd1abd5be735854c08025ce"; + version = "0.15"; + sha256 = "45fef882d6e9c3f7ad48621fc835417df5c161c6743ebc4e4d3cabe9445b113c"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ aig base containers directory vector ]; + libraryHaskellDepends = [ + aig base base-compat containers directory vector + ]; librarySystemDepends = [ abc ]; libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base ]; + executableHaskellDepends = [ base base-compat ]; testHaskellDepends = [ - aig base directory QuickCheck tasty tasty-ant-xml tasty-hunit - tasty-quickcheck vector + aig base base-compat directory QuickCheck tasty tasty-ant-xml + tasty-hunit tasty-quickcheck vector ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; @@ -20569,6 +20767,8 @@ self: { pname = "acid-state"; version = "0.14.0"; sha256 = "db7cc0fdfe0af9757f448a4184c88d5a8f2ac5e014bea1623a6272821a510621"; + revision = "2"; + editedCabalFile = "8aa8c1e14d8dcfec861e9ef4198a9084b54c64719b77e9b505c53024a6ad7f51"; libraryHaskellDepends = [ array base bytestring cereal containers directory extensible-exceptions filepath mtl network safecopy stm @@ -21188,6 +21388,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; @@ -21423,20 +21624,20 @@ self: { }) {}; "adblock2privoxy" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , http-conduit, MissingH, mtl, network, network-uri, old-locale - , parsec, parsec-permutation, strict, text, time + ({ mkDerivation, base, case-insensitive, containers, directory + , filepath, http-conduit, MissingH, mtl, network, network-uri + , old-locale, parsec, parsec-permutation, strict, text, time }: mkDerivation { pname = "adblock2privoxy"; - version = "1.3.3"; - sha256 = "b47dd438b54d2fdcf5bb329f4978f8b052158a0da453cc087edb22c2556dc0c7"; + version = "1.4.0"; + sha256 = "2503df4fb073fd03d2f66467b5a14eb31cf5a6a315823cbef09dd96db7c7e1cb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base containers directory filepath http-conduit MissingH mtl - network network-uri old-locale parsec parsec-permutation strict - text time + base case-insensitive containers directory filepath http-conduit + MissingH mtl network network-uri old-locale parsec + parsec-permutation strict text time ]; homepage = "https://projects.zubr.me/wiki/adblock2privoxy"; description = "Convert adblock config files to privoxy format"; @@ -21680,32 +21881,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 @@ -21726,10 +21901,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 @@ -21787,8 +21962,8 @@ self: { }: mkDerivation { pname = "aeson-casing"; - version = "0.1.0.4"; - sha256 = "706139db4d17cae7a770802b3103584b3fa1c0d7db5ae2d463cfbaa99549bb5b"; + version = "0.1.0.5"; + sha256 = "cfec563dc6822f035858a7190153d8818c200be565806b43b70f198bf5410577"; libraryHaskellDepends = [ aeson base ]; testHaskellDepends = [ aeson base tasty tasty-hunit tasty-quickcheck tasty-th @@ -21797,6 +21972,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, containers + , exceptions, hashable, quickcheck-instances, scientific, tasty + , tasty-hunit, tasty-quickcheck, text, time, unordered-containers + , vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.0.0"; + sha256 = "697b2f86628bd6665db153b84ef40c699d372b4b429a7c4ef28719313b9c97ef"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring containers exceptions hashable + scientific text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring containers exceptions hashable + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + text time unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-compat#readme"; + description = "Compatibility layer for aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-diff" = callPackage ({ mkDerivation, aeson, base, bytestring, edit-distance-vector , hashable, mtl, optparse-applicative, QuickCheck @@ -21820,6 +22019,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; @@ -21852,7 +22052,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra" = callPackage + "aeson-extra_0_2_2_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , exceptions, hashable, quickcheck-instances, scientific, tasty , tasty-hunit, tasty-quickcheck, text, time, unordered-containers @@ -21874,6 +22074,7 @@ self: { homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-extra_0_2_3_0" = callPackage @@ -21901,6 +22102,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "aeson-extra" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring + , containers, exceptions, hashable, parsec, quickcheck-instances + , scientific, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, text, time, time-parsers, unordered-containers + , vector + }: + mkDerivation { + pname = "aeson-extra"; + version = "0.3.0.0"; + sha256 = "b9e54cf293c25bbd5646a777cf71a23c4158b708dd358fe3e705add326d5870f"; + libraryHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec scientific template-haskell text time + time-parsers unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec quickcheck-instances scientific tasty + tasty-hunit tasty-quickcheck template-haskell text time + time-parsers unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-extra#readme"; + description = "Extra goodies for aeson"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-filthy" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, text , unordered-containers @@ -21975,12 +22203,11 @@ self: { }: mkDerivation { pname = "aeson-parsec-picky"; - version = "0.1.0.0"; - sha256 = "bd5fa3ae9322fe1f486d52d046823d843538bf85204371a0ba17736412ea9cbc"; + version = "0.1.0.1"; + sha256 = "f617704188453e639d60ea9ac24d6c161affb517581cfff6dfbd2b580ccaea62"; 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; @@ -22096,6 +22323,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; @@ -22125,6 +22353,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; @@ -22287,8 +22516,8 @@ self: { }: mkDerivation { pname = "aeson-value-parser"; - version = "0.11"; - sha256 = "894b2465322aeb049857aca34f2c713289edfe9dc93d33df9a5d747862bca88f"; + version = "0.11.1"; + sha256 = "933a2111c21cc0f6e9869d6c4927b8201882a03c01de693e68d821f5d4484d49"; libraryHaskellDepends = [ aeson base-prelude mtl-prelude scientific success text unordered-containers vector @@ -22401,6 +22630,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; @@ -22464,12 +22694,12 @@ self: { }) {}; "aig" = callPackage - ({ mkDerivation, base, mtl, QuickCheck, vector }: + ({ mkDerivation, base, base-compat, mtl, QuickCheck, vector }: mkDerivation { pname = "aig"; - version = "0.2.3"; - sha256 = "f9f75a6df96defba1f34f0fbd7e8914b447c9fe5bb1aa96722df67eb4ae6c30c"; - libraryHaskellDepends = [ base mtl QuickCheck vector ]; + version = "0.2.4"; + sha256 = "ac0e06a707b7488de7e1f9d7b123703e2df14763f9e6448d67c4dd20ffdc88eb"; + libraryHaskellDepends = [ base base-compat mtl QuickCheck vector ]; description = "And-inverter graphs in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -23533,17 +23763,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 ]; @@ -23554,16 +23784,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"; @@ -23614,16 +23844,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"; @@ -23674,16 +23904,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"; @@ -23734,16 +23964,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"; @@ -23794,16 +24024,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"; @@ -23854,16 +24084,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"; @@ -23914,16 +24144,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"; @@ -23974,16 +24204,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"; @@ -24034,16 +24264,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"; @@ -24094,16 +24324,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"; @@ -24112,16 +24342,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"; @@ -24172,16 +24402,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"; @@ -24190,16 +24420,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"; @@ -24250,16 +24480,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"; @@ -24310,16 +24540,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"; @@ -24370,16 +24600,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"; @@ -24399,6 +24629,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 @@ -24430,6 +24662,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 @@ -24441,6 +24675,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"; @@ -24460,6 +24695,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 @@ -24471,6 +24708,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"; @@ -24488,8 +24726,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 @@ -24498,7 +24736,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 ]; @@ -24551,16 +24789,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"; @@ -24569,16 +24807,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"; @@ -24629,16 +24867,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"; @@ -24647,16 +24885,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"; @@ -24707,16 +24945,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"; @@ -24725,16 +24963,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"; @@ -24799,16 +25037,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"; @@ -24861,16 +25099,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"; @@ -24879,16 +25117,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"; @@ -24939,16 +25177,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"; @@ -24999,16 +25237,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"; @@ -25017,16 +25255,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"; @@ -25077,16 +25315,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"; @@ -25137,16 +25375,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"; @@ -25197,16 +25435,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"; @@ -25257,16 +25495,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"; @@ -25317,16 +25555,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"; @@ -25377,16 +25615,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"; @@ -25395,16 +25633,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"; @@ -25413,16 +25651,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"; @@ -25431,16 +25669,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"; @@ -25491,16 +25729,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"; @@ -25509,16 +25747,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"; @@ -25569,16 +25807,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"; @@ -25629,16 +25867,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"; @@ -25647,16 +25885,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"; @@ -25679,16 +25917,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"; @@ -25739,16 +25977,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"; @@ -25799,16 +26037,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"; @@ -25860,16 +26098,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"; @@ -25934,16 +26172,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"; @@ -25994,16 +26232,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"; @@ -26058,12 +26296,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"; @@ -26116,16 +26354,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"; @@ -26176,16 +26414,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"; @@ -26236,16 +26474,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"; @@ -26296,16 +26534,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"; @@ -26357,16 +26595,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"; @@ -26417,16 +26655,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"; @@ -26477,16 +26715,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"; @@ -26537,16 +26775,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"; @@ -26597,16 +26835,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"; @@ -26618,17 +26856,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 ]; @@ -26639,16 +26877,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"; @@ -26671,16 +26909,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"; @@ -27634,8 +27872,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 @@ -27655,8 +27893,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 @@ -28471,6 +28709,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"; @@ -28664,6 +28903,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; @@ -29408,7 +29648,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"; @@ -29418,6 +29658,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 @@ -29987,15 +30240,16 @@ self: { }) {}; "atp-haskell" = callPackage - ({ mkDerivation, base, containers, HUnit, mtl, parsec, pretty - , template-haskell, time + ({ mkDerivation, applicative-extras, base, containers, HUnit, mtl + , parsec, pretty, template-haskell, time }: mkDerivation { pname = "atp-haskell"; - version = "1.7"; - sha256 = "d746df532106f4237d23a1f191ea6dcc0211b5f810b923f7556466bb081f860e"; + version = "1.8"; + sha256 = "4bac41afc35571b2ad1a711d08e6f0cb223bb165615e511f2fc22ff9397fb467"; libraryHaskellDepends = [ - base containers HUnit mtl parsec pretty template-haskell time + applicative-extras base containers HUnit mtl parsec pretty + template-haskell time ]; testHaskellDepends = [ base containers HUnit time ]; homepage = "https://github.com/seereason/atp-haskell"; @@ -30048,8 +30302,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 @@ -30058,7 +30312,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; @@ -30639,7 +30892,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update" = callPackage + "auto-update_0_1_2_2" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -30649,6 +30902,19 @@ 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" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "auto-update"; + version = "0.1.3"; + sha256 = "3d8e11271d9c0bacefd663143af60c530dd7483b70582bae56e64b6716891509"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Efficiently run periodic, on-demand actions"; + license = stdenv.lib.licenses.mit; }) {}; "autonix-deps" = callPackage @@ -30797,6 +31063,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; @@ -32377,8 +32644,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "base-noprelude"; - version = "4.8.1.0"; - sha256 = "bd524ee4d4b9fb433a4f10eedf8605de3baccc9c2c533d1ab57ee6941ade4014"; + version = "4.8.2.0"; + sha256 = "bd4ab7685a14d82f7586074b1af88e22a8401e552a439286710592e3a2d763c7"; libraryHaskellDepends = [ base ]; doHaddock = false; homepage = "https://github.com/hvr/base-noprelude"; @@ -32396,13 +32663,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"; @@ -32415,6 +32683,20 @@ 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" = callPackage + ({ mkDerivation, base, ghc-prim, hspec, QuickCheck }: + mkDerivation { + pname = "base-orphans"; + version = "0.4.5"; + sha256 = "16b70764247f1545b76c51b1d93dfe98dc78076a710db777e213d61690053da7"; + libraryHaskellDepends = [ base ghc-prim ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/haskell-compat/base-orphans#readme"; + description = "Backwards-compatible orphan instances for base"; + license = stdenv.lib.licenses.mit; }) {}; "base-prelude_0_1_6" = callPackage @@ -32544,7 +32826,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-prelude" = callPackage + "base-prelude_0_1_19" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-prelude"; @@ -32555,6 +32837,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 @@ -33336,6 +33632,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; @@ -33528,7 +33825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors" = callPackage + "bifunctors_5" = callPackage ({ mkDerivation, base, semigroups, tagged }: mkDerivation { pname = "bifunctors"; @@ -33538,9 +33835,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 }: @@ -33559,7 +33857,17 @@ self: { homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bighugethesaurus" = callPackage + ({ mkDerivation, base, HTTP, split }: + mkDerivation { + pname = "bighugethesaurus"; + version = "0.1.0.0"; + sha256 = "3af008b07f35f4a83f53d5c119956195e2cc897396b63f3415cfa0f7561f13c8"; + libraryHaskellDepends = [ base HTTP split ]; + description = "API wrapper for Big Huge Thesaurus"; + license = "GPL"; }) {}; "billboard-parser" = callPackage @@ -33762,15 +34070,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 @@ -33863,8 +34171,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 ]; @@ -33987,7 +34295,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-orphans" = callPackage + "binary-orphans_0_1_2_0" = callPackage ({ mkDerivation, aeson, base, binary, hashable , quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck , text, text-binary, time, unordered-containers, vector @@ -34010,6 +34318,32 @@ self: { homepage = "https://github.com/phadej/binary-orphans#readme"; description = "Orphan instances for binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-orphans" = callPackage + ({ mkDerivation, aeson, base, binary, hashable + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-quickcheck, text, text-binary, time, unordered-containers + , vector, vector-binary-instances + }: + mkDerivation { + pname = "binary-orphans"; + version = "0.1.3.0"; + sha256 = "a42edfe603aea009310a0139acda6a7c385f5b65dfbc084dd17323bd786366cb"; + libraryHaskellDepends = [ + aeson base binary hashable scientific semigroups tagged text + text-binary time unordered-containers vector + vector-binary-instances + ]; + testHaskellDepends = [ + aeson base binary hashable quickcheck-instances scientific + semigroups tagged tasty tasty-quickcheck text time + unordered-containers vector + ]; + homepage = "https://github.com/phadej/binary-orphans#readme"; + description = "Orphan instances for binary"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-parser" = callPackage @@ -34142,10 +34476,9 @@ self: { ({ mkDerivation, array, base, bytestring, containers, mtl }: mkDerivation { pname = "binary-strict"; - version = "0.4.8.2"; - sha256 = "67114486d3d29367c29814aed25291fe62b8ab2545576cde23b0e0cb0bc9d933"; + version = "0.4.8.3"; + sha256 = "8eb8fb5bd9fdae7bc39df27e3273bdf7e7903c88c517c5646616dd8f04a92cb1"; libraryHaskellDepends = [ array base bytestring containers mtl ]; - jailbreak = true; homepage = "https://github.com/idontgetoutmuch/binary-low-level"; description = "Binary deserialisation using strict ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -34239,8 +34572,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 @@ -34408,6 +34741,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; @@ -35408,16 +35742,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; @@ -36230,6 +36561,7 @@ self: { base blaze-builder bytestring bytestring-builder enumerator streaming-commons transformers ]; + doHaddock = false; homepage = "https://github.com/meiersi/blaze-builder-enumerator"; description = "Enumeratees for the incremental conversion of builders to bytestrings"; license = stdenv.lib.licenses.bsd3; @@ -36316,6 +36648,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; @@ -36339,6 +36672,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; @@ -36516,6 +36850,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; @@ -36826,35 +37161,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 @@ -36879,10 +37185,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 @@ -37075,6 +37381,38 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "bond" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, cmdargs, derive + , Diff, directory, filepath, HUnit, monad-loops, mtl, parsec + , pretty, process, QuickCheck, shakespeare, tasty, tasty-golden + , tasty-hunit, tasty-quickcheck, text + }: + mkDerivation { + pname = "bond"; + version = "0.4.0.1"; + sha256 = "40d7f0ddcb4779d16ce3ce94bb0f0d2ea47d6d2c82f296027cd3d068be0622c8"; + revision = "1"; + editedCabalFile = "f90dcbaa3a55c1918957942c01f21a574c268730f37aff34c19a6cd04b4ccc6d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring filepath mtl parsec shakespeare text + ]; + executableHaskellDepends = [ + aeson async base bytestring cmdargs directory filepath monad-loops + process text + ]; + testHaskellDepends = [ + aeson base bytestring cmdargs derive Diff directory filepath HUnit + 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; + }) {}; + "bool-extras" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -37094,6 +37432,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; @@ -37172,8 +37511,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; @@ -37319,7 +37658,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 @@ -37340,6 +37679,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 @@ -37397,6 +37762,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "bowntz" = callPackage + ({ mkDerivation, base, containers, GLUT, hosc, hsc3, random }: + mkDerivation { + pname = "bowntz"; + version = "0"; + sha256 = "771d0f4b4fccefd96e58d6c6ddf71d111aaa0c49180f1e0cab6ad61ec0d9b378"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base containers GLUT hosc hsc3 random + ]; + homepage = "http://code.mathr.co.uk/bowntz"; + description = "audio-visual pseudo-physical simulation of colliding circles"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "boxes" = callPackage ({ mkDerivation, base, QuickCheck, split }: mkDerivation { @@ -37527,17 +37908,17 @@ self: { "brick" = callPackage ({ mkDerivation, base, containers, contravariant, data-default - , deepseq, Diff, lens, template-haskell, text, text-zipper - , transformers, vector, vty + , deepseq, lens, template-haskell, text, text-zipper, transformers + , vector, vty }: mkDerivation { pname = "brick"; - version = "0.2.3"; - sha256 = "4f9062ccc4cc4a9756cc1dcf057d96c8c4a587f0405d11fa75619555afe3b402"; + version = "0.3.1"; + sha256 = "0e97e82a8dc3b9eba8f11cdf69818b6a919dbe6e8c7710b55483c3908ecfc7a9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers contravariant data-default deepseq Diff lens + base containers contravariant data-default deepseq lens template-haskell text text-zipper transformers vector vty ]; executableHaskellDepends = [ @@ -37689,6 +38070,7 @@ self: { base binary bytestring cryptohash data-binary-ieee754 mtl network QuickCheck test-framework test-framework-quickcheck2 text time ]; + doHaddock = false; doCheck = false; homepage = "http://github.com/mongodb-haskell/bson"; description = "BSON documents are JSON-like objects with a standard binary encoding"; @@ -37818,7 +38200,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 @@ -37838,6 +38220,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" ]; }) {}; @@ -38159,6 +38563,26 @@ self: { license = "unknown"; }) {}; + "butterflies" = callPackage + ({ mkDerivation, base, bytestring, gl-capture, GLUT, OpenGLRaw + , OpenGLRaw21, repa, repa-devil + }: + mkDerivation { + pname = "butterflies"; + version = "0.3.0.1"; + sha256 = "631cdc6b4e299c14f2687cb6ed7baab5b0ae353aa34fb6f09e46594a9a93f235"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ + base bytestring gl-capture GLUT OpenGLRaw OpenGLRaw21 repa + repa-devil + ]; + homepage = "http://code.mathr.co.uk/butterflies"; + description = "butterfly tilings"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "bv" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -38390,8 +38814,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"; @@ -38580,6 +39004,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; @@ -38786,8 +39211,8 @@ self: { }: mkDerivation { pname = "bytestring-tree-builder"; - version = "0.2.2"; - sha256 = "ba0177ecfd71e7370b2c57fb23de72b8bc65c7e0533599fbd5791af29ea79260"; + version = "0.2.2.1"; + sha256 = "7c63bedde6d0179d0c595fa14d0bfe46625e6fc089eb82675fe463ffa015286d"; libraryHaskellDepends = [ base base-prelude bytestring ]; testHaskellDepends = [ base-prelude bytestring QuickCheck quickcheck-instances tasty @@ -39227,6 +39652,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; @@ -39234,34 +39660,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"; @@ -39598,7 +40022,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "cabal-install" = callPackage + "cabal-install_1_22_6_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -39630,6 +40054,41 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + + "cabal-install" = callPackage + ({ mkDerivation, array, base, bytestring, Cabal, containers + , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl + , network, network-uri, pretty, process, QuickCheck, random + , regex-posix, stm, test-framework, test-framework-hunit + , test-framework-quickcheck2, time, unix, zlib + }: + mkDerivation { + pname = "cabal-install"; + version = "1.22.7.0"; + sha256 = "b30fd14f20fdd11b028cba68fefeed7eeadcacf919e7c29bc4d7289a656d19f3"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bytestring Cabal containers directory filepath HTTP mtl + network network-uri pretty process random stm time unix zlib + ]; + testHaskellDepends = [ + array base bytestring Cabal containers directory + extensible-exceptions filepath HTTP HUnit mtl network network-uri + pretty process QuickCheck regex-posix stm test-framework + test-framework-hunit test-framework-quickcheck2 time unix zlib + ]; + doCheck = false; + postInstall = '' + mkdir $out/etc + mv bash-completion $out/etc/bash_completion.d + ''; + homepage = "http://www.haskell.org/cabal/"; + description = "The command-line interface for Cabal and Hackage"; + license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -39714,13 +40173,14 @@ self: { }) {}; "cabal-macosx" = callPackage - ({ mkDerivation, base, Cabal, directory, fgl, filepath, parsec - , process, text + ({ mkDerivation, base, Cabal, directory, fgl, filepath, HUnit + , parsec, process, temporary, test-framework, test-framework-hunit + , text }: mkDerivation { pname = "cabal-macosx"; - version = "0.2.3.1"; - sha256 = "7fcb0d9483896a8a99a2fd4fd56451c3579b0caf413e47e2a44eff8fd1b2b032"; + version = "0.2.3.2"; + sha256 = "054f891068c9ce0161610e929716e8fa2022ef0bc093fb42bcb30733c38026b7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -39729,6 +40189,9 @@ self: { executableHaskellDepends = [ base Cabal directory fgl filepath parsec process text ]; + testHaskellDepends = [ + base HUnit temporary test-framework test-framework-hunit + ]; homepage = "http://github.com/danfran/cabal-macosx"; description = "Cabal support for creating Mac OSX application bundles"; license = stdenv.lib.licenses.bsd3; @@ -40446,8 +40909,8 @@ self: { ({ mkDerivation, base, stm, time }: mkDerivation { pname = "cached-io"; - version = "0.1.0.1"; - sha256 = "76326e5acec346f27c258440b792e4899c6fb2fc364b1c217c73c5b72e3ce0b8"; + version = "0.1.1.0"; + sha256 = "b43e7b329aff4a1f96daff221b6e68b7124d35cef3331034b452d794c8b03546"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base stm time ]; @@ -40578,7 +41041,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; - "cairo" = callPackage + "cairo_0_13_1_0" = callPackage ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools , mtl, text, utf8-string }: @@ -40594,6 +41057,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) cairo;}; + + "cairo" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools + , mtl, text, utf8-string + }: + mkDerivation { + pname = "cairo"; + version = "0.13.1.1"; + sha256 = "58ae22451e7812a88531eaf91ae1250c277f48d0a88d1cae2438bd76f79e89f6"; + libraryHaskellDepends = [ + array base bytestring mtl text utf8-string + ]; + libraryPkgconfigDepends = [ cairo ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Cairo library"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) cairo;}; "cairo-appbase" = callPackage @@ -40906,22 +41388,54 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "canteven-listen-http" = callPackage + ({ mkDerivation, aeson, base }: + mkDerivation { + pname = "canteven-listen-http"; + version = "0.1.0.0"; + sha256 = "b7a750e3cf9c1aa7bac89c631714546aea477f3b5a5672dd3df7bb1e2513e168"; + libraryHaskellDepends = [ aeson base ]; + jailbreak = true; + description = "data types to describe HTTP services"; + license = stdenv.lib.licenses.asl20; + }) {}; + "canteven-log" = callPackage - ({ mkDerivation, aeson, base, canteven-config, directory, filepath - , hslogger, text, yaml + ({ mkDerivation, aeson, base, bytestring, canteven-config + , directory, fast-logger, filepath, hslogger, monad-logger + , template-haskell, text, time, transformers, yaml }: mkDerivation { pname = "canteven-log"; - version = "0.2.0.0"; - sha256 = "ce6d0e147e0e2b008f6c225997955670f5e781eed7fda40d609cc4ef078bee95"; + version = "0.3.0.2"; + sha256 = "296cc4329510c766b973d98c2e6f1186404df46eaf0f10f53fec432a3a5a3379"; libraryHaskellDepends = [ - aeson base canteven-config directory filepath hslogger text yaml + aeson base bytestring canteven-config directory fast-logger + filepath hslogger monad-logger template-haskell text time + transformers yaml ]; homepage = "https://github.com/SumAll/haskell-canteven-log"; description = "A canteven way of setting up logging for your program"; license = stdenv.lib.licenses.asl20; }) {}; + "canteven-template" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, data-default + , markdown, template-haskell, text + }: + mkDerivation { + pname = "canteven-template"; + version = "0.1.0.0"; + sha256 = "c9c1e542c81288537211ed6d80c0cdc53bd1ec8967146337a2a2364286acc586"; + libraryHaskellDepends = [ + base blaze-html bytestring data-default markdown template-haskell + text + ]; + homepage = "https://github.com/SumAll/haskell-canteven-template/"; + description = "A few utilites and helpers for using Template Haskell in your projects"; + license = stdenv.lib.licenses.asl20; + }) {}; + "cantor" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , filepath, hspec, hxt, hxt-xpath, parsec, QuickCheck, split @@ -41103,8 +41617,8 @@ self: { }: mkDerivation { pname = "carray"; - version = "0.1.6.1"; - sha256 = "256aa21d8c39f4e737769e0e6635eae664a65f37f950cedabad7b9d4677b9e4f"; + version = "0.1.6.2"; + sha256 = "7e71c800472376631cf6933243a0a0190376afab77593ac86825cc2d52b21588"; libraryHaskellDepends = [ array base binary bytestring ix-shapable QuickCheck syb ]; @@ -41325,6 +41839,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; @@ -41343,6 +41858,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; @@ -41785,6 +42301,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; @@ -41961,8 +42478,8 @@ self: { }: mkDerivation { pname = "cblrepo"; - version = "0.18.2"; - sha256 = "d5511174340ac9723d40f70a3382c4e789b5183f4133657c343b380ea1221a98"; + version = "0.19.0"; + sha256 = "4608d1b3437c3dd00310b7accf53c1d904eb0390feec25075ad2bdef3ab01a19"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42100,6 +42617,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 { @@ -42233,8 +42778,8 @@ self: { }: mkDerivation { pname = "cereal-plus"; - version = "0.4.0"; - sha256 = "ecc667407b9aa3eace4a2f65b0ef4a76f380df988cbb92a2cec8d0059b273e81"; + version = "0.4.1"; + sha256 = "696f8a279e6c38c70c1b821565398b850c602464fba909ab3ce7c30b4b14e492"; libraryHaskellDepends = [ array base bytestring cereal containers errors hashable hashtables mmorph mtl stm text time unordered-containers vector @@ -42244,7 +42789,6 @@ self: { HTF HUnit mmorph mtl QuickCheck quickcheck-instances stm text time unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; @@ -42945,6 +43489,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; @@ -43462,8 +44007,8 @@ self: { ({ mkDerivation, array, base, bytestring, parseargs }: mkDerivation { pname = "ciphersaber2"; - version = "0.1.1.1"; - sha256 = "bb5d725c40858bccc30ed189d6bf39fb790a4fefed965d7b72fcbbe506e50b86"; + version = "0.1.1.2"; + sha256 = "d64c809fff4312d71cf93b462c76a4f23b763d95b70d305b1091f3d5d240efb3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base bytestring ]; @@ -43652,8 +44197,8 @@ self: { }: mkDerivation { pname = "clafer"; - version = "0.4.2.1"; - sha256 = "35bd00e22e143755b6c66026f1266ec046990ed998f9f89c0198b973909069dd"; + version = "0.4.3"; + sha256 = "0be4dd9ab5551e247e69bf9b8863de4f6615a38e26e4c51d3f0bf214478585e4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -43671,6 +44216,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; @@ -43686,8 +44232,8 @@ self: { }: mkDerivation { pname = "claferIG"; - version = "0.4.2.1"; - sha256 = "519cbe18e8f2519d878f1aa3ca2b77ad19d099f0fc54d5144d1c4cc8690c5bdc"; + version = "0.4.3"; + sha256 = "e3afbf8d5a057a54bf0e41a0ad19259f284ab2b7c33f208b08426f1436c52fc3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -43717,8 +44263,8 @@ self: { }: mkDerivation { pname = "claferwiki"; - version = "0.4.2.1"; - sha256 = "04c7ed51e92e27e3dfe2b7fdfa9bc02fcf698b78cfc33d8241673fb0a361b7b1"; + version = "0.4.3"; + sha256 = "7a582f4e59757ea00346f01ced2ef917ea8640941c45c3a407fe7760a5aa483c"; libraryHaskellDepends = [ base clafer containers directory gitit MissingH mtl network network-uri process SHA split time transformers transformers-compat @@ -43762,6 +44308,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "clarifai" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, easy-file + , HTTP, http-client, lens, lens-aeson, scientific, text + , unordered-containers, vector, wreq + }: + mkDerivation { + pname = "clarifai"; + version = "0.1.1.0"; + sha256 = "40ef0baf628d4569138192128dd5f6f07a38b2963ec54e4968646f5953caf718"; + libraryHaskellDepends = [ + aeson base bytestring containers easy-file HTTP http-client lens + lens-aeson scientific text unordered-containers vector wreq + ]; + description = "API Client for the Clarifai API"; + license = stdenv.lib.licenses.mit; + }) {}; + "clash" = callPackage ({ mkDerivation, base, containers, data-accessor , data-accessor-template, directory, filepath, ghc, haskell98 @@ -43910,8 +44473,8 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.5"; - sha256 = "22f1b6329093eebb4490fe8ffcac650a8408c22fab7a3eedb3cbd6f3876aba52"; + version = "0.6.7"; + sha256 = "08eb23a3986af41ede3dca432e3f4ac0d80d0ae5cfc6af6115e8943447264a52"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -43943,6 +44506,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -43966,6 +44530,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -43989,6 +44554,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -44012,6 +44578,7 @@ self: { pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -44027,8 +44594,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.5"; - sha256 = "62921cc650ac7bda7c5b29861f02026d4b4d7a6d33d2efe11de52f0b422d8104"; + version = "0.6.7"; + sha256 = "26dd3e636ac6ea644d30d7bd583c57e80ed5c99f2a7d145852b3234df25a2ccf"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -44091,8 +44658,8 @@ self: { }: mkDerivation { pname = "clash-prelude"; - version = "0.10.3"; - sha256 = "4049c115c7b38ddf893e860556dbe29543ae729a0d288cc651739b6ef6d5ebfb"; + version = "0.10.4"; + sha256 = "0e61217e0cb01a88daae477ce3dffb22c347cfa7165a09718bf8d51d6329e180"; libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection @@ -45112,6 +45679,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; @@ -45131,8 +45700,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 @@ -45275,8 +45844,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 @@ -45613,7 +46182,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock" = callPackage + "clock_0_5_1" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -45624,6 +46193,21 @@ 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" = callPackage + ({ mkDerivation, base, tasty, tasty-quickcheck }: + mkDerivation { + pname = "clock"; + version = "0.6.0.1"; + 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; }) {}; "clocked" = callPackage @@ -45889,6 +46473,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; @@ -46428,7 +47013,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; @@ -47795,7 +48379,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 }: @@ -47809,6 +48393,27 @@ 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" = callPackage + ({ mkDerivation, async, base, HUnit, random, stm, test-framework + , test-framework-hunit, unbounded-delays + }: + mkDerivation { + pname = "concurrent-extra"; + version = "0.7.0.10"; + sha256 = "6f27cc0a90f5f25b3c0a1e9e3c0e3b407538908c061c5b7da34461b76e1adc12"; + libraryHaskellDepends = [ base stm unbounded-delays ]; + testHaskellDepends = [ + 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"; @@ -47831,6 +48436,7 @@ self: { testHaskellDepends = [ base machines tasty tasty-hunit time transformers ]; + jailbreak = true; description = "Concurrent networked stream transducers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -47841,8 +48447,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 @@ -48803,18 +49409,19 @@ self: { }) {}; "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, exceptions, hlint, parsers - , resourcet, tasty, tasty-hunit, text, transformers + ({ mkDerivation, base, conduit, dlist, exceptions, hlint, mtl + , parsers, resourcet, tasty, tasty-hunit, text, transformers }: mkDerivation { pname = "conduit-parse"; - version = "0.1.0.0"; - sha256 = "63eb07881e50c146701e0a1934d3a8978189beede4ba15d48f1fd96c05627824"; + version = "0.1.1.0"; + sha256 = "94c279c5065f996dd4ad6e4fdb1514ce072c69cdf6dddf6835a20424790b5950"; libraryHaskellDepends = [ - base conduit exceptions parsers text transformers + base conduit dlist exceptions mtl parsers text transformers ]; testHaskellDepends = [ - base conduit exceptions hlint parsers resourcet tasty tasty-hunit + base conduit exceptions hlint mtl parsers resourcet tasty + tasty-hunit ]; homepage = "https://github.com/k0ral/conduit-parse"; description = "Parsing framework based on conduit"; @@ -48890,21 +49497,21 @@ self: { "configifier" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring - , case-insensitive, containers, either, hspec, hspec-discover, mtl - , pretty-show, QuickCheck, regex-easy, safe, scientific - , string-conversions, template-haskell, text, unordered-containers - , vector, yaml + , case-insensitive, containers, directory, either, functor-infix + , hspec, hspec-discover, mtl, pretty-show, QuickCheck, safe + , scientific, string-conversions, template-haskell, text + , unordered-containers, vector, yaml }: mkDerivation { pname = "configifier"; - version = "0.0.6"; - sha256 = "00b212fa919e3765224654886be2e78ba646396470dd1448fc8851852482e2b6"; + version = "0.0.8"; + sha256 = "7f56ae97d2d614c26b634ccbd1951b0c958eca20b20401d210027e2f1627cd9b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring case-insensitive containers either mtl regex-easy - safe string-conversions template-haskell unordered-containers - vector yaml + base bytestring case-insensitive containers directory either + functor-infix mtl safe string-conversions template-haskell + unordered-containers vector yaml ]; executableHaskellDepends = [ base bytestring mtl pretty-show string-conversions text yaml @@ -49457,17 +50064,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 @@ -49969,8 +50574,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; @@ -50410,7 +51015,6 @@ self: { libraryHaskellDepends = [ base containers copilot-core directory filepath pretty sbv ]; - jailbreak = true; description = "A compiler for CoPilot targeting SBV"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -50711,6 +51315,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; @@ -51348,7 +51953,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; }) {}; @@ -51995,7 +52599,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; @@ -52427,7 +53030,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptol" = callPackage + "cryptol_2_2_5" = callPackage ({ mkDerivation, alex, ansi-terminal, array, async, base , containers, deepseq, directory, filepath, gitrev, GraphSCC, happy , haskeline, heredoc, monadLib, old-time, presburger, pretty @@ -52451,6 +53054,37 @@ self: { ansi-terminal base containers deepseq directory filepath haskeline monadLib process random sbv tf-random transformers ]; + jailbreak = true; + homepage = "http://www.cryptol.net/"; + description = "Cryptol: The Language of Cryptography"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cryptol" = callPackage + ({ mkDerivation, alex, ansi-terminal, array, async, base + , base-compat, containers, deepseq, directory, filepath, gitrev + , GraphSCC, happy, haskeline, heredoc, monadLib, old-time + , presburger, pretty, process, QuickCheck, random, sbv, smtLib, syb + , template-haskell, text, tf-random, transformers, utf8-string + }: + mkDerivation { + pname = "cryptol"; + version = "2.2.6"; + sha256 = "8fb05368e34f78b5c3872ff7b495bd3d4c21e9de7a0d72fc07cc79f93dc18cf3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async base base-compat containers deepseq directory filepath + gitrev GraphSCC heredoc monadLib old-time presburger pretty process + QuickCheck random sbv smtLib syb template-haskell text tf-random + transformers utf8-string + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + ansi-terminal base containers deepseq directory filepath haskeline + monadLib process random sbv tf-random transformers + ]; homepage = "http://www.cryptol.net/"; description = "Cryptol: The Language of Cryptography"; license = stdenv.lib.licenses.bsd3; @@ -52485,8 +53119,8 @@ self: { }: mkDerivation { pname = "cryptonite"; - version = "0.9"; - sha256 = "9f50dc254c20e535d0d490dd004765ab080a6a0745966d0a81a80a4c85e842c0"; + version = "0.10"; + sha256 = "55343f018f78de480ea1e7f09dd72307ce0b5eb5e82331512370d5b01ac9735b"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim integer-gmp memory ]; @@ -54271,6 +54905,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "data-extend-generic" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "data-extend-generic"; + version = "0.1.0.0"; + sha256 = "b5cf36c5ccf72a400bc8dca3a983c3a4b65a7788fbd07eca93e5b23dca27f1bd"; + revision = "2"; + editedCabalFile = "6d1bf0f2f19daf06b81fe4108a37bf889c9b96905920d3aa04846f0b5d05b6b3"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/ylilarry/data-extend-generic"; + description = "Extend Haskell data or newtype like in OOP languages"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-extra" = callPackage ({ mkDerivation }: mkDerivation { @@ -55099,6 +55748,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; @@ -55855,6 +56505,7 @@ self: { gitrev Glob graph-wrapper hspec interpolate mockery silently string-conversions uniplate ]; + jailbreak = true; homepage = "https://github.com/soenkehahn/dead-code-detection#readme"; description = "detect dead code in haskell projects"; license = stdenv.lib.licenses.bsd3; @@ -56071,15 +56722,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; }) {}; @@ -56092,6 +56742,8 @@ self: { pname = "deeplearning-hs"; version = "0.1.0.2"; sha256 = "0da58dd777b5a9d097cef43dede6f72cca18d56577cab131106bfaa7634f82b3"; + revision = "1"; + editedCabalFile = "eca23efe079b6311afd52bf1a70f8b9617c2b943e13b2ddb0ac2be5249622afa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -56136,6 +56788,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; @@ -56413,7 +57066,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; @@ -56596,33 +57248,33 @@ 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 ]; + jailbreak = true; homepage = "https://github.com/mokus0/dependent-map"; description = "Dependent finite maps (partial dependent products)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-map_0_2_0_1" = callPackage + "dependent-map" = callPackage ({ mkDerivation, base, containers, dependent-sum }: mkDerivation { pname = "dependent-map"; - version = "0.2.0.1"; - sha256 = "645c5c519d5cb6393ee826dfca183736be84fda87e980f0daecd7be207bb8f50"; + version = "0.2.1.0"; + sha256 = "567d81bf090feda43c9bc01708e6f3684399628329b64a266ba6a6a79351d284"; libraryHaskellDepends = [ base containers dependent-sum ]; - jailbreak = true; homepage = "https://github.com/mokus0/dependent-map"; description = "Dependent finite maps (partial dependent products)"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dependent-sum" = callPackage + "dependent-sum_0_2_1_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "dependent-sum"; @@ -56632,9 +57284,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"; @@ -56644,7 +57297,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 @@ -56760,6 +57412,7 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/derive/"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; @@ -56781,6 +57434,7 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/derive/"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; @@ -56802,6 +57456,7 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/derive/"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; @@ -56823,13 +57478,14 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive" = callPackage + "derive_2_5_22" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -56844,12 +57500,14 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive_2_5_23" = callPackage + "derive" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -56864,11 +57522,9 @@ self: { base bytestring containers directory filepath haskell-src-exts pretty process syb template-haskell transformers uniplate ]; - jailbreak = true; homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-IG" = callPackage @@ -57392,6 +58048,7 @@ self: { diagrams-postscript diagrams-rasterific diagrams-svg directory filepath JuicyPixels lens lucid-svg ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; @@ -57561,6 +58218,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; @@ -57820,6 +58478,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; @@ -57848,6 +58507,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; @@ -57974,6 +58634,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; @@ -58023,6 +58684,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; @@ -58159,6 +58821,7 @@ self: { base containers haskell-src-exts lens parsec QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; doCheck = false; homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; @@ -58254,6 +58917,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; @@ -58563,6 +59227,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; @@ -58686,6 +59351,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; @@ -58850,6 +59516,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; @@ -58873,13 +59540,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 @@ -58896,12 +59564,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 @@ -58910,8 +59580,8 @@ self: { }: mkDerivation { pname = "diagrams-svg"; - version = "1.3.1.9"; - sha256 = "c344798fc057123229a7c3ba679297398b82fe872c6798fdcb30279bd00a67c7"; + version = "1.3.1.10"; + sha256 = "a8293856f359d7d9656bb0b5ca5c97cc13b6ab18eaa71ed30112038cfe0a39a7"; libraryHaskellDepends = [ base base64-bytestring bytestring colour containers diagrams-core diagrams-lib directory filepath hashable JuicyPixels lens lucid-svg @@ -58921,7 +59591,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 @@ -58940,6 +59609,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 { @@ -58977,8 +59663,8 @@ self: { ({ mkDerivation, base, binary, bytestring, pretty, safe, time }: mkDerivation { pname = "dicom"; - version = "0.2.0.0"; - sha256 = "3772604143c86a3827e73924f5cbc404ab5506aabfa75f51396d3d54651e09fc"; + version = "0.3.0.0"; + sha256 = "d616ae5db9863803c7502986925598be9774842e714ed9c4dfecdc5dce9f3d20"; libraryHaskellDepends = [ base binary bytestring pretty safe time ]; @@ -59299,6 +59985,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; @@ -59562,13 +60249,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; }) {}; @@ -59880,12 +60567,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"; @@ -60094,6 +60781,24 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "distributed-closure" = callPackage + ({ mkDerivation, base, binary, bytestring, constraints, hspec + , QuickCheck, template-haskell + }: + mkDerivation { + pname = "distributed-closure"; + version = "0.1.0.0"; + sha256 = "7c49a85015f428e55af318214de93ce8ab9257e627ad6ef8592b781324aac52e"; + libraryHaskellDepends = [ + base binary bytestring constraints template-haskell + ]; + testHaskellDepends = [ base binary hspec QuickCheck ]; + jailbreak = true; + homepage = "https://github.com/tweag/distributed-closure"; + description = "Serializable closures for distributed programming"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "distributed-process_0_5_2" = callPackage ({ mkDerivation, base, binary, bytestring, containers , data-accessor, deepseq, distributed-static, ghc-prim, hashable @@ -60331,7 +61036,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; @@ -60402,7 +61106,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; @@ -60466,7 +61169,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; @@ -60703,7 +61405,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; @@ -60776,7 +61477,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; @@ -60800,6 +61500,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; @@ -61677,6 +62378,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; @@ -62091,14 +62793,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; @@ -62110,8 +62813,8 @@ self: { }: mkDerivation { pname = "drifter"; - version = "0.2"; - sha256 = "5a9aa7272b4d40f832d7501b8b1d6155004a21d8aea4bea283e8a067bcbf646f"; + version = "0.2.1"; + sha256 = "0e7019f08595769149e58e86ce503e636afa52028a68211dd4df1882c03626bd"; libraryHaskellDepends = [ base containers fgl text ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck text @@ -62457,6 +63160,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; @@ -63363,6 +64067,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 { @@ -64897,6 +65612,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; @@ -64937,6 +65653,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; }) {}; @@ -66387,6 +67104,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; @@ -66500,17 +67218,17 @@ self: { }) {}; "eventstore" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal - , containers, network, protobuf, random, stm, tasty, tasty-hunit - , text, time, unordered-containers, uuid + ({ mkDerivation, aeson, async, base, bytestring, cereal, containers + , network, protobuf, random, stm, tasty, tasty-hunit, text, time + , unordered-containers, uuid }: mkDerivation { pname = "eventstore"; - version = "0.9.1.1"; - sha256 = "0b14aa08ac3e26d4db103c18fe7c95758168f7a3aaad9387b54b83e981f4bbff"; + version = "0.10.0.0"; + sha256 = "1800b181c0228090597d63db7fd99dc0ba434d34d5da290b1b0e22aa39510f99"; libraryHaskellDepends = [ - aeson async attoparsec base bytestring cereal containers network - protobuf random stm text time unordered-containers uuid + aeson async base bytestring cereal containers network protobuf + random stm text time unordered-containers uuid ]; testHaskellDepends = [ aeson base stm tasty tasty-hunit text time @@ -66712,6 +67430,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; @@ -66733,6 +67452,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; @@ -66919,7 +67639,6 @@ self: { http-types optparse-applicative pcre-light ]; testHaskellDepends = [ base doctest ]; - jailbreak = true; description = "Exheres generator for cabal packages"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -67034,6 +67753,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "exp-extended" = callPackage + ({ mkDerivation, base, compensated, log-domain }: + mkDerivation { + pname = "exp-extended"; + version = "0.1.0.1"; + sha256 = "a78427101de6fb57975be3310a3c59ba5504c3b5edef6da2b9c89fd0730b0f6d"; + libraryHaskellDepends = [ base compensated log-domain ]; + homepage = "http://code.mathr.co.uk/exp-extended"; + description = "floating point with extended exponent range"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "exp-pairs" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, matrix, memoize , QuickCheck, random, smallcheck, tasty, tasty-hunit @@ -67392,6 +68123,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; @@ -67528,8 +68260,8 @@ self: { }: mkDerivation { pname = "extract-dependencies"; - version = "0.1.0.0"; - sha256 = "e13363fb87dd5d893d421619d2feab7a84167e1c3fa66aa105f320fd3e95d9e3"; + version = "0.2.0.0"; + sha256 = "30224debda1f730a50bd1f92a7906c9addef641475f60dd7feb3c14011da8b35"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -67694,6 +68426,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 { @@ -67769,11 +68514,10 @@ self: { ({ mkDerivation, base, bytestring, hspec, QuickCheck }: mkDerivation { pname = "farmhash"; - version = "0.1.0.3"; - sha256 = "c6bde8e127af0dbb2b6e426ef34eb3fafe32ccb32358b8482774e6fc4ab91e7f"; + version = "0.1.0.4"; + sha256 = "71e43616fe48c0454db551110229bd50ca4b4625f255478cb45f4a6480e113d7"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ base bytestring hspec QuickCheck ]; - jailbreak = true; homepage = "https://github.com/abhinav/farmhash"; description = "Fast hash functions"; license = stdenv.lib.licenses.bsd3; @@ -68196,7 +68940,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fay" = callPackage + "fay_0_23_1_8" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, data-default , data-lens-light, directory, filepath, ghc-paths, haskell-src-exts , language-ecmascript, mtl, mtl-compat, optparse-applicative @@ -68220,12 +68964,14 @@ self: { uniplate unordered-containers utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fay_0_23_1_10" = callPackage + "fay" = callPackage ({ mkDerivation, aeson, base, base-compat, bytestring, containers , data-default, data-lens-light, directory, filepath, ghc-paths , haskell-src-exts, language-ecmascript, mtl, mtl-compat @@ -68249,11 +68995,9 @@ self: { utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; - jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-base_0_19_4_1" = callPackage @@ -68843,6 +69587,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; @@ -68974,6 +69719,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; @@ -68995,6 +69741,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; @@ -69084,18 +69831,17 @@ self: { }) {}; "feed-collect" = callPackage - ({ mkDerivation, base, feed, http-client, http-client-tls, time - , time-units, timerep, transformers, utf8-string + ({ mkDerivation, base, data-default-class, feed, http-client + , http-client-tls, time, time-interval, time-units, timerep + , transformers, utf8-string }: mkDerivation { pname = "feed-collect"; - version = "0.1.0.1"; - sha256 = "e442e5999c34c998a7b15189af564730360effb3e5dbaa4d99f65076de445204"; - revision = "1"; - editedCabalFile = "0383f41e89586ae747cdb892d9404ae0c9a1fed72bb06dbc0fa9bd585885084d"; + version = "0.2.0.0"; + sha256 = "107701b470b86ef66be17fc76393995ad59e2912aa399bb4212bf63023152559"; libraryHaskellDepends = [ - base feed http-client http-client-tls time time-units timerep - transformers utf8-string + base data-default-class feed http-client http-client-tls time + time-interval time-units timerep transformers utf8-string ]; homepage = "http://rel4tion.org/projects/feed-collect/"; description = "Watch RSS/Atom feeds (and do with them whatever you like)"; @@ -69253,8 +69999,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 @@ -69370,19 +70115,20 @@ self: { "ffmpeg-light" = callPackage ({ mkDerivation, base, either, exceptions, ffmpeg, JuicyPixels - , libavcodec, libavformat, libswscale, mtl, transformers, vector + , libavcodec, libavdevice, libavformat, libswscale, mtl + , transformers, vector }: mkDerivation { pname = "ffmpeg-light"; - version = "0.8.2"; - sha256 = "dcc6f0988458c47738505a1fb16e1e5206c483a75c8a7b997e0606aea56ef38e"; + version = "0.9.0"; + sha256 = "309ce75c56dfef61ad0e08ef34324873b24cdeb32ae2ace406caf0e9ca788897"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base either exceptions JuicyPixels mtl transformers vector ]; libraryPkgconfigDepends = [ - ffmpeg libavcodec libavformat libswscale + ffmpeg libavcodec libavdevice libavformat libswscale ]; executableHaskellDepends = [ base JuicyPixels mtl transformers vector @@ -69390,8 +70136,8 @@ self: { description = "Minimal bindings to the FFmpeg library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) ffmpeg; libavcodec = null; libavformat = null; - libswscale = null;}; + }) {inherit (pkgs) ffmpeg; libavcodec = null; libavdevice = null; + libavformat = null; libswscale = null;}; "ffmpeg-tutorials" = callPackage ({ mkDerivation, base, bytestring, haskell98, hs-ffmpeg, SDL, stm @@ -69867,7 +70613,6 @@ self: { executableHaskellDepends = [ async base directory filepath haskell-src-exts MissingH ]; - jailbreak = true; homepage = "https://github.com/yamadapc/stack-run-auto"; description = "Takes a Haskell source-code file and outputs its modules"; license = stdenv.lib.licenses.mit; @@ -70023,6 +70768,7 @@ self: { testHaskellDepends = [ base Diff directory filepath HUnit mtl time ]; + jailbreak = true; description = "Interface for versioning file stores"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70386,6 +71132,7 @@ self: { base containers cpphs directory filepath haskell-src-exts process split text uniplate ]; + jailbreak = true; description = "Program to manage the imports of a haskell module"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70445,10 +71192,10 @@ self: { ({ mkDerivation, base, non-empty, utility-ht }: mkDerivation { pname = "fixed-length"; - version = "0.1"; - sha256 = "72be787d9f0e13ae09115ffd0c3decec100163e0c457050fb2b8106dd83ab284"; + version = "0.1.1"; + sha256 = "64630e4f00c9403e270cad744c862104a1248f8c18f565cd485a8725d45357d5"; libraryHaskellDepends = [ base non-empty utility-ht ]; - homepage = "http://code.haskell.org/~thielema/fixed-length/"; + homepage = "http://hub.darcs.net/thielema/fixed-length/"; description = "Lists with statically known length based on non-empty package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70752,6 +71499,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; @@ -71090,6 +71838,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; @@ -71585,19 +72334,20 @@ self: { "foldl-transduce" = callPackage ({ mkDerivation, base, bifunctors, bytestring, comonad, containers , doctest, foldl, free, monoid-subclasses, profunctors - , semigroupoids, tasty, tasty-hunit, tasty-quickcheck, text - , transformers, void + , semigroupoids, semigroups, split, tasty, tasty-hunit + , tasty-quickcheck, text, transformers, void }: mkDerivation { pname = "foldl-transduce"; - version = "0.4.5.0"; - sha256 = "a18a354ec6d8e7be3563ac400af331ff8d928a038b8ea7b3dc8c8e0bf5417564"; + version = "0.4.6.0"; + sha256 = "91a3114417eccc322d7b151029c88582a8875151a452df487c9fb857d724b2b5"; libraryHaskellDepends = [ base bifunctors bytestring comonad containers foldl free - monoid-subclasses profunctors semigroupoids text transformers void + monoid-subclasses profunctors semigroupoids semigroups split text + transformers void ]; testHaskellDepends = [ - base doctest foldl free monoid-subclasses tasty tasty-hunit + base doctest foldl free monoid-subclasses split tasty tasty-hunit tasty-quickcheck text ]; description = "Transducers for foldl folds"; @@ -73056,8 +73806,8 @@ self: { }: mkDerivation { pname = "friday-juicypixels"; - version = "0.1.0.2"; - sha256 = "4928f55a3944a15a89023434aa3b1409eefd3a741e623eb5873d55ec7880d954"; + version = "0.1.1"; + sha256 = "f3a96bab73ddb6a26fd3ac705b7dc21e41b55a3027f4727f1e7307262a89207e"; libraryHaskellDepends = [ base friday JuicyPixels vector ]; testHaskellDepends = [ base bytestring file-embed friday hspec JuicyPixels @@ -73109,6 +73859,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 { @@ -73466,6 +74233,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; @@ -73473,27 +74241,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; }) {}; @@ -73521,8 +74291,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"; @@ -74127,8 +74897,8 @@ self: { ({ mkDerivation, base, GConf, glib, gtk2hs-buildtools, text }: mkDerivation { pname = "gconf"; - version = "0.13.0.2"; - sha256 = "930ac96d4e46d6fc8f5fb9c5a19ff79695f8d01fa3a110da25f1ba95828add77"; + version = "0.13.0.3"; + sha256 = "e8efb705c725ae56486585d0972f9dcec96db89c4d636f1805f7dd3e175d69d2"; libraryHaskellDepends = [ base glib text ]; libraryPkgconfigDepends = [ GConf ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -74210,8 +74980,8 @@ self: { ({ mkDerivation, base, GLUT, OpenGLRaw, Vec }: mkDerivation { pname = "gearbox"; - version = "1.0.0.3"; - sha256 = "fd1b71bfc2ec9c3bb2bb7185fdb0c1a86fb09d0ab1e001a9864c770756dec8c8"; + version = "1.0.0.4"; + sha256 = "fdebdad6326aaa5202e1aece1049c06d5c5c91acd57070c5953bf141019723df"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base GLUT OpenGLRaw Vec ]; @@ -74410,8 +75180,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 @@ -75283,27 +76053,6 @@ self: { }) {}; "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, filepath - , generics-sop, hspec, QuickCheck, safe, silently, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.12"; - sha256 = "f13fef8a35dbd5d2da9b5a8eb7361c848f973a70edb3ef243f0b4bfc409e5c19"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - testHaskellDepends = [ - base base-compat base-orphans filepath generics-sop hspec - QuickCheck safe silently tagged - ]; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "getopt-generics_0_13" = callPackage ({ mkDerivation, base, base-compat, base-orphans, filepath , generics-sop, hspec, QuickCheck, safe, silently, tagged }: @@ -75318,10 +76067,10 @@ self: { base base-compat base-orphans filepath generics-sop hspec QuickCheck safe silently tagged ]; + doCheck = false; homepage = "https://github.com/soenkehahn/getopt-generics#readme"; description = "Create command line interfaces with ease"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getopt-simple" = callPackage @@ -75521,8 +76270,8 @@ self: { }: mkDerivation { pname = "ghc-exactprint"; - version = "0.5.0.0"; - sha256 = "11d840d8ad311cd474063c4531ae0bfbffde05eaf7b1a1de6d1b416b89fe2921"; + version = "0.5.0.1"; + sha256 = "ecdae12d521d0997a48a91507f241f80532df468f09095a50cc6f1629cd43ce8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -75779,11 +76528,35 @@ self: { libraryHaskellDepends = [ base exceptions extensible-exceptions ghc mtl ]; + doHaddock = false; homepage = "http://hub.darcs.net/jcpetruzza/ghc-mtl"; description = "An mtl compatible version of the Ghc-Api monads and monad-transformers"; license = stdenv.lib.licenses.bsd3; }) {}; + "ghc-options" = callPackage + ({ mkDerivation, base, bin-package-db, Cabal, directory, filepath + , ghc, ghc-paths, process, transformers, unix + }: + mkDerivation { + pname = "ghc-options"; + version = "0.2.0.0"; + sha256 = "75443492d1e6eb65b536087aafc84655bbad6026d28ecda950b3cd67d5d44369"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bin-package-db Cabal directory filepath ghc ghc-paths process + transformers unix + ]; + executableHaskellDepends = [ + base bin-package-db Cabal directory filepath ghc ghc-paths process + transformers unix + ]; + homepage = "https://github.com/ranjitjhala/ghc-options.git"; + description = "Utilities for extracting GHC options needed to compile a given Haskell target"; + license = stdenv.lib.licenses.mit; + }) {}; + "ghc-parmake" = callPackage ({ mkDerivation, array, base, containers, directory, filepath , HUnit, process, QuickCheck, temporary, test-framework @@ -75791,8 +76564,8 @@ self: { }: mkDerivation { pname = "ghc-parmake"; - version = "0.1.8"; - sha256 = "cce9254e2f12fd8aab4ef56659db0df0c0853e8cea8024320ce66f2f2b523521"; + version = "0.1.9"; + sha256 = "381973ada7fc3e944dab09ff35d3b26070b1585f5a115fc2ddb09508c1e11c5e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -75805,7 +76578,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; @@ -75923,16 +76695,17 @@ self: { "ghc-session" = callPackage ({ mkDerivation, base, exceptions, ghc, ghc-mtl, ghc-paths - , transformers + , transformers, transformers-compat }: mkDerivation { pname = "ghc-session"; - version = "0.1.1.0"; - sha256 = "fe73ed93744e1d324b85c6a029aac9363ec6b6badfcc791e212309d515b61f28"; + version = "0.1.2.0"; + sha256 = "791a40e9130a3ad09f3226a5cb71ab6ca0492b35345a68078c4e67e7ccd93c94"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base exceptions ghc ghc-mtl ghc-paths transformers + transformers-compat ]; executableHaskellDepends = [ base transformers ]; homepage = "http://github.com/pmlodawski/ghc-session"; @@ -76087,13 +76860,12 @@ self: { }: mkDerivation { pname = "ghc-vis"; - version = "0.7.2.7"; - sha256 = "9bebc52ea34a59f378fdb8f66670c001602f346ad2b3fba7aea5fb70eeaab34f"; + version = "0.7.2.9"; + sha256 = "e0ea3da85c0e32b446f682114de92df548fc230c24a33683c339f110632043ae"; libraryHaskellDepends = [ base cairo containers deepseq fgl ghc-heap-view graphviz gtk mtl svgcairo text transformers xdot ]; - jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; @@ -76319,8 +77091,8 @@ self: { }: mkDerivation { pname = "ghcjs-dom"; - version = "0.2.3.0"; - sha256 = "9ffc3bf9255196a5fbddf2ffc6320547a2a2f641d8682a4d89a51fd680f93c52"; + version = "0.2.3.1"; + sha256 = "dfdee3dcd46ad5707a09488ccf0d2c69dbb47d2044212aeadec0a44f3facee39"; libraryHaskellDepends = [ base glib gtk3 text transformers webkitgtk3 ]; @@ -76786,7 +77558,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "gio" = callPackage + "gio_0_13_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib , gtk2hs-buildtools, mtl }: @@ -76801,6 +77573,24 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GIO"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "gio" = callPackage + ({ mkDerivation, array, base, bytestring, containers, glib + , gtk2hs-buildtools, mtl + }: + mkDerivation { + pname = "gio"; + version = "0.13.1.1"; + sha256 = "d04d9b87b43bf12c5917ea561da403f80fe955adf735785ea8afa0915478113b"; + libraryHaskellDepends = [ + array base bytestring containers glib mtl + ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to GIO"; + license = stdenv.lib.licenses.lgpl21; }) {}; "gipeda_0_1_0_2" = callPackage @@ -76865,6 +77655,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; @@ -77022,8 +77813,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "5.20151116"; - sha256 = "1735577964a1a83a3959e25b6268512e9cd5dbec84b142f2de7b2cd025b97f73"; + version = "5.20151218"; + sha256 = "d8aed73cbc1d1eefcbe6de7790c83f1d6458b4ac1e910d9a34b22782d16142ca"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -77065,72 +77856,6 @@ self: { inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; - "git-annex_5_20151208" = callPackage - ({ mkDerivation, aeson, async, aws, base, blaze-builder - , bloomfilter, bup, byteable, bytestring, case-insensitive - , clientsession, concurrent-output, conduit, conduit-extra - , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus - , directory, dlist, dns, edit-distance, esqueleto, exceptions - , fdo-notify, feed, filepath, git, gnupg, gnutls, hinotify - , hslogger, http-client, http-conduit, http-types, IfElse, json - , lsof, MissingH, monad-control, monad-logger, mtl, network - , network-info, network-multicast, network-protocol-xmpp - , network-uri, old-locale, openssh, optparse-applicative - , path-pieces, perl, persistent, persistent-sqlite - , persistent-template, process, QuickCheck, random, regex-tdfa - , resourcet, rsync, SafeSemaphore, sandi, securemem, shakespeare - , stm, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun - , template-haskell, text, time, torrent, transformers, unix - , unix-compat, utf8-string, uuid, wai, wai-extra, warp, warp-tls - , wget, which, xml-types, yesod, yesod-core, yesod-default - , yesod-form, yesod-static - }: - mkDerivation { - pname = "git-annex"; - version = "5.20151208"; - sha256 = "1513ecf944a174c7b0e7a68ec6722544c8b85c74d8ff89fc8d9ea8c177c4fce9"; - configureFlags = [ - "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" - "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" - "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp" - "-fwebapp-secure" "-fwebdav" "-fxmpp" - ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson async aws base blaze-builder bloomfilter byteable bytestring - case-insensitive clientsession concurrent-output conduit - conduit-extra containers crypto-api cryptonite data-default DAV - dbus directory dlist dns edit-distance esqueleto exceptions - fdo-notify feed filepath gnutls hinotify hslogger http-client - http-conduit http-types IfElse json MissingH monad-control - monad-logger mtl network network-info network-multicast - network-protocol-xmpp network-uri old-locale optparse-applicative - path-pieces persistent persistent-sqlite persistent-template - process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi - securemem shakespeare stm tasty tasty-hunit tasty-quickcheck - tasty-rerun template-haskell text time torrent transformers unix - unix-compat utf8-string uuid wai wai-extra warp warp-tls xml-types - yesod yesod-core yesod-default yesod-form yesod-static - ]; - executableSystemDepends = [ - bup curl git gnupg lsof openssh perl rsync wget which - ]; - preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; - postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; - installPhase = "make PREFIX=$out CABAL=./Setup install"; - checkPhase = "./git-annex test"; - enableSharedExecutables = false; - homepage = "http://git-annex.branchable.com/"; - description = "manage files with git, without checking their contents into git"; - license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; - maintainers = with stdenv.lib.maintainers; [ simons ]; - }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; - inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; - inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; - inherit (pkgs) which;}; - "git-checklist" = callPackage ({ mkDerivation, base, directory, filepath, optparse-applicative , parsec, pretty, process @@ -77187,51 +77912,24 @@ self: { }) {}; "git-fmt" = callPackage - ({ mkDerivation, aeson, base, exceptions, extra, fast-logger - , filepath, monad-logger, monad-parallel, mtl, optparse-applicative - , pipes, pipes-concurrency, temporary, text, time - , unordered-containers, yaml - }: - mkDerivation { - pname = "git-fmt"; - version = "0.3.1.1"; - sha256 = "aebf8a47e92e0a3a9210d45f9abcdf4e9c54eadb1e1422586df6f226dd1b55e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base extra filepath monad-logger mtl pipes text - unordered-containers yaml - ]; - executableHaskellDepends = [ - base exceptions extra fast-logger filepath monad-logger - monad-parallel mtl optparse-applicative pipes pipes-concurrency - temporary text time - ]; - homepage = "https://github.com/hjwylde/git-fmt"; - description = "Custom git command for formatting code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "git-fmt_0_4_0_0" = callPackage ({ mkDerivation, base, exceptions, extra, fast-logger, filepath , monad-logger, monad-parallel, mtl, omnifmt, optparse-applicative - , pipes, pipes-concurrency, temporary, text, time + , pipes, pipes-concurrency, process, temporary, text, time }: mkDerivation { pname = "git-fmt"; - version = "0.4.0.0"; - sha256 = "13f5792fd2006f56a916f4767acef37816b513ec88d4f0aa61b62f35ae725952"; + version = "0.4.1.0"; + sha256 = "a9c10f79f92b6a1650f4eac002542a35dda0048ed68d670602e97615b879e97d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base exceptions extra fast-logger filepath monad-logger monad-parallel mtl omnifmt optparse-applicative pipes - pipes-concurrency temporary text time + pipes-concurrency process temporary text time ]; homepage = "https://github.com/hjwylde/git-fmt"; description = "Custom git command for formatting code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-freq" = callPackage @@ -77340,8 +78038,8 @@ self: { }: mkDerivation { pname = "git-repair"; - version = "1.20150106"; - sha256 = "b791e353be5f6cb9aaada20a87e569e6bb2f55f4ea269747e10c6239c5cd0fa6"; + version = "1.20151215"; + sha256 = "e1e5756f7ffba86a36abcdc296e0730b2a74e0f5e7711b0b6b89a09eb6f10463"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -77405,6 +78103,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "gitHUD" = callPackage + ({ mkDerivation, base, mtl, parsec, process, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck + }: + mkDerivation { + pname = "gitHUD"; + version = "1.0.0.0"; + sha256 = "27f85577fa0826470927652a783ad8364c8cda2070a1905d3efecc5aa0e1941d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl parsec process ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base tasty tasty-hunit tasty-quickcheck tasty-smallcheck + ]; + homepage = "http://github.com/gbataille/gitHUD#readme"; + description = "More efficient replacement to the great git-radar"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gitcache" = callPackage ({ mkDerivation, base, cryptohash, directory, filepath, process , utf8-string @@ -77551,8 +78269,8 @@ self: { }: mkDerivation { pname = "github-webhook-handler"; - version = "0.0.5"; - sha256 = "52f1bcbf4a39205f81c940342e2de45b0ac0d8d0b89942b19a9431f1fc782271"; + version = "0.0.7"; + sha256 = "b80ff37df283fe72e9b933b05aa4159adba8aac4ae242bbd78e40ddd45f8cce0"; libraryHaskellDepends = [ aeson base bytestring cryptohash github-types text transformers uuid vector @@ -77567,8 +78285,8 @@ self: { }: mkDerivation { pname = "github-webhook-handler-snap"; - version = "0.0.5"; - sha256 = "65806df9708c909a9daf5beceb9e3db4bd4258755c8e8b31b181f29a21e1b267"; + version = "0.0.6"; + sha256 = "ec62b61aeb429492b347ed327b14a4c1bcf44d3791ac61ee6989f8a0a608a80e"; libraryHaskellDepends = [ base bytestring case-insensitive github-types github-webhook-handler snap-core uuid @@ -77626,6 +78344,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"; @@ -78010,6 +78729,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 @@ -78322,7 +79057,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; - "glib" = callPackage + "glib_0_13_2_1" = callPackage ({ mkDerivation, base, bytestring, containers, glib , gtk2hs-buildtools, text, utf8-string }: @@ -78338,6 +79073,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) glib;}; + + "glib" = callPackage + ({ mkDerivation, base, bytestring, containers, glib + , gtk2hs-buildtools, text, utf8-string + }: + mkDerivation { + pname = "glib"; + version = "0.13.2.2"; + sha256 = "16bc6710ac195778e514c6ba1da3b22a057854d4db0929b4835172ec42e0497f"; + libraryHaskellDepends = [ + base bytestring containers text utf8-string + ]; + libraryPkgconfigDepends = [ glib ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the GLIB library for Gtk2Hs"; + license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; "glicko" = callPackage @@ -78930,6 +79684,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; + "gnss-converters" = callPackage + ({ mkDerivation, base, basic-prelude, binary-conduit, conduit + , conduit-extra, lens, resourcet, rtcm, sbp, tasty, tasty-hunit + }: + mkDerivation { + pname = "gnss-converters"; + version = "0.1.2"; + sha256 = "8e43f583e7562c086bb8de1a88ef5b5e6bdca72a3ea4645e6d9f486861d07f0c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base basic-prelude conduit-extra lens rtcm sbp + ]; + executableHaskellDepends = [ + base basic-prelude binary-conduit conduit conduit-extra resourcet + ]; + testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; + homepage = "http://github.com/swift-nav/gnss-converters"; + description = "GNSS Converters"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "gnuidn_0_2_1" = callPackage ({ mkDerivation, base, bytestring, c2hs, libidn, text }: mkDerivation { @@ -79018,6 +79794,81 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "goal-core" = callPackage + ({ mkDerivation, base, cairo, Chart, Chart-cairo, Chart-gtk, colour + , containers, data-default-class, gtk, lens + }: + mkDerivation { + pname = "goal-core"; + version = "0.1"; + sha256 = "84b932f82d35eeb3908f5c0c63c7f801de0307439794a1f2049d26bf8e346686"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base cairo Chart Chart-cairo Chart-gtk colour containers + data-default-class gtk lens + ]; + executableHaskellDepends = [ base ]; + description = "Core imports for Geometric Optimization Libraries"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "goal-geometry" = callPackage + ({ mkDerivation, base, goal-core, hmatrix, vector }: + mkDerivation { + pname = "goal-geometry"; + version = "0.1"; + sha256 = "e0bf529b38ea7fa1ed9405db3386bd5206cced8fcc33761cfcbb220d373edc74"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base goal-core hmatrix vector ]; + executableHaskellDepends = [ base goal-core ]; + description = "Scientific computing on geometric objects"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "goal-probability" = callPackage + ({ mkDerivation, base, goal-core, goal-geometry, hmatrix + , math-functions, mwc-random, mwc-random-monad, statistics, vector + }: + mkDerivation { + pname = "goal-probability"; + version = "0.1"; + sha256 = "d48a3518ef4de905dc0cf402dc1b658151e4394af5fc6cd23b39b3831915902d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base goal-core goal-geometry hmatrix math-functions mwc-random + mwc-random-monad statistics vector + ]; + executableHaskellDepends = [ base goal-core goal-geometry vector ]; + description = "Manifolds of probability distributions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "goal-simulation" = callPackage + ({ mkDerivation, base, cairo, clock, directory, goal-core + , goal-geometry, goal-probability, gtk, hmatrix, machines, mtl + , vector + }: + mkDerivation { + pname = "goal-simulation"; + version = "0.1"; + sha256 = "5787cc79ee00478faa9e89ac39c04b8589834c1635f31ba184f70df349678201"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base cairo clock goal-core goal-geometry goal-probability gtk + hmatrix machines vector + ]; + executableHaskellDepends = [ + base directory goal-core goal-geometry goal-probability hmatrix mtl + vector + ]; + description = "Mealy based simulation tools"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "goatee" = callPackage ({ mkDerivation, base, containers, HUnit, mtl, parsec , template-haskell @@ -79030,6 +79881,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; @@ -79051,6 +79903,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; @@ -80586,6 +81439,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; @@ -81295,6 +82149,29 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gremlin-haskell" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, containers, hspec, lens + , lens-aeson, mtl, stm, text, unordered-containers, uuid + , websockets + }: + mkDerivation { + pname = "gremlin-haskell"; + version = "0.1.0.1"; + sha256 = "e73f628ffd27098147e51e301ab531ae01b964ddeaf4fa1104a508300cc15f8f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-qq base containers lens mtl stm text uuid websockets + ]; + executableHaskellDepends = [ + aeson base lens lens-aeson mtl text unordered-containers + ]; + testHaskellDepends = [ aeson-qq base hspec lens lens-aeson mtl ]; + homepage = "http://github.com/nakaji-dayo/gremlin-haskell"; + description = "Graph database client for TinkerPop3 Gremlin Server"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "grid" = callPackage ({ mkDerivation, base, cereal, containers, QuickCheck , test-framework, test-framework-quickcheck2 @@ -82010,7 +82887,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 }: @@ -82027,6 +82904,26 @@ 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" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2, gtk2hs-buildtools, mtl, pango, text + }: + mkDerivation { + pname = "gtk"; + version = "0.14.2"; + sha256 = "58f780c51fe2f3e25939a048bbe7d0b880e6aeb412df2648438f926a2b7b7eb5"; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk2 ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + doHaddock = false; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -82079,8 +82976,8 @@ self: { }: mkDerivation { pname = "gtk-mac-integration"; - version = "0.3.1.1"; - sha256 = "5d8d8b2d0f05c2ed3d54fd71cdc7513de808f8481b1982295f144f87b29e450b"; + version = "0.3.2.1"; + sha256 = "33ae28811e7fbcfe00b1379489c3c73d5023e6b63ebfb19cdea9ddf40c312f06"; libraryHaskellDepends = [ array base containers glib gtk mtl ]; libraryPkgconfigDepends = [ gtk-mac-integration-gtk2 ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -82154,6 +83051,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; @@ -82508,7 +83406,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; - "gtk3" = callPackage + "gtk3_0_14_1" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time , transformers @@ -82528,6 +83426,33 @@ self: { array base cairo text time transformers ]; doHaddock = false; + jailbreak = true; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ 3 graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gtk3;}; + + "gtk3" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time + , transformers + }: + mkDerivation { + pname = "gtk3"; + version = "0.14.2"; + sha256 = "da198906bf3807e61c6d3c85c8537f424d9073d517d511d38197c569a1cb3d1d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk3 ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + executableHaskellDepends = [ + array base cairo text time transformers + ]; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; @@ -82539,8 +83464,8 @@ self: { }: mkDerivation { pname = "gtk3-mac-integration"; - version = "0.3.2.0"; - sha256 = "12ff75908181d0adec685b69fe94c4e4745d8a502a5b171af4898ba4582ae654"; + version = "0.3.2.1"; + sha256 = "c457a75dff24baf47a17f8763b4549be69305dcbc1cf8da7afa01ca62dd466f5"; libraryHaskellDepends = [ array base containers glib gtk3 mtl ]; libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -82613,13 +83538,14 @@ self: { }: mkDerivation { pname = "gtksourceview2"; - version = "0.13.1.3"; - sha256 = "0eba5ee51206a8d99d4d4c4e24e0801492731fb2a67e953da15dbe27a7d328ca"; + version = "0.13.2.1"; + sha256 = "8a98b0dd60625db232152586f1f73c1e4cfdca30b8af6c155029b532aa75e206"; libraryHaskellDepends = [ array base containers glib gtk mtl text ]; libraryPkgconfigDepends = [ gtksourceview ]; libraryToolDepends = [ gtk2hs-buildtools ]; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; @@ -82631,8 +83557,8 @@ self: { }: mkDerivation { pname = "gtksourceview3"; - version = "0.13.2.0"; - sha256 = "12038550255302b1dd6d2bf76b287390d475a77ba00728803fd1cd5968061632"; + version = "0.13.2.1"; + sha256 = "61542fc063d948a0487c0fe784f8154d4a9ca66df3e29bbff0047843bb006ceb"; libraryHaskellDepends = [ array base containers glib gtk3 mtl text ]; @@ -82749,6 +83675,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; @@ -84001,6 +84928,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; @@ -84103,6 +85031,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 { @@ -84433,6 +85379,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; @@ -85024,12 +85971,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"; @@ -85040,20 +85986,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"; @@ -85074,8 +86058,8 @@ self: { }: mkDerivation { pname = "hakyll"; - version = "4.7.4.0"; - sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1"; + version = "4.7.5.0"; + sha256 = "e3079667f07f6355f9dbc0a10623670b323a6bec1fd632d114f5350023b65eb8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -85301,7 +86285,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "half" = callPackage + "half_0_2_2_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "half"; @@ -85311,6 +86295,19 @@ self: { homepage = "http://github.com/ekmett/half"; description = "Half-precision floating-point"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "half" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "half"; + version = "0.2.2.2"; + sha256 = "5be5dbd5279bc921407dd9286a0f82bf77a895ca2e9f7d5169fddca99b58a99f"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/ekmett/half"; + description = "Half-precision floating-point"; + license = stdenv.lib.licenses.bsd3; }) {}; "halfs" = callPackage @@ -85396,6 +86393,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; @@ -85544,15 +86542,16 @@ self: { }) {}; "handa-opengl" = callPackage - ({ mkDerivation, array, base, data-default, GLUT, OpenGL - , opengl-dlp-stereo + ({ mkDerivation, aeson, array, base, binary, data-default, GLUT + , OpenGL, opengl-dlp-stereo, split, vector-space }: mkDerivation { pname = "handa-opengl"; - version = "0.1.6.1"; - sha256 = "7af827245496a5a08e6e2491f66f06de3ab961a9d835684d2f5ae8a026886221"; + version = "0.1.13.0"; + sha256 = "b6b357f2795366758cec289a64109e7c6b9c9a54b53f8b24ea8c73dcfe0bbbd5"; libraryHaskellDepends = [ - array base data-default GLUT OpenGL opengl-dlp-stereo + aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo + split vector-space ]; homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; @@ -85678,6 +86677,22 @@ self: { broken = true; }) {pfq = null;}; + "haphviz" = callPackage + ({ mkDerivation, base, checkers, hspec, mtl, QuickCheck + , quickcheck-text, text + }: + mkDerivation { + pname = "haphviz"; + 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; + }) {}; + "hapistrano" = callPackage ({ mkDerivation, base, base-compat, directory, either, filepath , hspec, mtl, process, temporary, time, time-locale-compat @@ -85860,8 +86875,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 @@ -86366,8 +87381,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 @@ -86701,6 +87716,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; @@ -86774,6 +87790,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"; @@ -87456,6 +88473,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 { @@ -87869,6 +88905,8 @@ self: { pname = "haskell-names"; version = "0.4.1"; sha256 = "88ba49cdaf96d4e194e7ff816ffde28de3ba0883d07daccf7927d8a349c16efe"; + revision = "1"; + editedCabalFile = "d4674b37ad9690fec8dffd7311c6f27d6785a09914fbe1ceaa4103d05e73f741"; libraryHaskellDepends = [ aeson base bytestring Cabal containers data-lens-light filepath haskell-packages haskell-src-exts hse-cpp mtl tagged transformers @@ -87879,6 +88917,7 @@ self: { haskell-packages haskell-src-exts hse-cpp mtl pretty-show tagged tasty tasty-golden traverse-with-class uniplate utf8-string ]; + jailbreak = true; homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -87896,6 +88935,8 @@ self: { pname = "haskell-names"; version = "0.5.2"; sha256 = "eea76fb3c979cf2f5afb87beb8a4b1df6d5536ef7da8d48df79d4ea6dc18bb37"; + revision = "1"; + editedCabalFile = "4f45a86d9e262be3e9d08172072d57ddbcd6d6512923d0dfab26091811737c01"; libraryHaskellDepends = [ aeson base bytestring Cabal containers data-lens-light filepath haskell-packages haskell-src-exts hse-cpp mtl tagged transformers @@ -87906,13 +88947,14 @@ self: { haskell-packages haskell-src-exts hse-cpp mtl pretty-show tagged tasty tasty-golden traverse-with-class uniplate utf8-string ]; + jailbreak = true; 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 + "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 @@ -87923,6 +88965,8 @@ self: { pname = "haskell-names"; version = "0.5.3"; sha256 = "5517fc1e5d1c78a004b3b9d6f4ef8485c3f64b3227551bafb60836fa3081d518"; + revision = "1"; + editedCabalFile = "43a54712a54882de18c56c15e1a10a4d28ddf7d5269f194c214d322c976e4851"; libraryHaskellDepends = [ aeson base bytestring Cabal containers data-lens-light filepath haskell-packages haskell-src-exts hse-cpp mtl tagged transformers @@ -87933,6 +88977,31 @@ self: { haskell-packages haskell-src-exts hse-cpp mtl pretty-show tagged tasty tasty-golden traverse-with-class uniplate utf8-string ]; + jailbreak = true; + 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; @@ -88273,7 +89342,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-exts" = callPackage + "haskell-src-exts_1_16_0_1" = callPackage ({ mkDerivation, array, base, containers, cpphs, directory , filepath, ghc-prim, happy, mtl, pretty, smallcheck, syb, tasty , tasty-golden, tasty-smallcheck @@ -88291,9 +89360,10 @@ self: { homepage = "https://github.com/haskell-suite/haskell-src-exts"; description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-exts_1_17_1" = callPackage + "haskell-src-exts" = callPackage ({ mkDerivation, array, base, containers, cpphs, directory , filepath, ghc-prim, happy, mtl, pretty, pretty-show, smallcheck , syb, tasty, tasty-golden, tasty-smallcheck @@ -88313,7 +89383,6 @@ self: { homepage = "https://github.com/haskell-suite/haskell-src-exts"; description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-src-exts-qq" = callPackage @@ -88402,7 +89471,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta" = callPackage + "haskell-src-meta_0_6_0_12" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -88413,11 +89482,13 @@ self: { libraryHaskellDepends = [ base haskell-src-exts pretty syb template-haskell th-orphans ]; + jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haskell-src-meta_0_6_0_13" = callPackage + "haskell-src-meta" = callPackage ({ mkDerivation, base, haskell-src-exts, pretty, syb , template-haskell, th-orphans }: @@ -88430,7 +89501,6 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-src-meta-mwotton" = callPackage @@ -88506,6 +89576,7 @@ self: { pretty-hex QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 time x509 ]; + jailbreak = true; homepage = "http://github.com/GaloisInc/haskell-tor"; description = "A Haskell Tor Node"; license = stdenv.lib.licenses.bsd3; @@ -89032,8 +90103,8 @@ self: { }: mkDerivation { pname = "haskellscrabble"; - version = "1.2"; - sha256 = "2ac73cbcb6327fe989dbc1293e7d58184958d7f7455a9521a353d2d5742ea8cd"; + version = "1.2.2"; + sha256 = "ceba6d9f16a052ff8164fdfafd6ce3f01c17e951794d3e5bf727531a750152e4"; libraryHaskellDepends = [ array arrows base containers errors listsafe mtl parsec QuickCheck random safe semigroups split transformers unordered-containers @@ -89909,7 +90980,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 @@ -89933,9 +91004,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 @@ -89960,7 +91032,37 @@ 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; + }) {}; + + "hasql_0_15_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-prelude, bytestring + , contravariant, contravariant-extras, data-default-class, dlist + , either, hashable, hashtables, loch-th, placeholders + , postgresql-binary, postgresql-libpq, profunctors, QuickCheck + , quickcheck-instances, scientific, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, text, time, transformers + , uuid, vector + }: + mkDerivation { + pname = "hasql"; + version = "0.15.1"; + sha256 = "8eefdfca21975e215708126b805ee8ba1803e3e3ce32e5c29a1b3e5912ededf8"; + libraryHaskellDepends = [ + aeson attoparsec base base-prelude bytestring contravariant + contravariant-extras data-default-class dlist either hashable + hashtables loch-th placeholders postgresql-binary postgresql-libpq + profunctors scientific text time transformers uuid vector + ]; + testHaskellDepends = [ + base base-prelude bytestring contravariant contravariant-extras + data-default-class dlist either hashable profunctors QuickCheck + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + tasty-smallcheck text time transformers uuid vector + ]; homepage = "https://github.com/nikita-volkov/hasql"; description = "A very efficient PostgreSQL driver and a flexible mapping API"; license = stdenv.lib.licenses.mit; @@ -90089,7 +91191,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; @@ -90444,7 +91545,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; @@ -90465,7 +91565,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; @@ -91934,6 +93033,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; @@ -92060,6 +93160,8 @@ self: { testHaskellDepends = [ base bytestring HUnit mtl test-framework test-framework-hunit time ]; + doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; @@ -93222,8 +94324,8 @@ self: { }: mkDerivation { pname = "hfmt"; - version = "0.0.1.0"; - sha256 = "78bd30bd0990c0145799a7abbd5e0ad66dfd62757bff898077b9e8adcab8661d"; + version = "0.0.2.1"; + sha256 = "1bf5c1e5b686af47739f8589134889812fd7313049777001acf74bae38011373"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94028,7 +95130,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate" = callPackage + "highlighting-kate_0_6" = callPackage ({ mkDerivation, base, blaze-html, containers, Diff, directory , filepath, mtl, parsec, pcre-light, process, utf8-string }: @@ -94051,6 +95153,32 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "highlighting-kate" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers, Diff + , directory, filepath, mtl, parsec, pcre-light, process + , utf8-string + }: + mkDerivation { + pname = "highlighting-kate"; + version = "0.6.1"; + sha256 = "cb57caf861bda046043575772ffc7fd4cd21dd63a0ecdf26b624c7e930e0f30e"; + configureFlags = [ "-fpcre-light" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bytestring containers mtl parsec pcre-light + utf8-string + ]; + executableHaskellDepends = [ base blaze-html containers filepath ]; + testHaskellDepends = [ + base blaze-html containers Diff directory filepath process + ]; + homepage = "http://github.com/jgm/highlighting-kate"; + description = "Syntax highlighting"; + license = "GPL"; }) {}; "hills" = callPackage @@ -94163,6 +95291,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94192,6 +95321,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94221,6 +95351,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94250,6 +95381,7 @@ self: { base data-default directory haskell-src-exts hspec monad-loops mtl text ]; + jailbreak = true; homepage = "http://www.github.com/chrisdone/hindent"; description = "Extensible Haskell pretty printer"; license = stdenv.lib.licenses.bsd3; @@ -94257,14 +95389,14 @@ self: { }) {}; "hindent" = callPackage - ({ mkDerivation, applicative-quoters, base, data-default - , descriptive, directory, ghc-prim, haskell-src-exts, hspec - , monad-loops, mtl, text, transformers + ({ mkDerivation, base, data-default, descriptive, directory + , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, text + , transformers }: mkDerivation { pname = "hindent"; - version = "4.5.7"; - sha256 = "23cc3274b525011c1f6b865946ca247ebd986d960acee1454f897a78f1c862fe"; + version = "4.6.1"; + sha256 = "04e8ffb44b46a45cd6425233efe595d6e412a20c71b69749f72c036bca4870f5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94272,8 +95404,7 @@ self: { transformers ]; executableHaskellDepends = [ - applicative-quoters base descriptive directory ghc-prim - haskell-src-exts text + base descriptive directory ghc-prim haskell-src-exts text ]; testHaskellDepends = [ base data-default directory haskell-src-exts hspec monad-loops mtl @@ -94464,6 +95595,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; @@ -94485,6 +95617,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; @@ -94552,6 +95686,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; @@ -95096,6 +96231,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; @@ -95110,8 +96246,8 @@ self: { }: mkDerivation { pname = "hjsonschema"; - version = "0.8.0.0"; - sha256 = "36b1b6c83a1488d2674a13f0000cef8dee80d4f6835199b7b6453768f25e30cd"; + version = "0.8.0.1"; + sha256 = "aeada3426b294cfc43a7cfac053aae0ee1fd06a5c551ecd0d3a6d725e47c89dc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95618,6 +96754,7 @@ self: { hledger hledger-lib HUnit lens pretty-show safe split time transformers vector vty ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Curses-style user interface for the hledger accounting tool"; license = "GPL"; @@ -95823,8 +96960,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"; @@ -95832,16 +96969,47 @@ 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;}; - "hlibsass" = callPackage + "hlibgit2" = callPackage + ({ mkDerivation, base, bindings-DSL, git, openssl, process, zlib }: + mkDerivation { + pname = "hlibgit2"; + version = "0.18.0.15"; + sha256 = "1170c1f71b39d13699018c29688c005c7aa2d07d8bbbb9d383a9a85e5d4c5601"; + 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) git; inherit (pkgs) openssl;}; + + "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 ]; @@ -95867,6 +97035,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95889,6 +97058,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95897,7 +97067,7 @@ self: { "hlint_1_9_16" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs - , directory, extra, filepath, haskell-src-exts, process + , directory, extra, filepath, haskell-src-exts, hscolour, process , transformers, uniplate }: mkDerivation { @@ -95910,9 +97080,10 @@ self: { isExecutable = true; libraryHaskellDepends = [ ansi-terminal base cmdargs containers cpphs directory extra - filepath haskell-src-exts process transformers uniplate + filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95935,6 +97106,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95957,6 +97129,7 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; @@ -95979,13 +97152,14 @@ self: { filepath haskell-src-exts hscolour process transformers uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint" = callPackage + "hlint_1_9_22" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -96002,12 +97176,14 @@ self: { uniplate ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint_1_9_25" = callPackage + "hlint" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -96024,11 +97200,9 @@ self: { uniplate ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/ndmitchell/hlint#readme"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlogger" = callPackage @@ -97017,6 +98191,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; @@ -97422,6 +98597,7 @@ self: { ]; executableToolDepends = [ happy ]; testHaskellDepends = [ base haskell-src-exts uniplate ]; + jailbreak = true; homepage = "https://github.com/mgajda/homplexity"; description = "Haskell code quality tool"; license = stdenv.lib.licenses.bsd3; @@ -97478,13 +98654,15 @@ self: { }) {}; "hood" = callPackage - ({ mkDerivation, array, base }: + ({ mkDerivation, array, base, FPretty, ghc-prim }: mkDerivation { pname = "hood"; - version = "0.2.1"; - sha256 = "d00bc71cf6f43b141b19f18399c9ad1114e1466d9a55bd6a6506d68c57d828b9"; - libraryHaskellDepends = [ array base ]; - homepage = "http://www.ittc.ku.edu/csdl/fpg/Hood"; + version = "0.3"; + sha256 = "f1962dfb05d01a345335872fa36509999755c71a9381b4941bd04a9cb72b6122"; + revision = "1"; + editedCabalFile = "f9b9df9c7f747b1da4f96477fab00305b5a28132eabc224e76db75b1bae34a64"; + libraryHaskellDepends = [ array base FPretty ghc-prim ]; + homepage = "http://ku-fpg.github.io/software/hood"; description = "Debugging by observing in place"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -97743,6 +98921,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; @@ -97777,6 +98956,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; @@ -97811,6 +98991,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; license = stdenv.lib.licenses.bsd3; @@ -97845,6 +99026,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -97880,6 +99062,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -97915,6 +99098,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -97950,6 +99134,7 @@ self: { transformers uniplate unix vector vector-algorithms wai warp ]; testHaskellDepends = [ base directory filepath process temporary ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/hoogle/"; description = "Haskell API Search"; @@ -98006,6 +99191,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; @@ -98023,14 +99209,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 @@ -98285,25 +99471,25 @@ self: { ({ mkDerivation, aeson, ansi-terminal, attoparsec, base, bytestring , conduit, conduit-extra, containers, deepseq, directory, filepath , http-conduit, http-types, optparse-applicative, parallel, process - , QuickCheck, resourcet, text, transformers, vector + , QuickCheck, resourcet, scientific, text, transformers, vector }: mkDerivation { pname = "hops"; - version = "0.1.3"; - sha256 = "3a87efb934782a3769e7daf79ff5252bae58359701a8d1f829ce83a7436bcb13"; + version = "0.4.0"; + sha256 = "7683f48ef77af14236a5a4f65f5292504cd1db333f76df91aab84a18925287d6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bytestring conduit conduit-extra containers deepseq directory filepath http-conduit - http-types optparse-applicative parallel resourcet text + http-types optparse-applicative parallel resourcet scientific text transformers vector ]; testHaskellDepends = [ aeson attoparsec base bytestring containers deepseq process - QuickCheck text vector + QuickCheck scientific text vector ]; - homepage = "http://github.com/akc/hops"; + homepage = "http://akc.is/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -99114,7 +100300,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc" = callPackage + "hprotoc_2_1_9" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -99137,6 +100323,36 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + jailbreak = true; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hprotoc" = callPackage + ({ mkDerivation, alex, array, base, binary, bytestring, containers + , directory, filepath, haskell-src-exts, mtl, parsec + , protocol-buffers, protocol-buffers-descriptor, utf8-string + }: + mkDerivation { + pname = "hprotoc"; + version = "2.1.12"; + sha256 = "c99c4ceb0a8dad2186c5e2af16898eed5a16d8646052d2fa8c4f29ee39ee1add"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + array base binary bytestring containers directory filepath + haskell-src-exts mtl parsec protocol-buffers + protocol-buffers-descriptor utf8-string + ]; + executableToolDepends = [ alex ]; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -100007,7 +101223,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 @@ -100026,6 +101242,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 @@ -100633,6 +101871,7 @@ self: { testHaskellDepends = [ base directory mtl process test-simple Unixutils ]; + jailbreak = true; homepage = "https://github.com/bosu/hscope"; description = "cscope like browser for Haskell code"; license = stdenv.lib.licenses.bsd3; @@ -100848,7 +102087,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 }: @@ -100863,6 +102102,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 @@ -101174,7 +102431,6 @@ self: { testHaskellDepends = [ base filepath haskell-src-exts tasty tasty-golden ]; - jailbreak = true; description = "A command line program for extending the import list of a Haskell source file"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -101973,6 +103229,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; @@ -102000,6 +103257,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; @@ -102027,6 +103285,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; @@ -102054,6 +103313,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; @@ -102081,6 +103341,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; @@ -102108,6 +103369,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; @@ -102411,8 +103673,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 @@ -102581,6 +103843,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 { @@ -102753,7 +104031,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-wai" = callPackage + "hspec-wai_0_6_3" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, hspec , hspec-core, hspec-expectations, http-types, QuickCheck, text , transformers, wai, wai-extra @@ -102773,6 +104051,31 @@ self: { ]; description = "Experimental Hspec support for testing WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , hspec, hspec-core, hspec-expectations, http-types, QuickCheck + , text, transformers, wai, wai-extra + }: + mkDerivation { + pname = "hspec-wai"; + version = "0.6.4"; + sha256 = "245ad277767a127ce8755c34fbc0374015250afef6f3c9af6c3aadee9f874860"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra + ]; + testHaskellDepends = [ + base base-compat bytestring case-insensitive hspec hspec-core + hspec-expectations http-types QuickCheck text transformers wai + wai-extra + ]; + homepage = "https://github.com/hspec/hspec-wai#readme"; + description = "Experimental Hspec support for testing WAI applications"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-wai-json_0_6_0" = callPackage @@ -103173,6 +104476,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hsseccomp" = callPackage + ({ mkDerivation, base, seccomp, tasty, tasty-hunit, unix }: + mkDerivation { + pname = "hsseccomp"; + version = "0.1.0.2"; + sha256 = "fce6e18b1a87e1f62f3aad709d8a41fa4b34646cc32ec973ed279914c794dc0b"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ seccomp ]; + testHaskellDepends = [ base tasty tasty-hunit unix ]; + description = "Haskell bindings to libseccomp"; + license = "LGPL"; + }) {seccomp = null;}; + "hsshellscript" = callPackage ({ mkDerivation, base, c2hs, directory, parsec, random, unix }: mkDerivation { @@ -103517,8 +104833,8 @@ self: { }: mkDerivation { pname = "hsx2hs"; - version = "0.13.3.2"; - sha256 = "93057aca59faeb1e33d55d804d89fd42b5175006abf1ca7aa507a6338232f8ee"; + version = "0.13.4"; + sha256 = "9508c59b373474e7954f51be61b5e6a54f0a6241cca2a4ecf1b1ce8f5aae07df"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -103571,14 +104887,14 @@ self: { }) {com_err = null; zephyr = null;}; "htaglib" = callPackage - ({ mkDerivation, base, directory, filepath, HUnit, taglib - , test-framework, test-framework-hunit + ({ mkDerivation, base, bytestring, directory, filepath, HUnit + , taglib, test-framework, test-framework-hunit, text }: mkDerivation { pname = "htaglib"; - version = "0.1.1"; - sha256 = "8e0a2a4e7074fec8b2dd5b48c39abe95ffbab50b56b1dd7443ed4f7cd43d28e4"; - libraryHaskellDepends = [ base ]; + version = "1.0.0"; + sha256 = "4d544ad9ca86b1e400393f3173d5416839440d5fefcde2b16ba2e50dd065d1fe"; + libraryHaskellDepends = [ base bytestring text ]; librarySystemDepends = [ taglib ]; testHaskellDepends = [ base directory filepath HUnit test-framework test-framework-hunit @@ -103915,8 +105231,8 @@ self: { }: mkDerivation { pname = "htoml"; - version = "0.1.0.2"; - sha256 = "55ab80da813d6073e9da62ce3b4a706232b2b9889e755f40e3c5bc1d753c653f"; + version = "0.1.0.3"; + sha256 = "84890e99f5f01d38c2177f9d4f1ff1ce4e50e832a663d1c3ebe7d9750156ab16"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -103928,7 +105244,7 @@ self: { tasty-hspec tasty-hunit text time unordered-containers vector ]; testHaskellDepends = [ - base bytestring Cabal containers file-embed parsec tasty + aeson base bytestring Cabal containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; homepage = "https://github.com/cies/htoml"; @@ -104038,7 +105354,7 @@ self: { license = "unknown"; }) {}; - "http-api-data" = callPackage + "http-api-data_0_2_1" = callPackage ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit , QuickCheck, text, time }: @@ -104053,6 +105369,26 @@ self: { homepage = "http://github.com/fizruk/http-api-data"; description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-api-data" = callPackage + ({ mkDerivation, base, bytestring, doctest, Glob, hspec, HUnit + , QuickCheck, text, time, time-locale-compat + }: + mkDerivation { + pname = "http-api-data"; + version = "0.2.2"; + sha256 = "fba6a38c0f3a39e2ce02b42351953d9aa82f48ef83e5c921a9a1e719b8bc45dc"; + libraryHaskellDepends = [ + base bytestring text time time-locale-compat + ]; + testHaskellDepends = [ + base doctest Glob hspec HUnit QuickCheck text time + ]; + homepage = "http://github.com/fizruk/http-api-data"; + description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; + license = stdenv.lib.licenses.bsd3; }) {}; "http-attoparsec" = callPackage @@ -104750,7 +106086,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client" = callPackage + "http-client_0_4_24" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -104778,6 +106114,103 @@ 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_25" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.25"; + sha256 = "2aaefe7d75a0052b32a14cd3749c2a94602a64d87195722cebe75ebde014ec6d"; + revision = "1"; + editedCabalFile = "18bfde86302131a8378a0289610f8f860a0f2d1b3f58d8d450e62a79a0410c98"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + 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 + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.26.1"; + sha256 = "38c264cdc0ad0dcc1f0fbd11a2fa638b55f65476ebcee0bdd9309c38fb5f1047"; + revision = "1"; + editedCabalFile = "8b6aa0fc4dba313afe69bc926a29a98638402f82b54fee6a9798b9bf90e83a62"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + 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" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.26.2"; + sha256 = "5c06c7944da2489d0abb91f8807418e013e77610d2fd3245641f1235371e8c6d"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + 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; }) {}; "http-client-auth" = callPackage @@ -105619,7 +107052,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 @@ -105638,9 +107071,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 @@ -105659,7 +107093,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 @@ -105738,6 +107171,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http2_1_4_0" = callPackage + ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring + , bytestring-builder, containers, directory, doctest, filepath + , Glob, hex, hspec, mwc-random, psqueues, stm, text + , unordered-containers, vector, word8 + }: + mkDerivation { + pname = "http2"; + version = "1.4.0"; + sha256 = "26ffd2cb8ec5f44da3ca1c14640a356d55177ecb4e463fa6defef788902c409f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring bytestring-builder containers psqueues stm + unordered-containers + ]; + executableHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + containers directory filepath hex text unordered-containers vector + word8 + ]; + testHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + containers directory doctest filepath Glob hex hspec mwc-random + psqueues stm text unordered-containers vector word8 + ]; + description = "HTTP/2.0 library including frames and HPACK"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "httpd-shed" = callPackage ({ mkDerivation, base, network, network-uri }: mkDerivation { @@ -107681,8 +109145,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 @@ -107693,7 +109157,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; @@ -108124,6 +109587,8 @@ self: { pname = "ide-backend"; version = "0.10.0"; sha256 = "26a35f82533d8361824e04468176cab7c14d3fa4d0a1ebe1aa243a986a3ae0a2"; + revision = "1"; + editedCabalFile = "96888cccc65f025e63931b466ac392e6caa581f6e902a428fd203cdf3c22f5ef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -108148,6 +109613,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; @@ -108265,6 +109731,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; @@ -108286,6 +109753,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; @@ -108301,6 +109769,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 @@ -108479,12 +109949,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; @@ -108495,12 +109965,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; @@ -108803,6 +110274,7 @@ self: { setenv shelly split stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; @@ -108811,47 +110283,6 @@ self: { }) {}; "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db - , bytestring, cereal, cmdargs, containers, directory, filepath, ghc - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, here, hlint - , hspec, http-client, http-client-tls, HUnit, ipython-kernel, mtl - , parsec, process, random, setenv, shelly, split, stm, strict - , system-argv0, text, transformers, unix, unordered-containers - , utf8-string, uuid, vector - }: - mkDerivation { - pname = "ihaskell"; - version = "0.8.2.0"; - sha256 = "46ded8d9b827c7e3e0eb40379fbf8bc8bbfa85a1c0feacf463c4673c342d9ba4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint http-client http-client-tls - ipython-kernel mtl parsec process random shelly split stm strict - system-argv0 text transformers unix unordered-containers - utf8-string uuid vector - ]; - executableHaskellDepends = [ - aeson base bin-package-db bytestring containers directory ghc here - ipython-kernel process strict text transformers unix - ]; - testHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint hspec http-client - http-client-tls HUnit ipython-kernel mtl parsec process random - setenv shelly split stm strict system-argv0 text transformers unix - unordered-containers utf8-string uuid vector - ]; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A Haskell backend kernel for the IPython project"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ihaskell_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db , bytestring, cereal, cmdargs, containers, directory, filepath, ghc , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec @@ -108888,11 +110319,10 @@ self: { stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; - jailbreak = true; + doCheck = false; homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-aeson" = callPackage @@ -109423,17 +110853,40 @@ 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 + , language-vhdl, mtl, operational-alacarte, pretty, syntactic }: mkDerivation { pname = "imperative-edsl-vhdl"; - version = "0.2.0.1"; - sha256 = "cafdc2e541b1b9937c40a985e6047999aa254e27208d04b42583b3bdfbc69808"; + version = "0.3.2"; + sha256 = "2bc6771e4dad56aba06441139c4649232cd876ec56d87bc96e57430096843098"; libraryHaskellDepends = [ base bytestring constraints containers language-vhdl mtl - operational-alacarte pretty + operational-alacarte pretty syntactic ]; description = "Deep embedding of VHDL programs with code generation"; license = stdenv.lib.licenses.bsd3; @@ -110285,6 +111738,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; @@ -110794,6 +112248,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 @@ -111334,6 +112790,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; @@ -111341,29 +112798,6 @@ self: { }) {}; "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, containers - , directory, filepath, mtl, parsec, process, SHA, temporary, text - , transformers, uuid, zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.8.2.0"; - sha256 = "0b028b9910f90aee9c3b4adb8e59b79aed37ab307501c92158594d28c29ca122"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cereal containers directory filepath mtl - process SHA temporary text transformers uuid zeromq4-haskell - ]; - executableHaskellDepends = [ - base filepath mtl parsec text transformers - ]; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ipython-kernel_0_8_3_0" = callPackage ({ mkDerivation, aeson, base, bytestring, cereal, containers , directory, filepath, mtl, parsec, process, SHA, temporary, text , transformers, unordered-containers, uuid, zeromq4-haskell @@ -111385,7 +112819,6 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "irc" = callPackage @@ -111506,18 +112939,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/"; @@ -111531,8 +112964,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 @@ -111561,8 +112994,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"; @@ -111831,6 +113264,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; @@ -112213,7 +113647,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ixset" = callPackage + "ixset_1_0_6" = callPackage ({ mkDerivation, base, containers, safecopy, syb, syb-with-class , template-haskell }: @@ -112227,6 +113661,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 @@ -113446,6 +114897,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 @@ -113835,7 +115304,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 @@ -113857,6 +115326,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 @@ -114042,23 +115534,20 @@ self: { "jsonrpc-conduit" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, mtl, text, transformers, unordered-containers + , conduit-extra, hspec, mtl, text, transformers + , unordered-containers }: mkDerivation { pname = "jsonrpc-conduit"; - version = "0.2.6"; - sha256 = "7e8ff67a7b8d93add988511fa11669fc45814ea5c5c7de7c20e22e7c58e4b222"; - isLibrary = true; - isExecutable = true; + version = "0.3.0"; + sha256 = "9e2407e7a2f086d2d4c3ec7e8952a663bca6e487936d147cfb643dfcd1d1014e"; libraryHaskellDepends = [ aeson attoparsec base bytestring conduit conduit-extra mtl text transformers unordered-containers ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra mtl text - transformers unordered-containers + testHaskellDepends = [ + aeson base bytestring conduit conduit-extra hspec text ]; - jailbreak = true; description = "JSON-RPC 2.0 server over a Conduit."; license = stdenv.lib.licenses.gpl3; }) {}; @@ -115465,6 +116954,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; @@ -116354,6 +117844,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"; @@ -116724,6 +118215,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "lambdatex" = callPackage + ({ mkDerivation, async, base, containers, directory, HaTeX, hspec + , mtl, QuickCheck, quickcheck-text, text, transformers + }: + mkDerivation { + pname = "lambdatex"; + version = "0.1.0.3"; + sha256 = "d233ed18d1a6383544146832b45c0e56cbf1a95ececbb6b12963ccb27bcd4bc9"; + libraryHaskellDepends = [ + async base containers directory HaTeX mtl text transformers + ]; + testHaskellDepends = [ + base hspec QuickCheck quickcheck-text text + ]; + 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 @@ -117020,6 +118530,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"; @@ -117047,6 +118558,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"; @@ -117074,6 +118586,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"; @@ -117108,7 +118621,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c-quote" = callPackage + "language-c-quote_0_11_3" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , exception-mtl, exception-transformers, filepath, happy , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb @@ -117132,6 +118645,33 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-c-quote" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers + , exception-mtl, exception-transformers, filepath, happy + , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb + , symbol, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "language-c-quote"; + version = "0.11.4"; + sha256 = "5794da453deb5dbe4f875e2c16af0514f39c809895061c5bb96c7b1dd1732a89"; + libraryHaskellDepends = [ + array base bytestring containers exception-mtl + exception-transformers filepath haskell-src-meta mainland-pretty + mtl srcloc syb symbol template-haskell + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + base bytestring HUnit mainland-pretty srcloc symbol test-framework + test-framework-hunit + ]; + doCheck = false; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = stdenv.lib.licenses.bsd3; }) {}; "language-cil" = callPackage @@ -117248,6 +118788,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; @@ -117920,18 +119462,19 @@ self: { }) {}; "language-thrift" = callPackage - ({ mkDerivation, base, hspec, hspec-discover, mtl, parsers - , QuickCheck, text, trifecta, wl-pprint + ({ mkDerivation, base, hspec, hspec-discover, lens, parsers + , QuickCheck, text, transformers, trifecta, wl-pprint }: mkDerivation { pname = "language-thrift"; - version = "0.4.0.0"; - sha256 = "5cc8e2d464065a9e388a79db912dd8fd73c2a94f150ceefc448a72986452862a"; + version = "0.5.0.0"; + sha256 = "3163d87531b108f0f85f3e1335cf7b755243722b9ac2e0b57f6e328dffcfca99"; libraryHaskellDepends = [ - base mtl parsers text trifecta wl-pprint + base lens parsers text transformers trifecta wl-pprint ]; testHaskellDepends = [ - base hspec hspec-discover QuickCheck text trifecta wl-pprint + base hspec hspec-discover parsers QuickCheck text trifecta + wl-pprint ]; homepage = "https://github.com/abhinav/language-thrift"; description = "Parser and pretty printer for the Thrift IDL format"; @@ -117955,15 +119498,15 @@ self: { ({ mkDerivation, base, pretty }: mkDerivation { pname = "language-vhdl"; - version = "0.1.1.0"; - sha256 = "132ae3cc1b71d535db66fd794f1c26434f8f72f330989def825a2b05e269608a"; + version = "0.1.2.4"; + sha256 = "f3a19de12610c6273138467bfc89795e98d7dddc1064f8e1a947b0d8c16fe93b"; libraryHaskellDepends = [ base pretty ]; homepage = "https://github.com/markus-git/language-vhdl"; description = "VHDL AST and pretty printer in Haskell"; 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 }: @@ -117976,19 +119519,21 @@ 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_4" = callPackage + "largeword" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: mkDerivation { pname = "largeword"; - version = "1.2.4"; - sha256 = "0132ffdc0a7429339160ce0651c65ac504cff46c5f1744bd7dd6fb1c9a3351d5"; + version = "1.2.5"; + sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; libraryHaskellDepends = [ base binary ]; testHaskellDepends = [ base binary bytestring HUnit QuickCheck test-framework @@ -117997,7 +119542,6 @@ self: { 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 @@ -118161,10 +119705,8 @@ self: { }: mkDerivation { pname = "lattices"; - version = "1.4.1"; - sha256 = "b1148cd7ed7fde0964fa53e5b1c304370291f08cfaa77dab3a6cfb01c8ae34ff"; - revision = "1"; - editedCabalFile = "ceeada8cfea894629b6232d6c3367bf182bcc76f9f6c77937d23d02ba8f4345f"; + version = "1.5.0"; + sha256 = "c6e3fb4334503b9087209195f40c96f56819497f999959358a2ff5d843a45d1f"; libraryHaskellDepends = [ base containers deepseq hashable semigroups tagged universe-base universe-reverse-instances unordered-containers void @@ -118465,6 +120007,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; @@ -118655,6 +120198,7 @@ self: { leksah-server ltk monad-loops QuickCheck stm text transformers webkitgtk3 ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; @@ -118692,6 +120236,7 @@ self: { base conduit conduit-extra hslogger HUnit process resourcet transformers ]; + jailbreak = true; homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; @@ -118972,6 +120517,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; @@ -119258,11 +120804,38 @@ 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; }) {}; + "lenz" = callPackage + ({ mkDerivation, base, base-unicode-symbols, transformers }: + mkDerivation { + pname = "lenz"; + version = "0.1"; + sha256 = "98b3aef14ca16218ecd6643812e9df5dde5c60af6e2f56f98ec523ecc0917397"; + libraryHaskellDepends = [ base base-unicode-symbols transformers ]; + description = "Van Laarhoven lenses"; + license = "unknown"; + }) {}; + + "lenz-template" = callPackage + ({ mkDerivation, base, base-unicode-symbols, containers, lenz + , template-haskell + }: + mkDerivation { + pname = "lenz-template"; + version = "0.1"; + sha256 = "f03ca02d69c19f34c191f7cc41a15f167cba9e60c0791069eac7cd302a5877b1"; + libraryHaskellDepends = [ + base base-unicode-symbols containers lenz template-haskell + ]; + description = "Van Laarhoven lens templates"; + license = "unknown"; + }) {}; + "level-monad" = callPackage ({ mkDerivation, base, fmlist }: mkDerivation { @@ -119862,7 +121435,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; @@ -119979,16 +121551,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"; @@ -120349,6 +121921,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; @@ -120369,6 +121942,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"; @@ -120777,10 +122351,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 @@ -120981,6 +122553,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "link-relations" = callPackage + ({ mkDerivation, base, bytestring, hashable, unordered-containers + , uri-bytestring + }: + mkDerivation { + pname = "link-relations"; + version = "0.1.0.0"; + sha256 = "4944ffa47d4758135c40f776634e1f7b542c8886ef62b61f224a973c143173cb"; + libraryHaskellDepends = [ + base bytestring hashable unordered-containers uri-bytestring + ]; + homepage = "http://hub.darcs.net/fr33domlover/link-relations"; + description = "Use web link relation types (RFC 5988) in Haskell"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "linkchk" = callPackage ({ mkDerivation, base, gtk, haskell98, popenhs, regex-compat, unix }: @@ -121395,8 +122983,8 @@ self: { pname = "liquidhaskell"; version = "0.5.0.1"; sha256 = "27f31e7652cd9ef0b97d2e3936c8e9c759961ac153b324c3e84f11cb441ab89a"; - revision = "1"; - editedCabalFile = "f091f4caee092d4d286fe264fbb5f602675339c6bfac563bfb91732583264cc0"; + revision = "2"; + editedCabalFile = "54142d52274f85af299d405bd5daac25b574f9d3f16c8e42b7f5b999d9a34a1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -121418,6 +123006,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; @@ -121461,7 +123050,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"; @@ -121471,6 +123060,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 @@ -121498,6 +123100,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 @@ -122430,6 +124056,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 @@ -122880,6 +124527,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "logplex-parse" = callPackage + ({ mkDerivation, base, hspec, iso8601-time, parsec, text, time }: + mkDerivation { + pname = "logplex-parse"; + version = "0.1.0.2"; + sha256 = "e802251aa40c73f9dea2ebe0b7bd92450b94a513343f165cccb2e86489403604"; + libraryHaskellDepends = [ base iso8601-time parsec text time ]; + testHaskellDepends = [ base hspec time ]; + homepage = "https://github.com/keithduncan/logplex-parse"; + description = "Parse Heroku application/logplex documents"; + license = stdenv.lib.licenses.mit; + }) {}; + "logsink" = callPackage ({ mkDerivation, base, hspec, hsyslog, logging-facade, time }: mkDerivation { @@ -123574,7 +125234,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"; @@ -123586,9 +125246,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"; @@ -123600,7 +125261,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 @@ -123673,25 +125333,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.7.2"; - sha256 = "0ae406e8958c1e6f2520a01d74a55b70d158198ef0d08bbaf30452dc54e9deab"; - libraryHaskellDepends = [ - base containers contravariant dlist gl linear mtl resourcet - semigroups transformers vector void - ]; - homepage = "https://github.com/phaazon/luminance"; - description = "Type-safe, type-level and stateless graphics framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "luminance_0_8_2" = callPackage - ({ mkDerivation, base, containers, contravariant, dlist, gl, linear - , mtl, resourcet, semigroups, transformers, vector, void - }: - mkDerivation { - pname = "luminance"; - version = "0.8.2"; - sha256 = "e7ec4cb6b688077c51de48ebe4ad552e8943ad0f4a7aabfda608652c0ccfdaba"; + version = "0.9"; + sha256 = "8bbee1483bca9a073a8ca7f4f1d3bec00f99c3d59bfa637702afda5a88eb2ada"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void @@ -123699,7 +125342,6 @@ self: { homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, type-level and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luminance-samples" = callPackage @@ -123708,8 +125350,8 @@ self: { }: mkDerivation { pname = "luminance-samples"; - version = "0.7"; - sha256 = "443f255f4a036f4519f97676a5a5cfa6be02eeecefd1fdbc28f0161034774c36"; + version = "0.9"; + sha256 = "1ce2b8ff49c34bd529bcbe8e30f042f327a970b7a6d43dbdd3939b17cfa44bec"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -123722,27 +125364,6 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "luminance-samples_0_8" = callPackage - ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels, linear - , luminance, mtl, resourcet, transformers - }: - mkDerivation { - pname = "luminance-samples"; - version = "0.8"; - sha256 = "35580954897bcb2fdbd7eecc14982b44f5026e64be08d7398f8cc7fa0925a962"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base contravariant GLFW-b JuicyPixels linear luminance mtl - resourcet transformers - ]; - jailbreak = true; - homepage = "https://github.com/phaazon/luminance-samples"; - description = "Luminance samples"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "lushtags" = callPackage ({ mkDerivation, base, haskell-src-exts, text, vector }: mkDerivation { @@ -124048,6 +125669,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; @@ -124100,8 +125722,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "2.1.0"; - sha256 = "2fe8be49de7346a0df30feca7cd48864e4bac1ef356a1709414fc1a84762dc83"; + version = "3.0.1"; + sha256 = "a018aa83f998b5c94daf1886269fe442566039c26060e4705095b40fa3639236"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -124159,6 +125781,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "machines-binary" = callPackage + ({ mkDerivation, base, binary, bytestring, machines }: + mkDerivation { + pname = "machines-binary"; + version = "0.2.0.0"; + sha256 = "b8f7d857f4d79c853845e1ff2eb3f10968787da02e523279d69a86b089215519"; + libraryHaskellDepends = [ base binary bytestring machines ]; + homepage = "http://github.com/aloiscochard/machines-binary"; + description = "Binary utilities for the machines library"; + license = stdenv.lib.licenses.asl20; + }) {}; + "machines-directory_0_2_0_0" = callPackage ({ mkDerivation, base, directory, filepath, machines, machines-io , transformers @@ -125178,6 +126812,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; @@ -125202,6 +126837,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; @@ -125284,6 +126920,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"; @@ -127256,8 +128893,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "microlens"; - version = "0.3.4.1"; - sha256 = "95725872270774d20e85e12639e3d0636f6ed6ede977dae67da168ba67baa1f9"; + version = "0.3.5.0"; + sha256 = "5bb84795005ae4a8f828c78127044858c9d83cb8adcd373a337b3ac4588d2d2c"; libraryHaskellDepends = [ base ]; homepage = "http://github.com/aelve/microlens"; description = "A tiny part of the lens library with no dependencies"; @@ -127297,8 +128934,8 @@ self: { ({ mkDerivation, array, base, bytestring, containers, microlens }: mkDerivation { pname = "microlens-ghc"; - version = "0.3.0.0"; - sha256 = "d9bd1660bbfe8b988779c409e8fb770ebd57d0149a5b49002225033971dee67a"; + version = "0.3.1.0"; + sha256 = "cf9e78ca5abb459d4402a279c80ef07198d56ee4b0d51d7792dc0840e7217ef9"; libraryHaskellDepends = [ array base bytestring containers microlens ]; @@ -127364,8 +129001,8 @@ self: { }: mkDerivation { pname = "microlens-platform"; - version = "0.1.5.0"; - sha256 = "3c705ad7a4732a0ac4deb82b1837b0fa247a6796bd64dbf1125edf135e2abd04"; + version = "0.1.7.0"; + sha256 = "db74b98d8a8a0486c9f93e48ca7d9252b8f806a9bbbe9737457eeb91bb9555cd"; libraryHaskellDepends = [ base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector @@ -127410,8 +129047,8 @@ self: { ({ mkDerivation, base, containers, microlens, template-haskell }: mkDerivation { pname = "microlens-th"; - version = "0.2.1.3"; - sha256 = "5701a5775e5204729d619dcedd81666dbd94c76574930beebb81cc943805d9a5"; + version = "0.2.2.0"; + sha256 = "bf52318c0898294ab356ba75f72b880b9453cbc9df809b71aeac8081105596f9"; libraryHaskellDepends = [ base containers microlens template-haskell ]; @@ -127517,6 +129154,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; @@ -127609,8 +129247,8 @@ self: { }: mkDerivation { pname = "mighttpd2"; - version = "3.2.9"; - sha256 = "b7c8857b9384a3355b5716e2dc671a90855e24d5013786566384073e7b72ad3f"; + version = "3.2.10"; + sha256 = "b5d8b8a310598d952f3b4329808ef8211a6a0b224d66fcc18cef4f0a737d25f1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -127686,8 +129324,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 @@ -128567,6 +130205,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "modify-fasta" = callPackage + ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative + , pipes, pipes-text, regex-tdfa, regex-tdfa-text, split, text + , text-show + }: + mkDerivation { + pname = "modify-fasta"; + version = "0.8.0.4"; + sha256 = "bab0205c7075337179b098b9445735033ec7b3d3e9a36730a2a085798c2eb543"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers fasta regex-tdfa regex-tdfa-text split text + text-show + ]; + executableHaskellDepends = [ + base containers fasta mtl optparse-applicative pipes pipes-text + split text + ]; + homepage = "https://github.com/GregorySchwartz/modify-fasta"; + description = "Modify fasta (and CLIP) files in several optional ways"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "modsplit" = callPackage ({ mkDerivation, base, directory, filepath, haskell98, mtl , utf8-string @@ -128662,6 +130324,7 @@ self: { testHaskellDepends = [ base containers filepath haskell-src-exts HUnit process ]; + jailbreak = true; homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; @@ -129056,6 +130719,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "monad-http" = callPackage + ({ mkDerivation, base, base-compat, bytestring, exceptions + , http-client, http-client-tls, http-types, monad-logger + , monadcryptorandom, MonadRandom, mtl, text, transformers + , transformers-compat + }: + mkDerivation { + pname = "monad-http"; + version = "0.1.0.0"; + sha256 = "a333b087835aa4902d0814e76fe4f32a523092fd7b13526aad415160a8317192"; + libraryHaskellDepends = [ + base base-compat bytestring exceptions http-client http-client-tls + http-types monad-logger monadcryptorandom MonadRandom mtl text + transformers transformers-compat + ]; + homepage = "https://github.com/futurice/haskell-monad-http#readme"; + description = "A class of monads which can do http requests"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "monad-interleave" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -129297,7 +130980,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-logger" = callPackage + "monad-logger_0_3_15" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base , monad-control, monad-loops, mtl, resourcet, stm, stm-chans @@ -129317,6 +131000,29 @@ self: { homepage = "https://github.com/kazu-yamamoto/logger"; description = "A class of monads which can log messages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-logger" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, conduit + , conduit-extra, exceptions, fast-logger, lifted-base + , monad-control, monad-loops, mtl, resourcet, stm, stm-chans + , template-haskell, text, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "monad-logger"; + version = "0.3.16"; + sha256 = "1ee1b69e5732dab1cd833e8f0ea8092dc4c82b6548e7a46669192f0c0c641622"; + libraryHaskellDepends = [ + base blaze-builder bytestring conduit conduit-extra exceptions + fast-logger lifted-base monad-control monad-loops mtl resourcet stm + stm-chans template-haskell text transformers transformers-base + transformers-compat + ]; + homepage = "https://github.com/kazu-yamamoto/logger"; + description = "A class of monads which can log messages"; + license = stdenv.lib.licenses.mit; }) {}; "monad-logger-json" = callPackage @@ -130285,6 +131991,7 @@ self: { transformers-base ]; testHaskellDepends = [ base hspec mtl old-locale text time ]; + doHaddock = false; homepage = "https://github.com/mongodb-haskell/mongodb"; description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; license = "unknown"; @@ -130499,8 +132206,8 @@ self: { }: mkDerivation { pname = "mono-traversable"; - version = "0.10.0"; - sha256 = "5f71c909ed5b5b399fdceeb565b3eb3c19fbcdd771ca9a87595f863c35429fab"; + version = "0.10.0.1"; + sha256 = "2e25c24ed3cf644cd4818cfb6d4e122cffcac2a375f0edb544b6814f871af45d"; libraryHaskellDepends = [ base bytestring comonad containers dlist dlist-instances hashable semigroupoids semigroups split text transformers @@ -130560,6 +132267,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; @@ -131092,6 +132800,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mpris" = callPackage + ({ mkDerivation, base, containers, dbus, mtl }: + mkDerivation { + pname = "mpris"; + version = "0.1.0.0"; + sha256 = "3ee98b2f922e746982a46c8bd71058c1b9882c05db3eb21d21573d9b42158685"; + libraryHaskellDepends = [ base containers dbus mtl ]; + jailbreak = true; + homepage = "http://github.com/Fuco1/mpris"; + description = "Interface for MPRIS"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "mprover" = callPackage ({ mkDerivation, base, containers, haskell98, mtl, parsec, pretty , transformers, unbound @@ -131702,6 +133423,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; @@ -132060,6 +133782,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; @@ -133496,6 +135219,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; @@ -133536,7 +135260,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"; @@ -133548,6 +135272,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 @@ -133605,7 +135344,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation" = callPackage + "neat-interpolation_0_2_3" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell }: mkDerivation { @@ -133620,6 +135359,24 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "neat-interpolation" = callPackage + ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell + , text + }: + mkDerivation { + pname = "neat-interpolation"; + version = "0.3"; + sha256 = "fd8b935d2e674456a6db7af90974cb5d2381709bca20051c2da024888b80fd25"; + libraryHaskellDepends = [ + base base-prelude parsec template-haskell text + ]; + testHaskellDepends = [ base-prelude HTF ]; + homepage = "https://github.com/nikita-volkov/neat-interpolation"; + description = "A quasiquoter for neat and simple multiline text interpolation"; + license = stdenv.lib.licenses.mit; }) {}; "needle" = callPackage @@ -135644,6 +137401,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; }) {}; @@ -135721,6 +137480,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "niagra" = callPackage + ({ mkDerivation, base, containers, mtl, text, transformers }: + mkDerivation { + pname = "niagra"; + 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; + }) {}; + "nibblestring" = callPackage ({ mkDerivation, ansi-wl-pprint, base, base16-bytestring , bytestring, containers, HUnit, test-framework @@ -136680,13 +138451,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; @@ -136893,6 +138663,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; @@ -137138,6 +138909,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; }) {}; @@ -137252,6 +139024,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; @@ -137263,6 +139037,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; @@ -137365,32 +139141,6 @@ self: { }) {}; "omnifmt" = callPackage - ({ mkDerivation, aeson, base, exceptions, extra, fast-logger - , filepath, monad-logger, monad-parallel, mtl, optparse-applicative - , pipes, pipes-concurrency, temporary, text, time - , unordered-containers, yaml - }: - mkDerivation { - pname = "omnifmt"; - version = "0.2.0.0"; - sha256 = "72c9e0d84550b3b7a406186f951e148cb9f4a954f5ac8f5ef1512f28335af7c9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base exceptions extra filepath monad-logger mtl pipes text - unordered-containers yaml - ]; - executableHaskellDepends = [ - base exceptions extra fast-logger filepath monad-logger - monad-parallel mtl optparse-applicative pipes pipes-concurrency - temporary text time - ]; - homepage = "https://github.com/hjwylde/omnifmt"; - description = "A pretty-printer wrapper to faciliate ease of formatting during development"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "omnifmt_0_2_1_1" = callPackage ({ mkDerivation, aeson, base, exceptions, extra, fast-logger , filepath, monad-logger, monad-parallel, mtl, optparse-applicative , pipes, pipes-concurrency, temporary, text, time @@ -137414,7 +139164,6 @@ self: { homepage = "https://github.com/hjwylde/omnifmt"; description = "A pretty-printer wrapper to faciliate ease of formatting during development"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-a-horse" = callPackage @@ -137458,6 +139207,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 { @@ -137689,6 +139454,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"; @@ -137856,13 +139622,17 @@ self: { }) {}; "open-typerep" = callPackage - ({ mkDerivation, base, constraints, mtl, syntactic, tagged }: + ({ mkDerivation, base, constraints, mtl, syntactic, tagged + , template-haskell + }: mkDerivation { pname = "open-typerep"; - version = "0.3.3"; - sha256 = "bca107a946e61174bec6ab05e98bbd5757bcf20bf4621717d420c89de54f7897"; - libraryHaskellDepends = [ base constraints mtl syntactic tagged ]; - testHaskellDepends = [ base ]; + version = "0.5"; + sha256 = "8060a300cc6a3f72a0b3aba74574399c112362f74bbc69498203e82dd0986d22"; + libraryHaskellDepends = [ + base constraints mtl syntactic tagged template-haskell + ]; + testHaskellDepends = [ base syntactic ]; homepage = "https://github.com/emilaxelsson/open-typerep"; description = "Open type representations and dynamic types"; license = stdenv.lib.licenses.bsd3; @@ -137985,8 +139755,8 @@ self: { ({ mkDerivation, base, data-default, GLUT, OpenGL, vector }: mkDerivation { pname = "opengl-dlp-stereo"; - version = "0.1.4.1"; - sha256 = "adaeeaa628dbd57c8b63ca4614464815f55e810c36c483cd0bd6f3be6880652b"; + version = "0.1.5.2"; + sha256 = "ae6c39a874af2fe12fd5af0dfc312ed9c2156a9240243c8ff81aa66970b0cad1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-default GLUT OpenGL vector ]; @@ -137999,15 +139769,17 @@ self: { }) {}; "opengl-spacenavigator" = callPackage - ({ mkDerivation, base, data-default, GLUT, OpenGL }: + ({ mkDerivation, base, binary, data-default, GLUT, OpenGL }: mkDerivation { pname = "opengl-spacenavigator"; - version = "0.1.4.2"; - sha256 = "2f6063bfc11c3cbfc3c6feedcb124debd40ae6e02d67dea8b8e9024e545da44e"; + version = "0.1.5.4"; + sha256 = "a6b1d313e0dce09ad4134b69df197acec6cc75ff5f3c2db9ca18cf384db64a54"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base data-default GLUT OpenGL ]; - executableHaskellDepends = [ base data-default GLUT OpenGL ]; + libraryHaskellDepends = [ base binary data-default GLUT OpenGL ]; + executableHaskellDepends = [ + base binary data-default GLUT OpenGL + ]; homepage = "https://bitbucket.org/bwbush/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; @@ -138709,7 +140481,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 }: @@ -138723,9 +140495,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 }: @@ -138739,7 +140512,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 @@ -139361,6 +141133,7 @@ self: { base Cabal directory filepath haskell-src-exts optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/hvr/packunused"; description = "Tool for detecting redundant Cabal package dependencies"; license = stdenv.lib.licenses.bsd3; @@ -139552,30 +141325,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 @@ -139820,11 +141569,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"; @@ -139838,9 +141587,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 @@ -139853,6 +141603,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"; @@ -140138,6 +141889,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; @@ -140170,6 +141922,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; @@ -140202,6 +141955,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; @@ -140322,8 +142076,8 @@ self: { ({ mkDerivation, base, containers, lens, pandoc-types }: mkDerivation { pname = "pandoc-lens"; - version = "0.3.3"; - sha256 = "69502fc2630bb482ed4211b9966a0446403af59ee4cab78dd89cebe11b236cdc"; + version = "0.4.1"; + sha256 = "bd319f64abf3ebaac915e20135aadb06ab1f77ab562f7bac87580ceda37fc12d"; libraryHaskellDepends = [ base containers lens pandoc-types ]; homepage = "http://github.com/bgamari/pandoc-lens"; description = "Lenses for Pandoc documents"; @@ -140435,6 +142189,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"; @@ -140452,6 +142207,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; @@ -140530,7 +142286,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; - "pango" = callPackage + "pango_0_13_1_0" = callPackage ({ mkDerivation, array, base, cairo, containers, directory, glib , gtk2hs-buildtools, mtl, pango, pretty, process, text }: @@ -140546,6 +142302,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs.gnome) pango;}; + + "pango" = callPackage + ({ mkDerivation, array, base, cairo, containers, directory, glib + , gtk2hs-buildtools, mtl, pango, pretty, process, text + }: + mkDerivation { + pname = "pango"; + version = "0.13.1.1"; + sha256 = "3c22f339fe2e30cb6d6cbc5906e1064c5fdabfbc56d2a2c015ac70b4aa5165ad"; + libraryHaskellDepends = [ + array base cairo containers directory glib mtl pretty process text + ]; + libraryPkgconfigDepends = [ pango ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Pango text rendering engine"; + license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -140866,8 +142641,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 ]; @@ -140889,6 +142664,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; @@ -140907,6 +142683,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; @@ -140925,6 +142702,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; @@ -141638,16 +143417,19 @@ self: { }) {}; "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, random, time + ({ mkDerivation, base, deepseq, directory, QuickCheck, random + , tagged, time, transformers, utility-ht }: mkDerivation { pname = "pathtype"; - version = "0.6"; - sha256 = "92bc70d7b9f2d495caf54f80d378622e347e57d9262bda6fc503fbe7d986be51"; + version = "0.7.0.1"; + sha256 = "f63692c829eed50588feb68a4ba1a711354f680553c9788c9c4795f821ff47b4"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base deepseq directory QuickCheck time ]; - executableHaskellDepends = [ base ]; + libraryHaskellDepends = [ + base deepseq directory QuickCheck tagged time transformers + utility-ht + ]; testHaskellDepends = [ base random ]; homepage = "http://hub.darcs.net/thielema/pathtype/"; description = "Type-safe replacement for System.FilePath etc"; @@ -141735,14 +143517,14 @@ self: { }) {}; "paypal-adaptive-hoops" = callPackage - ({ mkDerivation, aeson, base, bytestring, errors, http-client - , HUnit, lens, lens-aeson, test-framework, test-framework-hunit - , text, time, transformers, unordered-containers, vector, wreq + ({ mkDerivation, aeson, base, bytestring, directory, errors + , filepath, http-client, HUnit, lens, lens-aeson, test-framework + , test-framework-hunit, text, time, transformers, vector, wreq }: mkDerivation { pname = "paypal-adaptive-hoops"; - version = "0.11.0.2"; - sha256 = "3507d136ce1b189c66de9c36a5b0511e439e2d18f6107f9bead176ccd391e17c"; + version = "0.13.1.0"; + sha256 = "09997162d0533ec80a0cda3bcb84f48a59acdac367a61703fb32c98594d5965f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -141751,8 +143533,8 @@ self: { ]; executableHaskellDepends = [ base text ]; testHaskellDepends = [ - aeson base bytestring HUnit test-framework test-framework-hunit - text unordered-containers + aeson base bytestring directory filepath HUnit test-framework + test-framework-hunit text ]; jailbreak = true; homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; @@ -143090,7 +144872,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 @@ -143121,6 +144903,41 @@ 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" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , blaze-html, blaze-markup, bytestring, conduit, containers + , exceptions, fast-logger, hspec, http-api-data, lifted-base + , monad-control, monad-logger, mtl, old-locale, path-pieces + , resource-pool, resourcet, scientific, silently, tagged + , template-haskell, text, time, transformers, transformers-base + , unordered-containers, vector + }: + mkDerivation { + pname = "persistent"; + version = "2.2.4"; + sha256 = "ae56121abbef8ecca7aa7c62b2e77a47e583d4dded0f8e4bfe1cd6b1fea70bbe"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html blaze-markup + bytestring conduit containers exceptions fast-logger http-api-data + lifted-base monad-control monad-logger mtl old-locale path-pieces + resource-pool resourcet scientific silently tagged template-haskell + text time transformers transformers-base unordered-containers + vector + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html bytestring + conduit containers fast-logger hspec http-api-data lifted-base + monad-control monad-logger mtl old-locale path-pieces resource-pool + resourcet scientific tagged template-haskell text time transformers + unordered-containers vector + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, multi-backend data serialization"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -144192,6 +146009,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; @@ -144217,6 +146035,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; @@ -144242,6 +146061,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; @@ -144249,7 +146069,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_4" = callPackage ({ mkDerivation, aeson, aeson-extra, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -144269,6 +146089,32 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.5"; + sha256 = "d732a0e8114dae29874f3536592effc1626aea15ebef47f3355a4b426020acd1"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -144578,6 +146424,8 @@ self: { pname = "pgstream"; version = "0.1.0.3"; sha256 = "8f694b3f0e537fe61ae4d9904d4200f0c4e0c4010583b6e25157a481e2d66a7d"; + revision = "1"; + editedCabalFile = "6b08ae7064272e58cb3d6cd8df606d3d376de019febcffd042f8bbded7300426"; libraryHaskellDepends = [ async attoparsec base blaze-builder bytestring conduit conduit-extra deepseq mtl parallel postgresql-binary @@ -144586,7 +146434,7 @@ self: { uuid vector ]; jailbreak = true; - description = "Elsen Accelerated Computing Engine"; + description = "Streaming Postgres bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -144655,6 +146503,27 @@ 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.1"; + sha256 = "ccd94c94aa1c9b2bc435d49ba8c6049f8e747edd2c766c748b794081771f0b29"; + 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 + ]; + description = "ghci debug viewer with simple editor"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { @@ -145024,10 +146893,8 @@ self: { }: mkDerivation { pname = "pinch"; - version = "0.1.0.1"; - sha256 = "ed3ddee8deb594279d6759170144d23a445a49e93c5562da13322d6005ef58c7"; - revision = "1"; - editedCabalFile = "59a14772df78b19d44944e872c557184b631b29dcd60c478fceb33a7bc8e9696"; + version = "0.1.0.2"; + sha256 = "39add08af0cea1f818708fc69ecab07112b04aed575ab2724ced55e13ddf02ea"; libraryHaskellDepends = [ array base bytestring containers deepseq hashable text unordered-containers vector @@ -145036,24 +146903,46 @@ self: { base bytestring containers hspec hspec-discover QuickCheck text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/abhinav/pinch"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; + "pinch_0_2_0_0" = callPackage + ({ mkDerivation, array, base, bytestring, containers, deepseq + , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text + , unordered-containers, vector + }: + mkDerivation { + pname = "pinch"; + version = "0.2.0.0"; + sha256 = "6f37594c6df1fb0539c3d44413db57869b5d450a201655141784c01c177dc5aa"; + libraryHaskellDepends = [ + array base bytestring containers deepseq ghc-prim hashable text + unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers hspec hspec-discover QuickCheck text + unordered-containers vector + ]; + homepage = "https://github.com/abhinav/pinch"; + description = "An alternative implementation of Thrift for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pinchot" = callPackage - ({ mkDerivation, base, containers, Earley, template-haskell + ({ mkDerivation, base, containers, Earley, lens, template-haskell , transformers }: mkDerivation { pname = "pinchot"; - version = "0.2.0.0"; - sha256 = "292bf5416f7fee0573aec8ca989704b422f50957afebd3098b1f2f953e4d3805"; + version = "0.6.0.0"; + sha256 = "53cada3eace3bd2ffa297944adb1260ad71ebd8761defe0fd67053327e2d75a4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers Earley template-haskell transformers + base containers Earley lens template-haskell transformers ]; homepage = "http://www.github.com/massysett/pinchot"; description = "Build parsers and ASTs for context-free grammars"; @@ -145201,7 +147090,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 }: @@ -145213,6 +147102,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; @@ -145384,8 +147292,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 ]; @@ -145489,7 +147397,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"; @@ -145499,6 +147407,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 @@ -145984,6 +147905,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pipes-transduce" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, comonad, conceit + , containers, doctest, foldl, free, lens-family-core + , monoid-subclasses, pipes, pipes-bytestring, pipes-concurrency + , pipes-group, pipes-parse, pipes-safe, pipes-text, semigroupoids + , semigroups, tasty, tasty-hunit, text, transformers, void + }: + mkDerivation { + pname = "pipes-transduce"; + version = "0.1.0.0"; + sha256 = "b6b2974613f9574a76eb54211fc6702df311fcb0e0737b03e35946df0be04182"; + libraryHaskellDepends = [ + base bifunctors bytestring comonad conceit containers foldl free + lens-family-core monoid-subclasses pipes pipes-bytestring + pipes-concurrency pipes-group pipes-parse pipes-safe pipes-text + semigroupoids semigroups text transformers void + ]; + testHaskellDepends = [ + base doctest foldl free monoid-subclasses pipes tasty tasty-hunit + text + ]; + description = "Interfacing pipes with foldl folds"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pipes-vector" = callPackage ({ mkDerivation, base, monad-primitive, pipes, primitive , transformers, vector @@ -146170,6 +148116,28 @@ self: { license = "GPL"; }) {}; + "pkcs10" = callPackage + ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base + , bytestring, cryptonite, pem, QuickCheck, tasty, tasty-hunit + , tasty-quickcheck, x509 + }: + mkDerivation { + pname = "pkcs10"; + version = "0.1.0.4"; + sha256 = "8d073426641e1cad88f7c40d7448b6fd2363765554ff89ef75519f96b07e7ba4"; + libraryHaskellDepends = [ + asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem + x509 + ]; + testHaskellDepends = [ + asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem + QuickCheck tasty tasty-hunit tasty-quickcheck x509 + ]; + homepage = "https://github.com/fcomb/pkcs10-hs#readme"; + description = "PKCS#10 library"; + license = stdenv.lib.licenses.asl20; + }) {}; + "pkcs7" = callPackage ({ mkDerivation, base, bytestring, Cabal, HUnit, QuickCheck }: mkDerivation { @@ -146283,6 +148251,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; @@ -146299,6 +148268,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "plist-buddy" = callPackage + ({ mkDerivation, base, base16-bytestring, base64-bytestring + , bytestring, cryptohash, directory, hspec, mtl, posix-pty, process + , QuickCheck, text, time, xml + }: + mkDerivation { + pname = "plist-buddy"; + version = "0.1.0.0"; + sha256 = "481cb13bacb3a0e5a9eee75bd78b793b30b048140d3d7a19eabc9ef6b33cc774"; + libraryHaskellDepends = [ + base base16-bytestring base64-bytestring bytestring cryptohash + directory mtl posix-pty process text time xml + ]; + testHaskellDepends = [ + base bytestring directory hspec mtl posix-pty process QuickCheck + text time + ]; + description = "Remote monad for editing plists"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "plivo" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, errors , http-streams, http-types, io-streams, network-uri, old-locale @@ -146361,6 +148351,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; @@ -146371,8 +148362,8 @@ self: { ({ mkDerivation, base, glib, gtk, hmatrix, mtl, plot, process }: mkDerivation { pname = "plot-gtk"; - version = "0.2.0.3"; - sha256 = "fe433cdb56b1585d3fc94b51d60324a05f5f9419d861303986336e5889c1fefe"; + version = "0.2.0.4"; + sha256 = "9c0a445162ae66c2badd8b6b0a760f5ee4ac4861852764eb4a550787de2c07bb"; libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; @@ -146571,8 +148562,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 ]; @@ -146772,8 +148763,8 @@ self: { }: mkDerivation { pname = "pointfree"; - version = "1.1"; - sha256 = "8e153171438680bb87b32283233eea2b1ba69406b15dc7c5a1d2a0b891557c52"; + version = "1.1.1.1"; + sha256 = "b7c12470eab0a9390f2de69f8860296cb7260ce57a40cb868aec717720479e7a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -146796,8 +148787,8 @@ self: { }: mkDerivation { pname = "pointful"; - version = "1.0.6"; - sha256 = "13f3e2a07a6ee08265607149918ae8436e7537dbeb32de56a1cc3c2286f72c94"; + version = "1.0.7"; + sha256 = "4a884725d0e4e5771ae1d653fd1b4948ccd8d290910a22a1318bb32a53fcef15"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -147166,12 +149157,11 @@ self: { ({ mkDerivation, base, containers, deepseq, polyparse, tagsoup }: mkDerivation { pname = "polysoup"; - version = "0.6"; - sha256 = "e2fabbb647d28e07ce21f91f5cbecfc3f5fcabdd1a8299ec4b5748c54faff4b0"; + version = "0.6.2"; + sha256 = "bdb28b4e47cba223a9c9f3c3454b87e3210cdcd67af2cf570edcd4d8bc84e295"; libraryHaskellDepends = [ base containers deepseq polyparse tagsoup ]; - jailbreak = true; homepage = "https://github.com/kawu/polysoup"; description = "Online XML parsing with polyparse and tagsoup"; license = stdenv.lib.licenses.bsd3; @@ -147251,8 +149241,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 @@ -147401,6 +149391,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; @@ -147752,7 +149743,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 @@ -147774,9 +149765,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 @@ -147799,11 +149791,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 @@ -147974,28 +149965,6 @@ self: { }) {}; "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, text, time, time-locale-compat - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.8"; - sha256 = "4ede410d51b86429f98b2a8fd61a49441df1030ef1e50444c841ea2ebbcb7962"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - time-locale-compat - ]; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "postgresql-schema_0_1_9" = callPackage ({ mkDerivation, base, basic-prelude, optparse-applicative , postgresql-simple, shelly, text, time, time-locale-compat }: @@ -148015,7 +149984,6 @@ self: { homepage = "https://github.com/mfine/postgresql-schema"; description = "PostgreSQL Schema Management"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-simple_0_4_8_0" = callPackage @@ -148105,8 +150073,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 @@ -148268,6 +150236,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; @@ -148545,17 +150514,23 @@ self: { }) {}; "pred-trie" = callPackage - ({ mkDerivation, base, composition-extra, containers, mtl - , QuickCheck, semigroups, tries + ({ mkDerivation, base, composition-extra, deepseq, hashable, mtl + , QuickCheck, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, tries, unordered-containers }: mkDerivation { pname = "pred-trie"; - version = "0.3.0"; - sha256 = "3ba01d64c41d8593d7fa84168879cf87398711c1b4d732866f87663958a70f38"; + version = "0.4.0"; + sha256 = "38e69ebc2be0a48d62949214a86b29a2657ca5cc0b99d14e681184318ee9689c"; libraryHaskellDepends = [ - base composition-extra containers mtl QuickCheck semigroups tries + base composition-extra hashable mtl QuickCheck semigroups tries + unordered-containers + ]; + testHaskellDepends = [ + base composition-extra deepseq hashable mtl QuickCheck + quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck + tries unordered-containers ]; - doCheck = false; description = "Predicative tries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -148760,8 +150735,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"; @@ -149211,6 +151186,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"; @@ -150042,6 +152019,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "projectroot" = callPackage + ({ mkDerivation, base, directory, hspec, QuickCheck }: + mkDerivation { + pname = "projectroot"; + version = "0.2.0.1"; + sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; + libraryHaskellDepends = [ base directory ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/yamadapc/haskell-projectroot"; + description = "Bindings to the projectroot C logic"; + license = stdenv.lib.licenses.mit; + }) {}; + "prolog" = callPackage ({ mkDerivation, base, containers, mtl, parsec, syb , template-haskell, th-lift, transformers @@ -150212,8 +152202,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "2.15.0"; - sha256 = "93899ba66749337382158cbb9c2289341eb8d104d26b47dc05c71fe68ba8f53e"; + version = "2.15.1"; + sha256 = "44931af0094e7831910dd691687c5ef1bff7553e327cc95dcbf857cf463c8b9e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -150441,7 +152431,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers" = callPackage + "protocol-buffers_2_1_9" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string }: @@ -150456,6 +152446,24 @@ self: { homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "protocol-buffers" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , directory, filepath, mtl, parsec, syb, utf8-string + }: + mkDerivation { + pname = "protocol-buffers"; + version = "2.1.12"; + sha256 = "c863ce1729a4b8e8f5698f990942f1ddf569527893adb79b170a322eb3b8554e"; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath mtl + parsec syb utf8-string + ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; }) {}; "protocol-buffers-descriptor_2_1_4" = callPackage @@ -150522,7 +152530,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor" = callPackage + "protocol-buffers-descriptor_2_1_9" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -150531,6 +152539,22 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; + jailbreak = true; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "protocol-buffers-descriptor" = callPackage + ({ mkDerivation, base, bytestring, containers, protocol-buffers }: + mkDerivation { + pname = "protocol-buffers-descriptor"; + version = "2.1.12"; + sha256 = "b8898165f0915b2b2865f6373c79d8c71c0fcbaa139c1f319a7d7f9168fc5c61"; + libraryHaskellDepends = [ + base bytestring containers protocol-buffers + ]; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; @@ -150721,6 +152745,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; @@ -150770,8 +152795,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20151129"; - sha256 = "a1b6dfca39241f124f2174dbf9368551e9d3bec1e52e9db0fc01ca98f1c2e06c"; + version = "0.20151212"; + sha256 = "7c45ec12c38607dea637a87f1e5de578e1d398f93377ad9e108afa0f53a16512"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -151324,6 +153349,7 @@ self: { optparse-applicative parsec process time transformers transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; @@ -151519,8 +153545,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 = [ @@ -152222,6 +154248,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; @@ -153382,6 +155409,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; @@ -153465,6 +155494,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; @@ -153556,7 +155586,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "raw-strings-qq" = callPackage + "raw-strings-qq_1_0_2" = callPackage ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "raw-strings-qq"; @@ -153566,6 +155596,20 @@ self: { homepage = "https://github.com/23Skidoo/raw-strings-qq"; description = "Raw string literals for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "raw-strings-qq" = callPackage + ({ mkDerivation, base, HUnit, template-haskell }: + mkDerivation { + pname = "raw-strings-qq"; + version = "1.1"; + sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base HUnit ]; + homepage = "https://github.com/23Skidoo/raw-strings-qq"; + description = "Raw string literals for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "rawstring-qm" = callPackage @@ -153661,8 +155705,8 @@ self: { }: mkDerivation { pname = "rdf4h"; - version = "1.3.5"; - sha256 = "dfbe6dd5f6e26e7af696981bd2a9b51a601ba86779cbeb9da67552d923160f7e"; + version = "1.3.6"; + sha256 = "59b3f7a1893b1ec2c4ce967dd98d1dd1541e57ce1a697810d3b8fec27d21b1da"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -153861,8 +155905,8 @@ self: { }: mkDerivation { pname = "reactive-banana"; - version = "1.0.0.0"; - sha256 = "8fd90599b197d6df46c16bdcc308b6577a6a677fb77274f88401cb383b5016ec"; + version = "1.0.0.1"; + sha256 = "a2f50eff5ddce60303fa365a9d24c9062877e59c0f98bdfd84c2f5d71e16340b"; libraryHaskellDepends = [ base containers hashable pqueue transformers unordered-containers vault @@ -154567,20 +156611,19 @@ self: { ({ mkDerivation, base, bytestring, bytestring-mmap, clock , criterion, deepseq, exceptions, filepath, gitrev, loop, mtl , optparse-applicative, primitive, profunctors, QuickCheck, random - , reedsolomon, statistics, tasty, tasty-ant-xml, tasty-hunit - , tasty-quickcheck, vector + , statistics, tasty, tasty-ant-xml, tasty-hunit, tasty-quickcheck + , vector }: mkDerivation { pname = "reedsolomon"; - version = "0.0.2.0"; - sha256 = "f1e61e07374a43ba48d2e8a152a451328ea343432009681c80a87cce8cd85d1c"; + version = "0.0.3.0"; + sha256 = "553b52e35c3d8890673ec7053dde4d2187b121ac6191019a47477a38b72b902e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring exceptions gitrev loop mtl primitive profunctors vector ]; - librarySystemDepends = [ reedsolomon ]; executableHaskellDepends = [ base bytestring bytestring-mmap clock criterion deepseq filepath optparse-applicative random statistics vector @@ -154594,7 +156637,7 @@ self: { description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; - }) {reedsolomon = null;}; + }) {}; "reenact" = callPackage ({ mkDerivation, base, hamid, HCodecs, stm, time, vector-space }: @@ -154640,6 +156683,7 @@ self: { version = "0.4"; sha256 = "26c9d963f1ff3bb28840465d16a390ba13f0a3ded8f473d7c890a174b6910ce5"; libraryHaskellDepends = [ base stm transformers ]; + doHaddock = false; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "A type class for monads with references using functional dependencies"; license = stdenv.lib.licenses.bsd3; @@ -154903,6 +156947,7 @@ self: { testHaskellDepends = [ base containers dependent-map MemoTrie mtl ref-tf ]; + jailbreak = true; homepage = "https://github.com/ryantrinkle/reflex"; description = "Higher-order Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; @@ -154920,6 +156965,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; @@ -154983,6 +157029,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; @@ -155011,6 +157058,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; @@ -155028,6 +157076,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; @@ -155037,11 +157086,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; }) {}; @@ -155049,8 +157098,10 @@ 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"; + revision = "1"; + editedCabalFile = "abe598582e2e9627ce899e3fe47c1d495da157d0059115aca220beecee6a05f1"; libraryHaskellDepends = [ base blaze-html blaze-markup reform text ]; @@ -155063,8 +157114,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 ]; @@ -155079,8 +157130,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 ]; @@ -155093,8 +157144,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"; @@ -155139,7 +157190,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "regex-applicative" = callPackage + "regex-applicative_0_3_2_1" = callPackage ({ mkDerivation, base, containers, smallcheck, tasty, tasty-hunit , tasty-smallcheck, transformers }: @@ -155155,6 +157206,25 @@ self: { homepage = "https://github.com/feuerbach/regex-applicative"; description = "Regex-based parsing with applicative interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "regex-applicative" = callPackage + ({ mkDerivation, base, containers, smallcheck, tasty, tasty-hunit + , tasty-smallcheck, transformers + }: + mkDerivation { + pname = "regex-applicative"; + version = "0.3.3"; + sha256 = "6659a2cc1c8137d77ef57f75027723b075d473354d935233d98b1ae1b03c3be6"; + libraryHaskellDepends = [ base containers transformers ]; + testHaskellDepends = [ + base containers smallcheck tasty tasty-hunit tasty-smallcheck + transformers + ]; + homepage = "https://github.com/feuerbach/regex-applicative"; + description = "Regex-based parsing with applicative interface"; + license = stdenv.lib.licenses.mit; }) {}; "regex-applicative-text" = callPackage @@ -155269,7 +157339,6 @@ self: { base containers logict mtl regex-tdfa sbv stream-monad text ]; executableHaskellDepends = [ base containers mtl regex-tdfa sbv ]; - jailbreak = true; homepage = "https://github.com/audreyt/regex-genex"; description = "From a regex, generate all possible strings it can match"; license = "unknown"; @@ -156599,17 +158668,16 @@ self: { "repl-toolkit" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, directory , exceptions, filepath, functor-monadic, ListLike, listsafe - , monad-loops, mtl, numericpeano, parsec, semigroupoids, text - , transformers + , monad-loops, mtl, parsec, semigroupoids, text, transformers }: mkDerivation { pname = "repl-toolkit"; - version = "0.5.0.0"; - sha256 = "781353e8eccb38ce0d068f754852d5d00e2f829a61d1e89660bdba4fc6811254"; + version = "1.0.0.1"; + sha256 = "f6b6c55a73c4408381204b22edf05a8b2681eef23ec7631c2a919b28609be79a"; libraryHaskellDepends = [ aeson base bytestring data-default directory exceptions filepath - functor-monadic ListLike listsafe monad-loops mtl numericpeano - parsec semigroupoids text transformers + functor-monadic ListLike listsafe monad-loops mtl parsec + semigroupoids text transformers ]; homepage = "https://github.com/ombocomp/repl-toolkit"; description = "Toolkit for quickly whipping up config files and command-line interfaces"; @@ -156888,17 +158956,17 @@ self: { "resolve-trivial-conflicts" = callPackage ({ mkDerivation, ansi-terminal, base, base-compat, Diff, directory - , filepath, mtl, process, unix + , filepath, mtl, optparse-applicative, process, unix }: mkDerivation { pname = "resolve-trivial-conflicts"; - version = "0.3.1.2"; - sha256 = "067c40b2d83a5804285065443659606a1188542d80615c009dc228d68a55dee1"; + version = "0.3.2.1"; + sha256 = "692b81bf392cadaa29c2257e272071e79a58f010b0e947db85620e3321ba0865"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - ansi-terminal base base-compat Diff directory filepath mtl process - unix + ansi-terminal base base-compat Diff directory filepath mtl + optparse-applicative process unix ]; homepage = "https://github.com/ElastiLotem/resolve-trivial-conflicts"; description = "Remove trivial conflict markers in a git repository"; @@ -157419,6 +159487,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; @@ -158315,8 +160384,8 @@ self: { }: mkDerivation { pname = "rethinkdb"; - version = "2.2.0.0"; - sha256 = "a3e629d72bb63150f764c33e2fe507391ee1e77bd4097114fbca73a5d24ca429"; + version = "2.2.0.2"; + sha256 = "91c1ea290efa7f9336ef824832545cce401466cc773cde38ea2a8e0a763d0eb5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -158326,7 +160395,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; @@ -158540,6 +160608,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"; @@ -158561,7 +160630,7 @@ self: { license = stdenv.lib.licenses.mpl20; }) {}; - "rev-state" = callPackage + "rev-state_0_1" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "rev-state"; @@ -158571,6 +160640,20 @@ 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" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "rev-state"; + version = "0.1.1"; + sha256 = "844626648793fd5a939e85aa58a52bc3a9511398755b2012bb3e56164cfb9934"; + libraryHaskellDepends = [ base mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/DanBurton/rev-state#readme"; + description = "Reverse State monad transformer"; + license = stdenv.lib.licenses.bsd3; }) {}; "revdectime" = callPackage @@ -158742,23 +160825,25 @@ 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"; @@ -159354,23 +161439,21 @@ self: { }) {}; "rose-trees" = callPackage - ({ mkDerivation, base, containers, criterion, mtl, QuickCheck + ({ mkDerivation, base, containers, deepseq, mtl, QuickCheck , quickcheck-instances, semigroupoids, semigroups, sets, tasty , tasty-quickcheck, witherable }: mkDerivation { pname = "rose-trees"; - version = "0.0.2"; - sha256 = "4a8a9c8afc4bff994e1bd8230ba6534ccddcca4f5718507a99c1fbd491cd7fde"; - revision = "1"; - editedCabalFile = "43c7fc14a19af14fc5c244eeda5efea6e7279337c31580d7bd95b3cfa4e8bfab"; + version = "0.0.3"; + sha256 = "f373600456dc69e3d2acf3abd949781a7b0365b412084f98a1ca367cae01ee33"; libraryHaskellDepends = [ - base containers criterion mtl QuickCheck quickcheck-instances + base containers deepseq mtl QuickCheck quickcheck-instances semigroupoids semigroups sets witherable ]; testHaskellDepends = [ - base containers QuickCheck quickcheck-instances semigroupoids - semigroups sets tasty tasty-quickcheck witherable + base containers deepseq QuickCheck quickcheck-instances + semigroupoids semigroups sets tasty tasty-quickcheck witherable ]; description = "A collection of rose tree structures"; license = stdenv.lib.licenses.bsd3; @@ -160996,8 +163079,8 @@ self: { }: mkDerivation { pname = "sbp"; - version = "0.52.0"; - sha256 = "b4c4629044e230c950b5a71c7baf1226bec6ea68415d9e9c82b6c69f8fbddd7e"; + version = "0.52.1"; + sha256 = "72e53ab77cf026fc5bde9899a5a49a35bbe6a2e3853022b9d62e238eee8450f6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161044,7 +163127,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sbv" = callPackage + "sbv_4_4" = callPackage ({ mkDerivation, array, async, base, containers, crackNum , data-binary-ieee754, deepseq, directory, filepath, HUnit, mtl , old-time, pretty, process, QuickCheck, random, syb @@ -161067,17 +163150,18 @@ self: { homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sbv_5_6" = callPackage + "sbv" = 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 = [ @@ -161085,10 +163169,15 @@ 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbvPlugin" = callPackage @@ -161098,17 +163187,16 @@ self: { }: mkDerivation { pname = "sbvPlugin"; - version = "0.1"; - sha256 = "08fc5562e6919ddb8db1fa8b5c16079f9832c3d755d58e987f25945f36903c0b"; + version = "0.5"; + sha256 = "7675dfa9a1d1fc8030f04b2eb595601b39090f04c89f5b9b9d5e297588d0b85d"; libraryHaskellDepends = [ base containers ghc ghc-prim mtl sbv template-haskell ]; testHaskellDepends = [ base directory filepath process tasty tasty-golden ]; - jailbreak = true; homepage = "http://github.com/LeventErkok/sbvPlugin"; - description = "Analyze Haskell expressions using SBV/SMT"; + description = "Formally prove properties of Haskell programs using SBV/SMT"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -162067,6 +164155,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; @@ -162179,8 +164268,8 @@ self: { }: mkDerivation { pname = "scroll"; - version = "1.20150323"; - sha256 = "0dc03b56be5bd2724a3f5e5fff2905587e68032767b23f927b52a462f1dedf1a"; + version = "1.20151219"; + sha256 = "4f91c20e645ee715c9d3549fffffcc58943bee4fb3ba2e622e0189ccb70dd050"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -162380,15 +164469,14 @@ self: { }: mkDerivation { pname = "sdl2-compositor"; - version = "1.2.0.1"; - sha256 = "55d3242e8b119b2cd0b4a5d198fb52c38bf36931aef30b6d250334373931a4a3"; + version = "1.2.0.3"; + sha256 = "c2f4ee694f2ee8444b6e2b5af51f0a86f415745181e7734e83dcc129cd655d12"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base lens linear lrucache QuickCheck sdl2 sdl2-ttf StateVar stm text transformers ]; - jailbreak = true; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -162438,20 +164526,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 @@ -163170,23 +165259,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 }: @@ -163201,7 +165273,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 @@ -163700,6 +165771,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 @@ -163741,6 +165838,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; @@ -163768,6 +165866,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; @@ -163795,6 +165894,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; @@ -164208,13 +166308,30 @@ 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; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "servant-github" = callPackage + ({ mkDerivation, aeson, base, either, hspec, http-link-header + , QuickCheck, servant, servant-client, text, transformers + }: + mkDerivation { + pname = "servant-github"; + version = "0.1.0.2"; + sha256 = "3d1c03791297bcde37c7ef369b0e672d00122ac17b4f176c6a3fa52a9dba4cd8"; + libraryHaskellDepends = [ + aeson base either http-link-header servant servant-client text + transformers + ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/finlay/servant-github#readme"; + description = "Bindings to GitHub API using servant"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-jquery_0_2_2_1" = callPackage ({ mkDerivation, aeson, base, filepath, hspec, language-ecmascript , lens, servant, servant-server, stm, transformers, warp @@ -164528,6 +166645,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; @@ -164560,6 +166678,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; @@ -164592,6 +166711,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; @@ -164624,6 +166744,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; @@ -165093,6 +167214,8 @@ self: { pname = "sets"; version = "0.0.5"; sha256 = "78772618d3a85cbf91a20f0289eb833c4304d6a93c78bb266c38b60e85d2717b"; + revision = "1"; + editedCabalFile = "6a3f99b425c6a4ed373e1f1d2836a40b09e462f4e2744b76227f27a133acb34e"; libraryHaskellDepends = [ base commutative composition containers contravariant hashable invariant keys mtl QuickCheck semigroupoids semigroups transformers @@ -165125,8 +167248,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 ]; @@ -166016,6 +168139,8 @@ self: { pname = "shakespeare"; version = "2.0.7"; sha256 = "7a567d6effb68c7b39903fb1fccee54e6a1222a4746b5135da5623c406281668"; + revision = "1"; + editedCabalFile = "466ed38d1ca4b1fcc297793cfb3508c29b1ddb9714432c2f872ce7b656b1c57c"; libraryHaskellDepends = [ aeson base blaze-html blaze-markup bytestring containers directory exceptions ghc-prim parsec process scientific template-haskell text @@ -166408,6 +168533,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"; @@ -166577,7 +168703,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shelly" = callPackage + "shelly_1_6_4_1" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async , lifted-base, monad-control, mtl, process, system-fileio @@ -166606,6 +168732,38 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shelly" = callPackage + ({ mkDerivation, async, base, bytestring, containers, directory + , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async + , lifted-base, monad-control, mtl, process, system-fileio + , system-filepath, text, time, transformers, transformers-base + , unix-compat + }: + mkDerivation { + pname = "shelly"; + version = "1.6.5"; + sha256 = "bdfd09b01f3de8e7e58e98591ab1a42ad5a74308ff29f19acd16d7cc85b71cdc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring containers directory enclosed-exceptions + exceptions lifted-async lifted-base monad-control mtl process + system-fileio system-filepath text time transformers + transformers-base unix-compat + ]; + testHaskellDepends = [ + async base bytestring containers directory enclosed-exceptions + exceptions hspec HUnit lifted-async lifted-base monad-control mtl + process system-fileio system-filepath text time transformers + transformers-base unix-compat + ]; + doCheck = false; + homepage = "https://github.com/yesodweb/Shelly.hs"; + description = "shell-like (systems) programming in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "shelly-extra" = callPackage @@ -167564,6 +169722,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; @@ -167667,10 +169826,8 @@ self: { ({ mkDerivation, base, bytestring, simpleirc }: mkDerivation { pname = "simpleirc-lens"; - version = "0.1.0.0"; - sha256 = "c53316ceaa2a17ad21b086c2c2dda7fb0ef8e7c45cd9af3f7aaf1f886efe2453"; - revision = "2"; - editedCabalFile = "618750d5b230316747d59d784bd40481a4404443316fc9c3a73e1349e3d10975"; + version = "0.2.0.0"; + sha256 = "7c09809b424c5cbee69d38d516d88eb21dcfb11ae31a06c2673a284f87a5bfb2"; libraryHaskellDepends = [ base bytestring simpleirc ]; homepage = "https://github.com/relrod/simpleirc-lens"; description = "Lenses for simpleirc types"; @@ -168261,6 +170418,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; @@ -168504,21 +170662,22 @@ self: { ({ mkDerivation, aeson, ansi-terminal, attoparsec, base , bloomfilter, bytestring, conduit, conduit-extra, containers , directory, filepath, http-conduit, http-types - , optparse-applicative, stringsearch, terminal-size, text - , transformers + , optparse-applicative, resourcet, stringsearch, terminal-size + , text, transformers }: mkDerivation { pname = "sloane"; - version = "4.1.0"; - sha256 = "3640b64b30dbc01fc1c1dddad0334a1930c6a708b80c8d91f03adee0bf60b17a"; + version = "4.2.0"; + sha256 = "cd2bf21a9ea502ded331780b074991e4b5e06e7b276a6874c9b921bc70ba3595"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal attoparsec base bloomfilter bytestring conduit conduit-extra containers directory filepath http-conduit http-types - optparse-applicative stringsearch terminal-size text transformers + optparse-applicative resourcet stringsearch terminal-size text + transformers ]; - homepage = "http://github.com/akc/sloane"; + homepage = "http://akc.is/sloane"; description = "A command line interface to Sloane's OEIS"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -168552,6 +170711,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "slug" = callPackage + ({ mkDerivation, aeson, base, exceptions, path-pieces, persistent + , QuickCheck, test-framework, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "slug"; + version = "0.1.1"; + sha256 = "4512ca905017cc32a03e757b4cfc21e232dd35c671a068615b89de01d80bcec2"; + libraryHaskellDepends = [ + aeson base exceptions path-pieces persistent text + ]; + testHaskellDepends = [ + base exceptions path-pieces QuickCheck test-framework + test-framework-quickcheck2 text + ]; + homepage = "https://github.com/mrkkrp/slug"; + description = "Type-safe slugs for Yesod ecosystem"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "smallarray" = callPackage ({ mkDerivation, base, bytestring, deepseq, hashable }: mkDerivation { @@ -168807,6 +170986,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; @@ -169193,8 +171373,8 @@ self: { pname = "snap"; version = "0.14.0.6"; sha256 = "fa9ffc7bf5c6729f7e204daecd50765a220a0ffc2feaf3f6b29977370d8db617"; - revision = "2"; - editedCabalFile = "eff36a949ff3546539accd83c431cd68bb3dca38c2f24db6f99302c7d76ccd4c"; + revision = "3"; + editedCabalFile = "a1c4d4668cc563516ac38acfe5b869eeff5cf98042d960593ab08e1ded09fe1d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169970,7 +172150,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 }: @@ -169982,6 +172162,25 @@ 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" = callPackage + ({ mkDerivation, aeson, base, bytestring, configurator, directory + , fay, filepath, mtl, snap, snap-core, transformers + }: + mkDerivation { + pname = "snaplet-fay"; + version = "0.3.3.13"; + sha256 = "39810748b7177b45a0fab785e48ac497d81587e48dde9dc8ad75e8d704bdda3f"; + libraryHaskellDepends = [ + aeson base bytestring configurator directory fay filepath mtl snap + snap-core transformers + ]; homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -170984,6 +173183,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; @@ -171267,7 +173467,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sourcemap" = callPackage + "sourcemap_0_1_3_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, process, text , unordered-containers, utf8-string }: @@ -171283,16 +173483,17 @@ self: { ]; description = "Implementation of source maps as proposed by Google and Mozilla"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sourcemap_0_1_5" = callPackage + "sourcemap" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, process, text , unordered-containers, utf8-string }: 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 @@ -171300,9 +173501,9 @@ self: { testHaskellDepends = [ aeson base bytestring process text unordered-containers utf8-string ]; + doCheck = false; description = "Implementation of source maps as proposed by Google and Mozilla"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sousit" = callPackage @@ -172069,8 +174270,8 @@ self: { }: mkDerivation { pname = "splot"; - version = "0.3.12"; - sha256 = "36260828f0f616fad7b99eb6b53ab4ee6136b53683b264e88635ff3ca3b86576"; + version = "0.3.14"; + sha256 = "77b8b2bbe99a21ac0c5b2f7b7cc5cf079302501ebebc4b77fa557ab071e178ed"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -173143,6 +175344,7 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -173157,7 +175359,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack" = callPackage + "stack_0_1_10_0" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, bifunctors, binary , binary-tagged, blaze-builder, byteable, bytestring, Cabal @@ -173213,6 +175415,147 @@ self: { monad-logger optparse-applicative path process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; + doCheck = false; + enableSharedExecutables = false; + postInstall = '' + exe=$out/bin/stack + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack + ''; + homepage = "http://haskellstack.org"; + description = "The Haskell Tool Stack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + + "stack_0_1_10_1" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base + , base16-bytestring, base64-bytestring, bifunctors, binary + , binary-tagged, blaze-builder, byteable, bytestring, Cabal + , conduit, conduit-combinators, conduit-extra, containers + , cryptohash, cryptohash-conduit, deepseq, directory, edit-distance + , either, email-validate, enclosed-exceptions, exceptions, extra + , fast-logger, file-embed, filelock, filepath, fsnotify, gitrev + , hashable, hastache, hpc, hspec, http-client, http-client-tls + , http-conduit, http-types, lifted-base, monad-control + , monad-logger, monad-loops, mtl, old-locale, optparse-applicative + , optparse-simple, path, persistent, persistent-sqlite + , persistent-template, pretty, process, project-template + , QuickCheck, resourcet, retry, safe, semigroups, split, stm + , streaming-commons, tar, template-haskell, temporary, text, time + , transformers, transformers-base, unix, unix-compat + , unordered-containers, uuid, vector, vector-binary-instances, void + , word8, yaml, zlib + }: + mkDerivation { + pname = "stack"; + version = "0.1.10.1"; + sha256 = "03d3f1cd03cbb70364f013aa6ccaefa07397a76984bc8b7ce51376e0bdc51a7c"; + revision = "3"; + editedCabalFile = "bc374c4faac1181394f1dfecfda9bf3d3e10176c2ff19410a36d12795a68d05b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal async attoparsec base base16-bytestring + base64-bytestring bifunctors binary binary-tagged blaze-builder + byteable bytestring Cabal conduit conduit-combinators conduit-extra + containers cryptohash cryptohash-conduit deepseq directory + edit-distance either email-validate enclosed-exceptions exceptions + extra fast-logger file-embed filelock filepath fsnotify hashable + hastache hpc http-client http-client-tls http-conduit http-types + lifted-base monad-control monad-logger monad-loops mtl old-locale + optparse-applicative path persistent persistent-sqlite + persistent-template pretty process project-template resourcet retry + safe semigroups split stm streaming-commons tar template-haskell + temporary text time transformers transformers-base unix unix-compat + unordered-containers uuid vector vector-binary-instances void word8 + yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal conduit containers directory either + exceptions filelock filepath gitrev hashable http-client + http-conduit lifted-base monad-control monad-logger mtl old-locale + optparse-applicative optparse-simple path process resourcet split + text transformers unordered-containers + ]; + testHaskellDepends = [ + async base bytestring Cabal conduit conduit-extra containers + cryptohash directory exceptions filepath hspec http-conduit + monad-logger optparse-applicative path process QuickCheck resourcet + retry temporary text transformers unix-compat + ]; + jailbreak = true; + doCheck = false; + enableSharedExecutables = false; + postInstall = '' + exe=$out/bin/stack + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack + ''; + homepage = "http://haskellstack.org"; + description = "The Haskell Tool Stack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + + "stack" = callPackage + ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base + , base16-bytestring, base64-bytestring, bifunctors, binary + , binary-tagged, blaze-builder, byteable, bytestring, Cabal + , conduit, conduit-combinators, conduit-extra, containers + , cryptohash, cryptohash-conduit, deepseq, directory, edit-distance + , either, email-validate, enclosed-exceptions, errors, exceptions + , extra, fast-logger, file-embed, filelock, filepath, fsnotify + , gitrev, hashable, hastache, hpc, hspec, http-client + , http-client-tls, http-conduit, http-types, lifted-base + , monad-control, monad-logger, monad-loops, mtl, old-locale + , optparse-applicative, optparse-simple, path, persistent + , persistent-sqlite, persistent-template, pretty, process + , project-template, QuickCheck, resourcet, retry, safe, semigroups + , split, stm, streaming-commons, tar, template-haskell, temporary + , text, text-binary, time, transformers, transformers-base, unix + , unix-compat, unordered-containers, uuid, vector + , vector-binary-instances, void, word8, yaml, zlib + }: + mkDerivation { + pname = "stack"; + version = "1.0.0"; + sha256 = "cd2f606d390fe521b6ba0794de87edcba64c4af66856af09594907c2b4f4751d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal async attoparsec base base16-bytestring + base64-bytestring bifunctors binary binary-tagged blaze-builder + byteable bytestring Cabal conduit conduit-combinators conduit-extra + containers cryptohash cryptohash-conduit deepseq directory + edit-distance either email-validate enclosed-exceptions errors + exceptions extra fast-logger file-embed filelock filepath fsnotify + hashable hastache hpc http-client http-client-tls http-conduit + http-types lifted-base monad-control monad-logger monad-loops mtl + old-locale optparse-applicative path persistent persistent-sqlite + persistent-template pretty process project-template resourcet retry + safe semigroups split stm streaming-commons tar template-haskell + temporary text text-binary time transformers transformers-base unix + unix-compat unordered-containers uuid vector + vector-binary-instances void word8 yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal conduit containers directory either + exceptions filelock filepath gitrev hashable http-client + http-conduit lifted-base monad-control monad-logger mtl old-locale + optparse-applicative optparse-simple path process resourcet split + text transformers unordered-containers + ]; + testHaskellDepends = [ + async attoparsec base bytestring Cabal conduit conduit-extra + containers cryptohash directory exceptions filepath hspec + http-conduit monad-logger optparse-applicative path process + QuickCheck resourcet retry temporary text transformers unix-compat + ]; + doHaddock = false; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -173271,6 +175614,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "stack-run" = callPackage + ({ mkDerivation, ansi-terminal, base, bytestring, Cabal, conduit + , conduit-extra, directory, filepath, MissingH, projectroot + }: + mkDerivation { + pname = "stack-run"; + version = "0.1.0.0"; + sha256 = "cf128c392f5ab5fff66ae818b0cdf739767b518ba4db94b2db537490657f629d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-terminal base bytestring Cabal conduit conduit-extra directory + filepath MissingH projectroot + ]; + homepage = "https://github.com/yamadapc/stack-run"; + description = "An equivalent to cabal run for stack"; + license = stdenv.lib.licenses.mit; + }) {}; + "stack-run-auto" = callPackage ({ mkDerivation, async, base, extract-dependencies, file-modules , lens, lens-aeson, MissingH, process, stm-containers, text, time @@ -173278,8 +175640,8 @@ self: { }: mkDerivation { pname = "stack-run-auto"; - version = "0.1.0.0"; - sha256 = "2233841a0e6fc3bf7fcf38d42899a7e9d89e3f0c3e02c3eda44279d1d711d0e0"; + version = "0.1.1.0"; + sha256 = "2656adb765aa9428868443709e29b6ee0846150f43b99a797272f5ad98b10917"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -174364,6 +176726,24 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "statsd-client" = callPackage + ({ mkDerivation, base, byteable, bytestring, crypto-api, cryptohash + , digest-pure, DRBG, network, network-uri, old-time, random + , time-units + }: + mkDerivation { + pname = "statsd-client"; + version = "0.2.0.1"; + sha256 = "7ef148b3909594fe4e845a1ebc49041af5cacaf1c557b4460f117a35a59457a5"; + libraryHaskellDepends = [ + base byteable bytestring crypto-api cryptohash digest-pure DRBG + network network-uri old-time random time-units + ]; + homepage = "https://github.com/keithduncan/statsd-client"; + description = "Statsd UDP client"; + license = stdenv.lib.licenses.mit; + }) {}; + "statsd-datadog" = callPackage ({ mkDerivation, base, bytestring, monad-control, network, text , transformers-base @@ -174561,7 +176941,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm" = callPackage + "stm_2_4_4" = callPackage ({ mkDerivation, array, base }: mkDerivation { pname = "stm"; @@ -174570,6 +176950,18 @@ self: { libraryHaskellDepends = [ array base ]; description = "Software Transactional Memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stm" = callPackage + ({ mkDerivation, array, base }: + mkDerivation { + pname = "stm"; + version = "2.4.4.1"; + sha256 = "8f999095ed8d50d2056fc6e185035ee8166c50751e1af8de02ac38d382bf3384"; + libraryHaskellDepends = [ array base ]; + description = "Software Transactional Memory"; + license = stdenv.lib.licenses.bsd3; }) {}; "stm-channelize" = callPackage @@ -174716,7 +177108,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit" = callPackage + "stm-conduit_2_6_1" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -174739,13 +177131,13 @@ self: { test-framework-quickcheck2 transformers ]; doHaddock = false; - doCheck = false; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit_2_7_0" = callPackage + "stm-conduit" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -174770,7 +177162,6 @@ self: { homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-containers_0_2_4" = callPackage @@ -174918,24 +177309,6 @@ self: { }) {}; "stm-firehose" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, hspec, http-types - , HUnit, resourcet, stm, stm-chans, stm-conduit, transformers, wai - , wai-conduit, warp - }: - mkDerivation { - pname = "stm-firehose"; - version = "0.3.0"; - sha256 = "11c9d5e9d919b86efbb3cdd05e9889d3a648aae4d13c93ed0eabcc71d7452999"; - libraryHaskellDepends = [ - base blaze-builder conduit http-types resourcet stm stm-chans - stm-conduit transformers wai wai-conduit warp - ]; - testHaskellDepends = [ base hspec HUnit stm ]; - description = "Conduits and STM operations for fire hoses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "stm-firehose_0_3_0_2" = callPackage ({ mkDerivation, base, blaze-builder, conduit, hspec, http-types , HUnit, resourcet, stm, stm-chans, stm-conduit, transformers, wai , wai-conduit, warp @@ -174949,10 +177322,10 @@ 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-io-hooks" = callPackage @@ -175161,6 +177534,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; @@ -175407,14 +177781,14 @@ self: { }: mkDerivation { pname = "streaming"; - version = "0.1.3.4"; - sha256 = "1a23959815ca3396521c850df6b90f6d8941eddab67e6512634fead2c9c29c5a"; + version = "0.1.4.0"; + sha256 = "063a14c2ce512b3265ae69d45f208d4c01ca6da9325fa9e471a1fd1acd968e3c"; libraryHaskellDepends = [ base bytestring containers exceptions mmorph mtl resourcet time transformers transformers-base ]; homepage = "https://github.com/michaelt/streaming"; - description = "an elementary streaming prelude and a general stream type"; + description = "an elementary streaming prelude and general stream type"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -175424,8 +177798,8 @@ self: { }: mkDerivation { pname = "streaming-bytestring"; - version = "0.1.3.0"; - sha256 = "6573ebde6c87e608c0b82b02c25ac15094b93f1e99bd57aab275ca68d2630a13"; + version = "0.1.4.0"; + sha256 = "121f5dbbac81fd7f74bc6c1b5f3a2ee2d99d6c38c5f772442baa44c5e29d737c"; libraryHaskellDepends = [ base bytestring deepseq exceptions mmorph mtl resourcet streaming transformers transformers-base @@ -175735,17 +178109,19 @@ self: { "streaming-utils" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, http-client - , http-client-tls, json-stream, mtl, pipes, streaming + , http-client-tls, json-stream, mtl, pipes, resourcet, streaming , streaming-bytestring, transformers }: mkDerivation { pname = "streaming-utils"; - version = "0.1.3.0"; - sha256 = "f591d4e31aada0be4b0b9ac28b23a6b16d3c26db0f37b3ccb9e05239ab81e75b"; + version = "0.1.4.0"; + sha256 = "ab0c080387b29d8fd116944b560700fa37a23d38d33ab56813a64d74546de00e"; libraryHaskellDepends = [ aeson attoparsec base bytestring http-client http-client-tls - json-stream mtl pipes streaming streaming-bytestring transformers + json-stream mtl pipes resourcet streaming streaming-bytestring + transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; @@ -176203,6 +178579,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; @@ -176232,6 +178609,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; @@ -176319,6 +178697,7 @@ self: { executableHaskellDepends = [ applicative-quoters base descriptive ghc-prim haskell-src-exts text ]; + jailbreak = true; homepage = "https://github.com/chrisdone/structured-haskell-mode"; description = "Structured editing Emacs mode for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -176596,6 +178975,7 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; @@ -176626,13 +179006,14 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stylish-haskell" = callPackage + "stylish-haskell_0_5_14_3" = callPackage ({ mkDerivation, aeson, base, bytestring, cmdargs, containers , directory, filepath, haskell-src-exts, HUnit, mtl, strict, syb , test-framework, test-framework-hunit, yaml @@ -176656,12 +179037,14 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stylish-haskell_0_5_14_4" = callPackage + "stylish-haskell" = callPackage ({ mkDerivation, aeson, base, bytestring, cmdargs, containers , directory, filepath, haskell-src-exts, HUnit, mtl, strict, syb , test-framework, test-framework-hunit, yaml @@ -176685,11 +179068,9 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; - jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylized" = callPackage @@ -176756,8 +179137,8 @@ self: { }: mkDerivation { pname = "subleq-toolchain"; - version = "0.1.8.4"; - sha256 = "96ad146348d72277bb2ad567011edee12cdab4c88a8f196d758d635b0b236003"; + version = "0.1.8.5"; + sha256 = "6a993ee41a0a4b55ee0f9bde633c092d656ee053c7e12fc97b82f42b2e1babc6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers lens mtl parsec pretty ]; @@ -176816,8 +179197,8 @@ self: { }: mkDerivation { pname = "success"; - version = "0.2.2"; - sha256 = "0c1d6936db654b732c3eee92090b0454d0e0734308e07b28d52d22b25c54c859"; + version = "0.2.4"; + sha256 = "244ca46dd6b1a49ad765a36dcc1952c815ba12b33a2c3eb1c0c5e7ed1a2a3bf6"; libraryHaskellDepends = [ base monad-control mtl transformers transformers-base ]; @@ -177230,8 +179611,8 @@ self: { }: mkDerivation { pname = "svgcairo"; - version = "0.13.0.3"; - sha256 = "9fd94d9aad09a26c4b6d4abf979d68d12b7265fbc8171093db448c620df96c49"; + version = "0.13.0.4"; + sha256 = "a366bb2592d9bd398183eefc9407442cfeaddd5b39e9f898081c788c691126a6"; libraryHaskellDepends = [ base cairo glib mtl text ]; libraryPkgconfigDepends = [ librsvg ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -177337,21 +179718,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"; @@ -177520,7 +179900,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "syb" = callPackage + "syb_0_5_1" = callPackage ({ mkDerivation, base, containers, HUnit, mtl }: mkDerivation { pname = "syb"; @@ -177532,9 +179912,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"; @@ -177542,10 +179923,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 @@ -177696,8 +180077,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 = [ @@ -177790,16 +180171,17 @@ self: { "syntactic" = callPackage ({ mkDerivation, base, constraints, containers, data-hash, deepseq - , mtl, QuickCheck, tagged, tasty, tasty-golden, tasty-quickcheck - , tasty-th, template-haskell, tree-view, utf8-string + , mtl, QuickCheck, syb, tagged, tasty, tasty-golden + , tasty-quickcheck, tasty-th, template-haskell, tree-view + , utf8-string }: mkDerivation { pname = "syntactic"; - version = "3.2"; - sha256 = "ed6ec0f95c7d4a63610317fe115a0380d75a39ffa1ef35529c96ca650bd433c4"; + version = "3.4"; + sha256 = "93490ba1c33c4580187f6bf739ce43bae9dce3abee539deffc6d351769111a6e"; libraryHaskellDepends = [ - base constraints containers data-hash deepseq mtl template-haskell - tree-view + base constraints containers data-hash deepseq mtl syb + template-haskell tree-view ]; testHaskellDepends = [ base containers mtl QuickCheck tagged tasty tasty-golden @@ -178652,8 +181034,8 @@ self: { ({ mkDerivation, base, bytestring, network, transformers, unix }: mkDerivation { pname = "systemd"; - version = "1.0.0"; - sha256 = "d69fd0def965bfbd63bb6b27e74e24240d662f15dfb69d64ea6b9052018f3e82"; + version = "1.0.2"; + sha256 = "5235db71cd2ed14a77003c2c659582dee64f504f4de1af9ceab72f00af4cc2aa"; libraryHaskellDepends = [ base bytestring network transformers unix ]; @@ -178876,6 +181258,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; @@ -179179,7 +181562,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_5" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -179191,6 +181574,21 @@ self: { homepage = "http://community.haskell.org/~ndm/tagsoup/"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagsoup" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.6"; + sha256 = "a8358c8c09b73912c4e832248d7543e4fddaf4ac9305f5f27d0854b9410d6ac8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "http://community.haskell.org/~ndm/tagsoup/"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; }) {}; "tagsoup-ht" = callPackage @@ -179697,10 +182095,8 @@ self: { }: mkDerivation { pname = "tasty-fail-fast"; - version = "0.0.1"; - sha256 = "c0bc9ed51c3f5d201ebcced0b4aeac0df48fcec7748fde9975ef15d8080f0808"; - revision = "1"; - editedCabalFile = "ac30bc385f5117e0d82d84786af687e8b282d5b325fce5d2a4d300673666aa44"; + version = "0.0.2"; + sha256 = "28e463b3e85e356f1a0676a4accd7ecc002814dc0487323613f0c6aacc153ac6"; libraryHaskellDepends = [ base containers stm tagged tasty ]; testHaskellDepends = [ base directory tasty tasty-golden tasty-hunit tasty-tap @@ -180080,6 +182476,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; @@ -180392,6 +182789,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; @@ -180512,8 +182910,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 @@ -180787,6 +183185,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; @@ -180856,6 +183256,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 @@ -180975,6 +183389,8 @@ self: { pname = "test-framework"; version = "0.8.1.1"; sha256 = "7883626a5aebb1df327bf26dbd382208946250a79f9cc3bf9a9eb0b0767bb273"; + revision = "1"; + editedCabalFile = "a6d9dbedbb574271e85c6e5ef9a9f935d87501a9b99b473bf306e3dcd36bdd9e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -181032,6 +183448,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; @@ -181660,7 +184077,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_4" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -181682,6 +184099,31 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "texmath" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.4.1"; + sha256 = "45a9c779775e4e6effd7606bef5c179524b4fb88dca952c2decd3fa82e6c94f5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; }) {}; "texrunner" = callPackage @@ -181743,6 +184185,8 @@ self: { pname = "text"; version = "1.2.0.3"; sha256 = "1d38bc0a8bf60c2f3581558a7870d6db7eefbe6da5df4d80a42c9b4837f8f986"; + revision = "1"; + editedCabalFile = "1ad163864f042122ba30e6707a3e4ffe8f2b7f69c2b24db365a478fbe1e3f119"; libraryHaskellDepends = [ array base bytestring deepseq ghc-prim integer-gmp ]; @@ -181768,6 +184212,8 @@ self: { pname = "text"; version = "1.2.0.4"; sha256 = "865dbb8e824c197cdda6a15e8764c057335febe05573a764e54867460e0b9700"; + revision = "1"; + editedCabalFile = "ee605e146a984f0f9ea30b9e8d92a93a765f1bcc1fa6b6d23e0487fc3f210f0b"; libraryHaskellDepends = [ array base bytestring deepseq ghc-prim integer-gmp ]; @@ -181793,6 +184239,8 @@ self: { pname = "text"; version = "1.2.0.6"; sha256 = "d8fd82e876b4d1f2f4c25605adde2092308524a246fb4b3f4f665d73aaf56f73"; + revision = "1"; + editedCabalFile = "1d5d0c706835f1ca74925cd3b0aa025bf4ee0fd795581b6038c13cd030fddb47"; libraryHaskellDepends = [ array base bytestring deepseq ghc-prim integer-gmp ]; @@ -181801,13 +184249,14 @@ self: { QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text" = callPackage + "text_1_2_1_3" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , directory, ghc-prim, HUnit, integer-gmp, QuickCheck , quickcheck-unicode, random, test-framework, test-framework-hunit @@ -181817,6 +184266,8 @@ self: { pname = "text"; version = "1.2.1.3"; sha256 = "98364c94f259ec95e380e44bde90b37708ec6f0d45eb9efe821ab67959e9f83f"; + revision = "1"; + editedCabalFile = "0f5b6a2f9204089b6cc58071b92e9f2fc3e6d773e3aa486b4a66bf25e124712a"; libraryHaskellDepends = [ array base binary bytestring deepseq ghc-prim integer-gmp ]; @@ -181825,6 +184276,32 @@ self: { integer-gmp QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + doCheck = false; + homepage = "https://github.com/bos/text"; + description = "An efficient packed Unicode text type"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "text" = callPackage + ({ mkDerivation, array, base, binary, bytestring, deepseq + , directory, ghc-prim, HUnit, integer-gmp, QuickCheck + , quickcheck-unicode, random, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "text"; + version = "1.2.2.0"; + sha256 = "3fb3921488b4c10f1a389f4ad1a1ae44cf1a6d1ce4305a55d1d7c745cff50088"; + libraryHaskellDepends = [ + array base binary bytestring deepseq ghc-prim integer-gmp + ]; + testHaskellDepends = [ + array base binary bytestring deepseq directory ghc-prim HUnit + integer-gmp QuickCheck quickcheck-unicode random test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; license = stdenv.lib.licenses.bsd3; @@ -182212,10 +184689,10 @@ self: { }: mkDerivation { pname = "text-show"; - version = "2.1.1"; - sha256 = "0c42b918bb3a20eda3dc060b14a74c216e1ef3472d9cc8f4a15623a3f2e8c1eb"; + version = "2.1.2"; + sha256 = "76c1ce631c6932816dc241b290400e7200d7c79fd50ec03f51964e244fae320d"; revision = "1"; - editedCabalFile = "6a44a796ef99a25dc68351d0c37364b301b01de63aaf31c6f376c5811da22778"; + editedCabalFile = "3fc10600ed0d309c095024b4d320ace8d39dd883e4e8d109d182930c2b35fc9c"; libraryHaskellDepends = [ array base base-compat bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups tagged @@ -182244,8 +184721,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 @@ -183167,10 +185644,8 @@ self: { }: mkDerivation { pname = "these"; - version = "0.6.1.0"; - sha256 = "a8e9e677b72ab4ea4e922b860abdd5f61ac69cb66e7c9f060f08ac94110f2d0d"; - revision = "2"; - editedCabalFile = "40a48f80ea0b180829df3b2eef9c29947f3567998d24e4efff75a1fd9949b0e0"; + version = "0.6.2.0"; + sha256 = "9802c398812396525789156b39e23dcb03fe3d218d588f33700386897993bee7"; libraryHaskellDepends = [ base bifunctors containers data-default-class hashable mtl profunctors semigroupoids semigroups transformers @@ -183334,6 +185809,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"; @@ -183598,8 +186074,8 @@ self: { }: mkDerivation { pname = "tickle"; - version = "0.0.4"; - sha256 = "9261e1a6c3e3f317b6e9733a7d4e2ff2b3bad9669db4741d85e64e6fb933f587"; + version = "0.0.5"; + sha256 = "bf8c57ddea14842bc5e5e2099c5fbc8e9c85544f3daad57a33ba1db6fa244102"; libraryHaskellDepends = [ base bifunctors bytestring lens mtl semigroupoids semigroups transformers validation @@ -183607,7 +186083,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; - homepage = "https://github.com/nicta/tickle"; + homepage = "https://github.com/NICTA/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -183797,19 +186273,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; @@ -183970,6 +186449,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "time-parsers" = callPackage + ({ mkDerivation, attoparsec, base, bifunctors, parsec, parsers + , tasty, tasty-hunit, template-haskell, text, time + }: + mkDerivation { + pname = "time-parsers"; + version = "0.1.0.0"; + sha256 = "e4eb246c3d97e69785a26ecd91381b4cf80e4d1d4313381ad68861b7e72ccff8"; + libraryHaskellDepends = [ base parsers template-haskell time ]; + testHaskellDepends = [ + attoparsec base bifunctors parsec parsers tasty tasty-hunit + template-haskell text time + ]; + homepage = "https://github.com/phadej/time-parsers#readme"; + description = "Parsers for types in `time`"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "time-patterns" = callPackage ({ mkDerivation, base, intervals, lens, thyme, vector-space }: mkDerivation { @@ -184016,6 +186513,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; @@ -184118,26 +186616,53 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "timelike" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "timelike"; + version = "0.1.0"; + sha256 = "6588260531b2821ab33fb92b6587d971c68334f1b07daba56ebf7418641d6036"; + libraryHaskellDepends = [ base transformers ]; + homepage = "http://hub.darcs.net/esz/timelike"; + description = "Type classes for types representing time"; + license = stdenv.lib.licenses.asl20; + }) {}; + + "timelike-time" = callPackage + ({ mkDerivation, base, time, timelike, transformers }: + mkDerivation { + pname = "timelike-time"; + version = "0.1.0"; + sha256 = "25c4b9ed4eb5ab0121973a2b54c19ec451c1ac9e0e54ce62f211814732ccca16"; + libraryHaskellDepends = [ base time timelike transformers ]; + homepage = "http://hub.darcs.net/esz/timelike-time"; + description = "Timelike interface for the time library"; + license = stdenv.lib.licenses.asl20; + }) {}; + "timemap" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, QuickCheck - , quickcheck-instances, stm, tasty, tasty-hunit, tasty-quickcheck - , time, unordered-containers + ({ mkDerivation, base, containers, focus, hashable, list-t + , QuickCheck, quickcheck-instances, stm, stm-containers, tasty + , tasty-hunit, tasty-quickcheck, time, unordered-containers }: mkDerivation { pname = "timemap"; - version = "0.0.0"; - sha256 = "f0b85eca4fdea0270897e0b15675f7894b193695968ddb6ac5f7acff73b64cc6"; + version = "0.0.2"; + sha256 = "089ec15bb8c6a4da17ef7619fa1b42dc4288ce630a261270f2ac6752a8387be4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers hashable hashtables stm time unordered-containers + base containers focus hashable list-t stm stm-containers time + unordered-containers ]; executableHaskellDepends = [ - base containers hashable hashtables stm time unordered-containers + base containers focus hashable list-t stm stm-containers time + unordered-containers ]; testHaskellDepends = [ - base containers hashable hashtables QuickCheck quickcheck-instances - stm tasty tasty-hunit tasty-quickcheck time unordered-containers + base containers focus hashable list-t QuickCheck + quickcheck-instances stm stm-containers tasty tasty-hunit + tasty-quickcheck time unordered-containers ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; @@ -184213,8 +186738,8 @@ self: { }: mkDerivation { pname = "timeplot"; - version = "1.0.29"; - sha256 = "3deb70a5e5be09c4380f63522576dff71ad5aeb923cb15250961c1423d1cfd06"; + version = "1.0.31"; + sha256 = "8dc8e4901b4b2f84c654d34f6721762bb662697b89dcfad969180a00820254b2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -184222,7 +186747,6 @@ self: { containers data-default lens regex-tdfa strptime template-haskell time transformers vcs-revision ]; - jailbreak = true; homepage = "http://haskell.org/haskellwiki/Timeplot"; description = "A tool for visualizing time series from log files"; license = stdenv.lib.licenses.bsd3; @@ -184480,8 +187004,8 @@ self: { }: mkDerivation { pname = "tip-lib"; - version = "0.2.1"; - sha256 = "007beb1850acd1aeb370c831f9e801e580e96d295b5b3750db47e8e658c207f8"; + version = "0.2.2"; + sha256 = "66698d1000e582542f3ef838960edc66ae3874eb6b21f169ed8497fd2c2cc12b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -184567,16 +187091,13 @@ self: { }) {}; "tld" = callPackage - ({ mkDerivation, base, containers, network-uri, template-haskell - , text - }: + ({ mkDerivation, base, containers, HUnit, network-uri, text }: mkDerivation { pname = "tld"; - version = "0.2.0.0"; - sha256 = "3d02c17a2f330e21e840177fccc539d78347340125992aaa6238ab9f2b2456e9"; - libraryHaskellDepends = [ - base containers network-uri template-haskell text - ]; + version = "0.3.0.0"; + sha256 = "feb269cd135796d7a378a01150ca89fdea380e4e7fa67b031b299fcd16acac5e"; + libraryHaskellDepends = [ base containers network-uri text ]; + testHaskellDepends = [ base HUnit network-uri text ]; description = "This project separates subdomains, domains, and top-level-domains from URLs"; license = stdenv.lib.licenses.mit; }) {}; @@ -184794,8 +187315,8 @@ self: { }: mkDerivation { pname = "tls"; - version = "1.3.3"; - sha256 = "9f03fb059198e1f3d866d1297f86fca3204d07e7cc5e8f7e8ad878be48f1ca24"; + version = "1.3.4"; + sha256 = "49fff2bd6b420bb57f7cc78445f9a17547a5ff4a72e29135695c9cc2d91e19c1"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal cryptonite data-default-class memory mtl network transformers x509 x509-store @@ -185438,8 +187959,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "tracy"; - version = "0.1.0.0"; - sha256 = "33e4e073bead5fa93236a23e47ab76ca6b38a74d33ada8af25a84ae446e1c3d9"; + version = "0.1.2.0"; + sha256 = "29e1a75da8bcf1029d6e918f6b681ba401fe41e01d3bace52852d7d35759b431"; libraryHaskellDepends = [ base ]; description = "Convenience wrappers for non-intrusive debug tracing"; license = stdenv.lib.licenses.mit; @@ -185526,6 +188047,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; @@ -185823,6 +188358,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; @@ -185981,23 +188517,24 @@ self: { "tries" = callPackage ({ mkDerivation, base, bytestring, bytestring-trie, composition - , composition-extra, containers, criterion, keys, mtl, QuickCheck - , quickcheck-instances, rose-trees, semigroups, sets, tasty - , tasty-quickcheck + , 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.2"; - sha256 = "ce556583fe46ec5bf0d980dd7d5c8dfefb451989d60c9f772a7f83ef57ce394e"; + version = "0.0.4"; + sha256 = "6be9638a03b35effe69c9bbfc33b00fe92156211945b83dee871e70cf266f94a"; libraryHaskellDepends = [ base bytestring bytestring-trie composition composition-extra - containers criterion keys mtl QuickCheck quickcheck-instances - rose-trees semigroups sets + containers deepseq hashable keys QuickCheck quickcheck-instances + rose-trees semigroups sets unordered-containers ]; testHaskellDepends = [ base bytestring bytestring-trie composition composition-extra - containers keys mtl QuickCheck quickcheck-instances rose-trees - semigroups sets tasty tasty-quickcheck + 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; @@ -186373,6 +188910,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; @@ -186396,6 +188934,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; @@ -186692,6 +189231,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; @@ -186713,12 +189253,13 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "turtle" = callPackage + "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 @@ -186734,6 +189275,28 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.4"; + sha256 = "c42148d062098913a4519af92c0bc6b139edad18c22f6c01aea8697386851de4"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -186949,6 +189512,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; @@ -186992,6 +189556,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; @@ -187144,6 +189709,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; @@ -187165,6 +189731,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; @@ -187366,21 +189933,33 @@ self: { }) {}; "type-combinators" = callPackage - ({ mkDerivation, base, containers, mtl, template-haskell - , transformers - }: + ({ mkDerivation, base }: mkDerivation { pname = "type-combinators"; - version = "0.1.2.1"; - sha256 = "67e8b5b1a92a4e578ab741d11ad883587dbf4451dc5a14774733181e0e570420"; - libraryHaskellDepends = [ - base containers mtl template-haskell transformers - ]; + version = "0.2.0.0"; + sha256 = "0b0b07f8ac2bc3237114753f8f9e2d8f41cdc4c97d3bd5cd4725beaaa4b7c99a"; + libraryHaskellDepends = [ base ]; homepage = "https://github.com/kylcarte/type-combinators"; description = "A collection of data types for type-level programming"; license = stdenv.lib.licenses.bsd3; }) {}; + "type-combinators-quote" = callPackage + ({ mkDerivation, base, haskell-src-meta, template-haskell + , type-combinators + }: + mkDerivation { + pname = "type-combinators-quote"; + version = "0.1.0.0"; + sha256 = "246e8b50dbcebb5bf2c71c8827c66dc740a2e717dac4210da86308c7946c620d"; + libraryHaskellDepends = [ + base haskell-src-meta template-haskell type-combinators + ]; + homepage = "https://github.com/kylcarte/type-combinators-quote"; + description = "Quasiquoters for the 'type-combinators' package"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "type-digits" = callPackage ({ mkDerivation, base, template-haskell, type-spine }: mkDerivation { @@ -187850,6 +190429,7 @@ self: { executableHaskellDepends = [ base diagrams-cairo diagrams-lib text ]; + jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -187876,6 +190456,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "typed-wire-utils" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, text + , time + }: + mkDerivation { + pname = "typed-wire-utils"; + version = "0.1.0.0"; + sha256 = "26edf29617e27d569f4e44d88b0aadc7d028476ae5eb9dbabbb7c605a71ab230"; + libraryHaskellDepends = [ + aeson base base64-bytestring bytestring text time + ]; + homepage = "http://github.com/typed-wire/hs-typed-wire-utils#readme"; + description = "Haskell utility library required for code generated by typed-wire compiler"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "typedquery" = callPackage ({ mkDerivation, aeson, base, bytestring, haskell-src-meta, parsec , template-haskell, text, transformers @@ -187938,6 +190534,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 { @@ -188050,8 +190658,10 @@ self: { }: mkDerivation { pname = "tz"; - version = "0.0.0.10"; - sha256 = "1597ab0c2b6606492b65d2c39be5ae8dcf50734dee2cd4e0de5b691241544096"; + version = "0.1.0.1"; + sha256 = "2efcdae6fbeb7986ae5486de1eb090d646d60519070006379f40e72678fd490c"; + revision = "1"; + editedCabalFile = "485b8652e895108a5c360180fe992cc0f7583889c6d88cd749bf68cfde8f0baa"; libraryHaskellDepends = [ base binary bytestring containers deepseq template-haskell time tzdata vector @@ -188061,7 +190671,6 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; - jailbreak = true; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; @@ -188110,23 +190719,20 @@ self: { }) {}; "ua-parser" = callPackage - ({ mkDerivation, aeson, base, bytestring, criterion, data-default - , deepseq, derive, file-embed, filepath, HUnit, pcre-light, syb - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, yaml + ({ mkDerivation, aeson, base, bytestring, data-default, derive + , file-embed, filepath, HUnit, pcre-light, tasty, tasty-hunit + , tasty-quickcheck, text, yaml }: mkDerivation { pname = "ua-parser"; - version = "0.5"; - sha256 = "6e5925c3b4c7e195801dc4b9fcd240717e25d138fa14ae03b01eff97f476923a"; + version = "0.7"; + sha256 = "586ae0c948af8a2c671331aeebe85c663a24e5d40c8a71a943ee2520b4d4aa57"; libraryHaskellDepends = [ - aeson base bytestring data-default file-embed pcre-light syb text - yaml + aeson base bytestring data-default file-embed pcre-light text yaml ]; testHaskellDepends = [ - aeson base bytestring criterion data-default deepseq derive - file-embed filepath HUnit pcre-light syb test-framework - test-framework-hunit test-framework-quickcheck2 text yaml + aeson base bytestring data-default derive file-embed filepath HUnit + pcre-light tasty tasty-hunit tasty-quickcheck text yaml ]; jailbreak = true; description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; @@ -188330,6 +190936,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; @@ -188496,7 +191103,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unbound-generics" = callPackage + "unbound-generics_0_2" = callPackage ({ mkDerivation, base, containers, contravariant, deepseq, mtl , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck , template-haskell, transformers, transformers-compat @@ -188515,6 +191122,28 @@ self: { homepage = "http://github.com/lambdageek/unbound-generics"; description = "Support for programming with names and binders using GHC Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "unbound-generics" = 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; }) {}; "unbounded-delays_0_1_0_8" = callPackage @@ -188570,6 +191199,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "unbreak" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring + , bytestring, cereal, cmdargs, cryptonite, memory, process, text + , unix + }: + mkDerivation { + pname = "unbreak"; + version = "0.3.0"; + sha256 = "63de23dd0adf5183498b6ba37efe5bc867d935b5a56b839d4ae553d8918ec91c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base base64-bytestring bytestring cereal + cryptonite memory process text unix + ]; + executableHaskellDepends = [ base bytestring cmdargs ]; + description = "Secure editing of remote documents with unstable connection"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "unexceptionalio" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -188832,10 +191481,8 @@ self: { }: mkDerivation { pname = "uniform-io"; - version = "1.0.0.0"; - sha256 = "758c265cc4838f2536c9adfe0c4e0e3839b4c29c2241ad89ab941925a62ceb1e"; - revision = "1"; - editedCabalFile = "7646b537e81dab11156af68670fd508a81521543536f1fe3e4d45c545616f6be"; + version = "1.0.1.0"; + sha256 = "6c772b6b8a6876e41935267a789dfc466fdccc3f78e80098eabcacaf0675cc76"; libraryHaskellDepends = [ attoparsec base bytestring data-default-class iproute network transformers word8 @@ -190281,13 +192928,13 @@ self: { }: mkDerivation { pname = "userid"; - version = "0.1.2.2"; - sha256 = "21d4ee5ccf8643b41288ffb4bae5180ff1e94fe81ee2b56461fe1f345c9bdffb"; + version = "0.1.2.3"; + sha256 = "7d1e9e276ff47ec4717d74432075c568b6859388c8a74057f3efa1a9e80106a3"; libraryHaskellDepends = [ aeson base boomerang lens safecopy web-routes web-routes-th ]; homepage = "http://www.github.com/Happstack/userid"; - description = "A library which provides the UserId type and useful instances for web development"; + description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -191180,8 +193827,8 @@ self: { }: mkDerivation { pname = "vado"; - version = "0.0.5"; - sha256 = "7262e756a473b28f3998c6f90c8c04437e77efe5fc7e13f72fd06388ca65781d"; + version = "0.0.6"; + sha256 = "cc9b6ffa83eaedf2c793a93e47b8341b2f8014382aaae63a46b4028c3e86212c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -191753,6 +194400,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 @@ -192287,8 +194936,8 @@ self: { ({ mkDerivation, base, binary, data-default-class, deepseq }: mkDerivation { pname = "verbosity"; - version = "0.2.0.0"; - sha256 = "495d515a29366317af0936b6d5113354552816f2acbf2587dcbf99688b239b6f"; + version = "0.2.1.0"; + sha256 = "faa4121629a8e397572bb61a37e0dd95e281f68c5f779eb7ee756517796f39d3"; libraryHaskellDepends = [ base binary data-default-class deepseq ]; homepage = "https://github.com/trskop/verbosity"; description = "Simple enum that encodes application verbosity"; @@ -192329,7 +194978,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; }) {}; @@ -192476,6 +195124,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; @@ -192636,6 +195285,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "visibility" = callPackage + ({ mkDerivation, base, containers }: + mkDerivation { + pname = "visibility"; + version = "0.1.0.0"; + sha256 = "bdac4ba5246e3a1e8759d3c0d886f0671e3baf962479e67b44888412a9dd7784"; + libraryHaskellDepends = [ base containers ]; + homepage = "https://github.com/LukaHorvat/visibility"; + description = "Simple computation of visibility polygons"; + license = stdenv.lib.licenses.mit; + }) {}; + "vision" = callPackage ({ mkDerivation, array, base, containers, directory, filepath, glib , gtk, json, MonadCatchIO-transformers, mtl, parsec, PSQueue, stm @@ -192846,15 +195507,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "vrpn" = callPackage + ({ mkDerivation, base, vrpn }: + mkDerivation { + pname = "vrpn"; + version = "0.2.1.3"; + sha256 = "3268782b9412fe9cc3757dcaea0d9756ef9db4c80ea4004065df548384109d68"; + 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 { pname = "vte"; - version = "0.13.0.2"; - sha256 = "70e8f81e5e44beb9eba66959792af7648ab9238c758ed359bda3f78933427ef0"; + version = "0.13.0.3"; + sha256 = "70efa9daec459aa3d7d49e767af2449752c62f47985d5bac9ef50fc1cdb4f90f"; 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; @@ -192864,8 +195543,8 @@ self: { ({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, pango, vte }: mkDerivation { pname = "vtegtk3"; - version = "0.13.0.2"; - sha256 = "ef3b367f9806012308816bb6315a56c0f51f5648f6f60a3726ac5a54b4b97536"; + version = "0.13.0.3"; + sha256 = "d712bf11446133f3146985db6ced3d932cf8f65d6a81900f4b65bb6e914c176a"; libraryHaskellDepends = [ base glib gtk3 pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -193140,6 +195819,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-accept-language" = callPackage + ({ mkDerivation, base, bytestring, file-embed, http-types, text + , wai, wai-app-static, wai-extra, warp, word8 + }: + mkDerivation { + pname = "wai-accept-language"; + version = "0.1.0.1"; + sha256 = "d0d3f3e9c45edfa0c6f05e7d58091806825a1e02261d70cb448dc146480a4a31"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-types text wai wai-extra word8 + ]; + executableHaskellDepends = [ + base file-embed wai wai-app-static warp + ]; + homepage = "https://github.com/mitsuji/wai-accept-language"; + description = "Rewrite based on Accept-Language header"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wai-app-file-cgi" = callPackage ({ mkDerivation, array, attoparsec, attoparsec-conduit, base , blaze-builder, blaze-html, bytestring, case-insensitive, conduit @@ -193151,15 +195851,15 @@ self: { }: mkDerivation { pname = "wai-app-file-cgi"; - version = "3.0.8"; - sha256 = "bdf0d1c9f563772c362f62f02d0bffbc2bc395642921e370bd39e50e9126b229"; + version = "3.0.9"; + sha256 = "947a818500ef5b1f2c1868d15a6a1054a3abb9e83ddfcacfb0d66d4e78ea308d"; libraryHaskellDepends = [ array attoparsec attoparsec-conduit base blaze-builder blaze-html bytestring case-insensitive conduit conduit-extra containers data-default-class directory filepath http-client http-conduit http-date http-types io-choice lifted-base mime-types network process sockaddr static-hash text transformers unix wai wai-conduit - word8 + warp word8 ]; testHaskellDepends = [ base bytestring conduit conduit-extra directory doctest filepath @@ -193464,7 +196164,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 @@ -193498,6 +196198,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 @@ -193612,6 +196349,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; @@ -194341,6 +197079,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; @@ -194488,6 +197227,58 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "wai-middleware-caching" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types, wai + }: + mkDerivation { + pname = "wai-middleware-caching"; + 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"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "wai-middleware-caching-lru" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types + , lrucache, text, wai, wai-middleware-caching + }: + mkDerivation { + pname = "wai-middleware-caching-lru"; + version = "0.1.0.0"; + sha256 = "377dc842f5ad77b98e8a817e092c891ccfd0da978fb9f69a380f001a95da28d3"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types lrucache text wai + wai-middleware-caching + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-lru#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "wai-middleware-caching-redis" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, hedis, http-types + , text, wai, wai-middleware-caching + }: + mkDerivation { + pname = "wai-middleware-caching-redis"; + version = "0.2.0.0"; + sha256 = "6ff53783db20d8f0ff00514ea2679f7022ca59eb20ffad22628ac17c13bf7c4c"; + libraryHaskellDepends = [ + base blaze-builder bytestring hedis http-types text wai + wai-middleware-caching + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-redis#readme"; + description = "Cache Wai Middleware using Redis backend"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wai-middleware-catch" = callPackage ({ mkDerivation, base, bytestring, http-types, lifted-base, wai }: mkDerivation { @@ -194534,36 +197325,38 @@ self: { "wai-middleware-content-type" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-html, bytestring - , clay, containers, exceptions, hspec, hspec-wai, http-media + , clay, exceptions, hashable, hspec, hspec-wai, http-media , http-types, lucid, mmorph, monad-control, monad-logger, mtl , pandoc, pandoc-types, resourcet, shakespeare, tasty, tasty-hspec - , text, transformers, transformers-base, urlpath, wai - , wai-transformers, wai-util, warp + , text, transformers, transformers-base, unordered-containers + , urlpath, wai, wai-transformers, wai-util, warp }: mkDerivation { pname = "wai-middleware-content-type"; - version = "0.1.0.1"; - sha256 = "4c2fe853b078648b2f916da3fd174d5cfa01153edd136e587f4aae54cf1c579e"; + version = "0.1.1.1"; + sha256 = "a2b7855f48904918133311c1498e0b028d4cf8b6c0c45d660872198fbcd50b40"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base blaze-builder blaze-html bytestring clay containers - exceptions http-media http-types lucid mmorph monad-control + aeson base blaze-builder blaze-html bytestring clay exceptions + hashable http-media http-types lucid mmorph monad-control monad-logger mtl pandoc resourcet shakespeare text transformers - transformers-base urlpath wai wai-transformers wai-util + transformers-base unordered-containers urlpath wai wai-transformers + wai-util ]; executableHaskellDepends = [ - aeson base blaze-builder blaze-html bytestring clay containers - exceptions http-media http-types lucid mmorph monad-control + aeson base blaze-builder blaze-html bytestring clay exceptions + hashable http-media http-types lucid mmorph monad-control monad-logger mtl pandoc resourcet shakespeare text transformers - transformers-base urlpath wai wai-transformers wai-util warp + transformers-base unordered-containers urlpath wai wai-transformers + wai-util warp ]; testHaskellDepends = [ - aeson base blaze-builder blaze-html bytestring clay containers - exceptions hspec hspec-wai http-media http-types lucid mmorph + aeson base blaze-builder blaze-html bytestring clay exceptions + hashable hspec hspec-wai http-media http-types lucid mmorph monad-control monad-logger mtl pandoc pandoc-types resourcet shakespeare tasty tasty-hspec text transformers transformers-base - urlpath wai wai-transformers wai-util warp + unordered-containers urlpath wai wai-transformers wai-util warp ]; description = "Route to different middlewares based on the incoming Accept header"; license = stdenv.lib.licenses.bsd3; @@ -194594,12 +197387,13 @@ 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; }) {}; - "wai-middleware-crowd" = callPackage + "wai-middleware-crowd_0_1_2_1" = callPackage ({ mkDerivation, authenticate, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, clientsession , containers, cookie, gitrev, http-client, http-client-tls @@ -194626,10 +197420,10 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-crowd_0_1_3" = callPackage + "wai-middleware-crowd" = callPackage ({ mkDerivation, authenticate, base, base64-bytestring, binary , blaze-builder, bytestring, case-insensitive, clientsession , containers, cookie, gitrev, http-client, http-client-tls @@ -194656,7 +197450,7 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "wai-middleware-etag" = callPackage @@ -194672,6 +197466,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; @@ -194867,6 +197662,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; @@ -194959,17 +197755,26 @@ self: { }) {}; "wai-middleware-verbs" = callPackage - ({ mkDerivation, base, containers, errors, exceptions, http-types - , mmorph, monad-logger, mtl, resourcet, transformers - , transformers-base, wai, wai-transformers + ({ mkDerivation, base, errors, exceptions, hashable, http-types + , mmorph, monad-logger, mtl, resourcet, text, transformers + , transformers-base, unordered-containers, wai + , wai-middleware-content-type, wai-transformers, warp }: mkDerivation { pname = "wai-middleware-verbs"; - version = "0.1.0"; - sha256 = "af304d24cf761465cae236b4a8d59a05cd8d74870a8c96f76f5b7fcbbab7d88e"; + version = "0.1.1"; + sha256 = "cc1e6be505f4c23f45467d55d55497d844f8c79cd2d855a23d191351e1126184"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base containers errors exceptions http-types mmorph monad-logger - mtl resourcet transformers transformers-base wai wai-transformers + base errors exceptions hashable http-types mmorph monad-logger mtl + resourcet transformers transformers-base unordered-containers wai + wai-transformers + ]; + executableHaskellDepends = [ + base errors exceptions hashable http-types mmorph monad-logger mtl + resourcet text transformers transformers-base unordered-containers + wai wai-middleware-content-type wai-transformers warp ]; description = "Route different middleware responses based on the incoming HTTP verb"; license = stdenv.lib.licenses.bsd3; @@ -195097,6 +197902,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; @@ -195228,27 +198034,21 @@ self: { }) {}; "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, entropy - , http-types, postgresql-session, postgresql-simple, text, time - , transformers, vault, wai, wai-session, warp + ({ mkDerivation, base, bytestring, cereal, cookie, entropy + , postgresql-session, postgresql-simple, text, time, transformers + , wai, wai-session }: mkDerivation { pname = "wai-session-postgresql"; - version = "0.1.0.1"; - sha256 = "3a0651e2757d4a83d8dac6aebc61607b38207549dbdb2904ccbd0f410785bdfe"; - isLibrary = true; - isExecutable = true; + version = "0.1.1.0"; + sha256 = "4a4adeddde9b3c6fe54599daa18a0d9abe8386fdd594475913d79658f29b8a58"; libraryHaskellDepends = [ - base bytestring cereal entropy postgresql-simple text time - transformers wai-session - ]; - executableHaskellDepends = [ - base bytestring data-default entropy http-types postgresql-simple - text vault wai wai-session warp + base bytestring cereal cookie entropy postgresql-simple text time + transformers wai wai-session ]; testHaskellDepends = [ base postgresql-session ]; jailbreak = true; - homepage = "https://github.com/hce/postgresql-session"; + homepage = "https://github.com/hce/postgresql-session#readme"; description = "PostgreSQL backed Wai session store"; license = stdenv.lib.licenses.bsd3; broken = true; @@ -196307,8 +199107,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.10"; - sha256 = "c0b60aca4a6c10f7b6f00e2e17e5ba5f04ffefb287123541459436bfd22c4fd5"; + version = "3.1.12"; + sha256 = "2a913a576d175e49b206e680b75f4823c7f90f45d8ba89aa57aae9c40d3298e1"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -196657,10 +199457,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 @@ -196976,25 +199774,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; }) {}; @@ -197017,8 +199810,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 ]; @@ -197030,8 +199823,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; @@ -197068,29 +199861,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; }) {}; @@ -197114,8 +199903,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 ]; @@ -197169,6 +199958,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; @@ -197197,25 +199987,23 @@ 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; }) {}; "webcrank-dispatch" = callPackage - ({ mkDerivation, base, bytestring, mtl, path-pieces, reroute, text + ({ mkDerivation, base, hvect, mtl, path-pieces, reroute, text , unordered-containers }: mkDerivation { pname = "webcrank-dispatch"; - version = "0.1"; - sha256 = "f324088d07a0986b982a73d931b98f8276eda379e2715f48233c9a262a7393f0"; - revision = "1"; - editedCabalFile = "50b6b56e1fccc20a2986ea93b04410b8131ea5f2f4df94df538c6b2369400fa8"; + version = "0.2"; + sha256 = "13328e0f7570a29b9938b8effecc6eeadd3d14555cbefc6e3707c98d7695b7ae"; libraryHaskellDepends = [ - base bytestring mtl path-pieces reroute text unordered-containers + base hvect mtl path-pieces reroute text unordered-containers ]; - jailbreak = true; homepage = "https://github.com/webcrank/webcrank-dispatch.hs"; description = "A simple request dispatcher"; license = stdenv.lib.licenses.bsd3; @@ -197374,6 +200162,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"; @@ -197401,6 +200190,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"; @@ -197418,8 +200208,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 @@ -197427,7 +200217,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"; @@ -197511,6 +200300,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "webfinger-client" = callPackage + ({ mkDerivation, aeson, base, bytestring, data-default-class + , hashable, http-client, http-client-tls, http-types, text + , unordered-containers, uri-bytestring + }: + mkDerivation { + pname = "webfinger-client"; + version = "0.1.0.0"; + sha256 = "e3b1a231ebe4bc957eddcf24a19ee5d90134b9a95984a75a945c8dc4b17a56e0"; + libraryHaskellDepends = [ + aeson base bytestring data-default-class hashable http-client + http-client-tls http-types text unordered-containers uri-bytestring + ]; + homepage = "http://hub.darcs.net/fr33domlover/webfinger-client"; + description = "WebFinger client library"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "webidl" = callPackage ({ mkDerivation, base, bytestring, HSFFIG, LEXER, parsec, pretty , utf8-env, utf8-string @@ -197561,8 +200368,8 @@ self: { }: mkDerivation { pname = "webkit"; - version = "0.14.1.0"; - sha256 = "249fb5e5817e3f85a17abe32f100aafc9f853c6cf83f30a11c9adf846dd3b4d6"; + version = "0.14.1.1"; + sha256 = "c80dd015ecbf02b7d018afd1679df78a8c1ce17e3ae6b943f23d4da2ef867e44"; libraryHaskellDepends = [ base bytestring cairo glib gtk mtl pango text transformers ]; @@ -197577,8 +200384,8 @@ self: { ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, webkit }: mkDerivation { pname = "webkit-javascriptcore"; - version = "0.13.1.0"; - sha256 = "b0a7c41c9c22cb1aa4697e6d30ace424bc73b15416cf98790e148c9bec10bed7"; + version = "0.13.1.1"; + sha256 = "c54491817b539f2ae5ff75f082ff18efc68038146553e300462a3a8d808ff730"; libraryHaskellDepends = [ base glib gtk webkit ]; libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; @@ -197592,8 +200399,8 @@ self: { }: mkDerivation { pname = "webkitgtk3"; - version = "0.14.1.0"; - sha256 = "d5d293fff2a7df1e870c6076dc4cafbe7bbc07098a3f66c81942c01e0ebbbe99"; + version = "0.14.1.1"; + sha256 = "a8edd6470fe9a6c82f98bc331d23f6c6fb6978b6d63f03f010e0c7e1000eb216"; libraryHaskellDepends = [ base bytestring cairo glib gtk3 mtl pango text transformers ]; @@ -197610,8 +200417,8 @@ self: { }: mkDerivation { pname = "webkitgtk3-javascriptcore"; - version = "0.13.1.0"; - sha256 = "caf9cc5074e51f27abb3ea52f60b8e737ca7323b96bf0862ba1713354bf835b5"; + version = "0.13.1.1"; + sha256 = "0a1583d61f20c8cf0f84443210711222a9f0dc1d8a99a85944c01f487aaa8b79"; libraryHaskellDepends = [ base glib gtk3 webkitgtk3 ]; libraryPkgconfigDepends = [ webkit ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -197827,6 +200634,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"; @@ -197854,6 +200662,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"; @@ -198287,8 +201096,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 @@ -198675,14 +201484,14 @@ self: { , amazonka-swf, base, basic-prelude, bytestring, conduit , conduit-extra, exceptions, fast-logger, formatting, http-conduit , http-types, lens, monad-control, monad-logger, mtl, mtl-compat - , optparse-applicative, resourcet, safe, shelly, tasty, tasty-hunit - , text, time, transformers, transformers-base, unordered-containers - , uuid, yaml + , optparse-applicative, resourcet, safe, shelly, system-filepath + , tasty, tasty-hunit, text, time, transformers, transformers-base + , unordered-containers, uuid, yaml, zlib }: mkDerivation { pname = "wolf"; - version = "0.2.2"; - sha256 = "73a4d33c24eef17da4f09544f478a65ab73935cc720f94d7a62977917b80428b"; + version = "0.2.3"; + sha256 = "53c53f00ccc4ad27efc9164d90722174d28f7bad1850a1659f177d9c4d070fd3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198695,7 +201504,8 @@ self: { ]; executableHaskellDepends = [ aeson amazonka-core base basic-prelude bytestring - optparse-applicative resourcet shelly text transformers yaml + optparse-applicative resourcet shelly system-filepath text + transformers yaml zlib ]; testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; homepage = "https://github.com/swift-nav/wolf"; @@ -198931,6 +201741,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; @@ -199041,7 +201852,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wreq" = callPackage + "wreq_0_4_0_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base , base16-bytestring, base64-bytestring, byteable, bytestring , case-insensitive, containers, cryptohash, directory, doctest @@ -199076,6 +201887,46 @@ self: { homepage = "http://www.serpentine.com/wreq"; description = "An easy-to-use HTTP client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wreq" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec + , authenticate-oauth, base, base16-bytestring, base64-bytestring + , byteable, bytestring, case-insensitive, containers, cryptohash + , directory, doctest, exceptions, filepath, ghc-prim, hashable + , http-client, http-client-tls, http-types, HUnit, lens, lens-aeson + , mime-types, network-info, psqueues, QuickCheck, snap-core + , snap-server, template-haskell, temporary, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat, transformers, unix-compat + , unordered-containers, uuid, vector + }: + mkDerivation { + pname = "wreq"; + version = "0.4.1.0"; + sha256 = "3b8409e2fb7670d7060fdaa780008eeecb08e9b65bdab9d9690d8d26e5cb8e6d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec authenticate-oauth base base16-bytestring byteable + bytestring case-insensitive containers cryptohash exceptions + ghc-prim hashable http-client http-client-tls http-types lens + lens-aeson mime-types psqueues template-haskell text time + time-locale-compat unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-pretty base base64-bytestring bytestring + case-insensitive containers directory doctest filepath hashable + http-client http-types HUnit lens lens-aeson network-info + QuickCheck snap-core snap-server temporary test-framework + test-framework-hunit test-framework-quickcheck2 text time + transformers unix-compat uuid vector + ]; + doCheck = false; + homepage = "http://www.serpentine.com/wreq"; + description = "An easy-to-use HTTP client library"; + license = stdenv.lib.licenses.bsd3; }) {}; "wreq-sb" = callPackage @@ -199287,8 +202138,8 @@ self: { ({ mkDerivation, base, stm, time, wxcore }: mkDerivation { pname = "wx"; - version = "0.92.1.0"; - sha256 = "282f18d34c69cb0139ffd0728bfa97e52dfe4f325e7829ca0c76112b3e2bd408"; + version = "0.92.2.0"; + sha256 = "a1d02b17cd336f0c435381c9f2ce74aad2059c56a00c678954089b74065a97fb"; libraryHaskellDepends = [ base stm time wxcore ]; homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; @@ -199331,13 +202182,13 @@ self: { ({ mkDerivation, base, libX11, mesa, split, wxdirect, wxGTK }: mkDerivation { pname = "wxc"; - version = "0.92.1.1"; - sha256 = "e458be811c10a0ba56deb567c56c3b71579b8c923188236c1de8ccf844c1a602"; + version = "0.92.2.0"; + sha256 = "e0da20807bafb22d51a0922211da11eb428b2a6661cb53bc98f6e17be9775191"; libraryHaskellDepends = [ base split wxdirect ]; librarySystemDepends = [ libX11 mesa ]; libraryPkgconfigDepends = [ wxGTK ]; doHaddock = false; - postInstall = "cp -v dist/build/libwxc.so.0.92.1.1 $out/lib/libwxc.so"; + postInstall = "cp -v dist/build/libwxc.so.0.92.2.0 $out/lib/libwxc.so"; postPatch = "sed -i -e '/ldconfig inst_lib_dir/d' Setup.hs"; homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; @@ -199352,8 +202203,8 @@ self: { }: mkDerivation { pname = "wxcore"; - version = "0.92.1.0"; - sha256 = "ac621ea45ad61cbf1a91eb717f51a72d34d6ecc7925a161d90cf4ea7f3df73d6"; + version = "0.92.2.0"; + sha256 = "76128916c5d5df9cea9fc1e1b3b56d800d87874a431e98fca4427cb41cfe283e"; libraryHaskellDepends = [ array base bytestring containers directory filepath parsec stm time wxc wxdirect @@ -199371,8 +202222,8 @@ self: { }: mkDerivation { pname = "wxdirect"; - version = "0.92.1.0"; - sha256 = "33b78dd1ea76131a4f89e1482345ba707b4f7ebcee924a12113ed08f177b0edd"; + version = "0.92.2.0"; + sha256 = "2303834061c544f7e32ffd7aaf91e644ee89e178487689f109f06625f0eefd3b"; isLibrary = true; isExecutable = true; executableHaskellDepends = [ @@ -199729,7 +202580,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 }: @@ -199744,22 +202595,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"; @@ -200011,8 +202880,8 @@ self: { }: mkDerivation { pname = "xdot"; - version = "0.2.4.8"; - sha256 = "e9bda0abdde68181fe178c7ba176687f8f6438446ee06bd4099df6ca7c155bb9"; + version = "0.2.4.9"; + sha256 = "a2ace6970b425d1721b06b054422eef097837e31555579deee3fe532c11a0cda"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -200247,8 +203116,8 @@ self: { }: mkDerivation { pname = "xkbcommon"; - version = "0.0.1"; - sha256 = "2503e70f4a602c7c9d77b998ced4888a28e9d793323f41af970808f34d091bb2"; + version = "0.0.2"; + sha256 = "98e0a2e42bc6a08a56416882a89165adfdf12a762fd93ece076edf37b814dfd8"; libraryHaskellDepends = [ base bytestring cpphs data-flags filepath process storable-record template-haskell text transformers @@ -200402,7 +203271,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 @@ -200432,6 +203301,39 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xlsx" = callPackage + ({ mkDerivation, base, binary-search, bytestring, conduit + , containers, data-default, digest, HUnit, lens, mtl, old-locale + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time + , transformers, utf8-string, vector, xml-conduit, xml-types + , zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.0"; + sha256 = "6f76eefb933916fe14569a5dfb408716cb5e9481be34f886219f770d64fa16de"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens mtl old-locale text time transformers utf8-string + vector xml-conduit xml-types zip-archive zlib + ]; + executableHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens old-locale text time transformers utf8-string vector + xml-conduit xml-types zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit lens smallcheck tasty tasty-hunit + tasty-smallcheck time vector xml-conduit + ]; + homepage = "https://github.com/qrilka/xlsx"; + description = "Simple and incomplete Excel file parser/writer"; + license = stdenv.lib.licenses.mit; }) {}; "xlsx-templater" = callPackage @@ -200693,7 +203595,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 @@ -200715,6 +203617,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 @@ -200724,8 +203651,8 @@ self: { }: mkDerivation { pname = "xml-conduit-parse"; - version = "0.3.0.0"; - sha256 = "facc29025b4e969bfa0cb7bbaf68220c95404740d8a11f60b17ebdb31e170f36"; + version = "0.3.1.0"; + sha256 = "62a8aacdd03e216cc1f89882205b933016c0aebe2ed3e113a966c5956ec572d5"; libraryHaskellDepends = [ base conduit conduit-parse containers exceptions parsers text xml-conduit xml-types @@ -201367,20 +204294,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 @@ -201415,18 +204345,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"; @@ -201558,6 +204489,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; }) {}; @@ -202518,16 +205450,13 @@ self: { ({ mkDerivation, base, blank-canvas, stm, text, time, Yampa }: mkDerivation { pname = "yampa-canvas"; - version = "0.2"; - sha256 = "8ac4654effc73092ab61e13655d74363744f37e998a9a68b6024db7c825ff49a"; + version = "0.2.2"; + sha256 = "167c8dc3992d98d879eb281b27a0dbf6fde21ca69992e384df4b5babcdda3e3c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base blank-canvas stm time Yampa ]; - executableHaskellDepends = [ - base blank-canvas stm text time Yampa - ]; - jailbreak = true; - description = "blank-canvas frontend for yampa"; + executableHaskellDepends = [ base blank-canvas text Yampa ]; + description = "blank-canvas frontend for Yampa"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -202774,8 +205703,8 @@ self: { }: mkDerivation { pname = "yes-precure5-command"; - version = "5.5.1"; - sha256 = "6d49ed24d3d3358b390abd5f19b0c59b95fbb59398222c63886ba2aec18fb828"; + version = "5.5.2"; + sha256 = "19ed62fa3277ce1356005bd8715f41526057dd152c9a2c3ab18158431ff0c52a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -203884,6 +206813,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; @@ -203905,6 +206835,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; @@ -204996,8 +207927,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 @@ -205762,7 +208693,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 @@ -205799,6 +208730,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 @@ -205839,18 +208810,21 @@ self: { }) {}; "yesod-csp" = callPackage - ({ mkDerivation, base, hspec, network-uri, semigroups, text, yesod - , yesod-core, yesod-test + ({ mkDerivation, attoparsec, base, hspec, mono-traversable + , network-uri, semigroups, syb, template-haskell, text, uniplate + , yesod, yesod-core, yesod-test }: mkDerivation { pname = "yesod-csp"; - version = "0.1.1.0"; - sha256 = "02338c3b027e18381f098d450b2431ea1127ec49c77fc6e25fcab36f0a84ca94"; + version = "0.2.0.0"; + sha256 = "3804bdbc7b2f40a707c0af2bd6c2586abdc49c0f2eada5b24c488ed126e37280"; libraryHaskellDepends = [ - base network-uri semigroups text yesod yesod-core + attoparsec base mono-traversable network-uri semigroups syb + template-haskell text uniplate yesod yesod-core ]; testHaskellDepends = [ - base hspec network-uri semigroups yesod yesod-test + attoparsec base hspec network-uri semigroups template-haskell yesod + yesod-test ]; description = "Add CSP headers to Yesod apps"; license = stdenv.lib.licenses.mit; @@ -206360,6 +209334,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; @@ -206395,6 +209370,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; @@ -206948,6 +209924,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; }) {}; @@ -207214,6 +210191,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; @@ -207275,8 +210253,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 ]; @@ -207790,8 +210768,8 @@ self: { }: mkDerivation { pname = "yi"; - version = "0.12.2"; - sha256 = "16107755bd53f04a8edd03c2db50be3d7640b8d9503dea17ea923726c4de9e06"; + version = "0.12.3"; + sha256 = "2ce8a6cd30f67839eba0581f8643fd80ff9138059d9b66d3b689cc867b9562b6"; configureFlags = [ "-fpango" "-fvty" ]; isLibrary = true; isExecutable = true; @@ -208199,6 +211177,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"; @@ -208431,6 +211410,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; @@ -208466,7 +211446,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/lib.nix b/pkgs/development/haskell-modules/lib.nix index 7ac30668d8fe363c2cb079afa468d30a5e76d3b5..a3e1b56104d37ac62e88ece769342e350a4b4f5f 100644 --- a/pkgs/development/haskell-modules/lib.nix +++ b/pkgs/development/haskell-modules/lib.nix @@ -33,7 +33,7 @@ rec { addBuildDepends = drv: xs: overrideCabal drv (drv: { buildDepends = (drv.buildDepends or []) ++ xs; }); addPkgconfigDepend = drv: x: addPkgconfigDepends drv [x]; - addPkgconfigDepends = drv: xs: overrideCabal drv (drv: { buildDepends = (drv.pkgconfigDepends or []) ++ xs; }); + addPkgconfigDepends = drv: xs: overrideCabal drv (drv: { pkgconfigDepends = (drv.pkgconfigDepends or []) ++ xs; }); enableCabalFlag = drv: x: appendConfigureFlag (removeConfigureFlag drv "-f-${x}") "-f${x}"; disableCabalFlag = drv: x: appendConfigureFlag (removeConfigureFlag drv "-f${x}") "-f-${x}"; diff --git a/pkgs/development/haskell-modules/patches/xmonad-nix.patch b/pkgs/development/haskell-modules/patches/xmonad-nix.patch index 810d8435a343868d24a52ea76003bfb45be70cde..cfce819747f56b2ecff50e08fd4b8cf16447dcbc 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 670df423a9b14a2b6eb8d53992a03e0b276e82e3..2fc91d6a2dbe31f213ea45602364b9c85229f8d9 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/perl/5.20/default.nix b/pkgs/development/interpreters/perl/5.20/default.nix index eacf8620f7b1838f47ce961150dd96b5cc332cc5..01139121481524c4d3cb7b1c5336a54598532d72 100644 --- a/pkgs/development/interpreters/perl/5.20/default.nix +++ b/pkgs/development/interpreters/perl/5.20/default.nix @@ -21,11 +21,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "perl-5.20.2"; + name = "perl-5.20.3"; src = fetchurl { url = "mirror://cpan/authors/id/S/SH/SHAY/${name}.tar.gz"; - sha256 = "17cvplgpxbm1hshxlkra2fldn4da1iap1lsnb04hdm8ply93k95i"; + sha256 = "0jlvpd5l5nk7lzfd4akdg1sw6vinbkj6izclyyr0lrbidfky691m"; }; # TODO: Add a "dev" output containing the header files. @@ -36,11 +36,9 @@ stdenv.mkDerivation rec { patches = [ # Do not look in /usr etc. for dependencies. ./no-sys-dirs.patch - # Remove in 5.20.3 - ./perl-5.20.2-gcc5_fixes-1.patch ] ++ optional stdenv.isSunOS ./ld-shared.patch - ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ./no-libutil.patch ] ; + ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ]; # There's an annoying bug on sandboxed Darwin in Perl's Cwd.pm where it looks for pwd # in /bin/pwd and /usr/bin/pwd and then falls back on just "pwd" if it can't get them @@ -87,6 +85,9 @@ stdenv.mkDerivation rec { ''} '' + optionalString stdenv.isDarwin '' substituteInPlace hints/darwin.sh --replace "env MACOSX_DEPLOYMENT_TARGET=10.3" "" + '' + optionalString (!enableThreading) '' + # We need to do this because the bootstrap doesn't have a static libpthread + sed -i 's,\(libswanted.*\)pthread,\1,g' Configure ''; preBuild = optionalString (!(stdenv ? cc && stdenv.cc.nativeTools)) diff --git a/pkgs/development/interpreters/perl/5.20/no-libutil.patch b/pkgs/development/interpreters/perl/5.20/no-libutil.patch deleted file mode 100644 index 68d44612bfe603cea06654fdf6396bb859ab4126..0000000000000000000000000000000000000000 --- a/pkgs/development/interpreters/perl/5.20/no-libutil.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru -x '*~' perl-5.14.2-orig/Configure perl-5.14.2/Configure ---- perl-5.14.2-orig/Configure 2011-09-26 11:44:34.000000000 +0200 -+++ perl-5.14.2/Configure 2012-02-16 17:24:50.779839039 +0100 -@@ -1368,7 +1368,7 @@ - : List of libraries we want. - : If anyone needs extra -lxxx, put those in a hint file. - libswanted="socket bind inet nsl nm ndbm gdbm dbm db malloc dl ld sun" --libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" -+libswanted="$libswanted m crypt sec c cposix posix ucb bsd BSD" - : We probably want to search /usr/shlib before most other libraries. - : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. - glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` diff --git a/pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch b/pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch deleted file mode 100644 index 21f3ca8d7a54555cd779a54526dc438283e5b175..0000000000000000000000000000000000000000 --- a/pkgs/development/interpreters/perl/5.20/perl-5.20.2-gcc5_fixes-1.patch +++ /dev/null @@ -1,127 +0,0 @@ -Submitted By: Ken Moffat -Date: 2015-04-17 -Initial Package Version: 5.20.2 -Upstream Status: Committed -Origin: Petr Pisař and Tony Cook -Description: Fixes Errno.pm and h2ph with gcc-5. - -1. cherry-picked because the change to $version will not apply, from -commit 816b056ffb99ae54642320e20dc30a59fd1effef -Author: Petr Písař -Date: Wed Feb 11 15:46:37 2015 +0100 - - Fix Errno.pm generation for gcc-5.0 - - gcc-5.0 -E interleaves now line numbers with expended macros, so that - the generated errno.c will be preprocessed to - - EBFONT => [[ - 59 - ]] - - which is hard to parse in in line-based reader. - - So use -P option with gcc >= 5.0. Global -P usage would break makedepend, - global -ftrack-macro-expansion=0 would break lib/h2ph.t. - - RT#123784 - -diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL -index 3dadfce..c6bfa06 100644 ---- a/ext/Errno/Errno_pm.PL -+++ b/ext/Errno/Errno_pm.PL -@@ -215,20 +215,31 @@ sub write_errno_pm { - { # BeOS (support now removed) did not enter this block - # invoke CPP and read the output - -+ my $inhibit_linemarkers = ''; -+ if ($Config{gccversion} =~ /\A(\d+)\./ and $1 >= 5) { -+ # GCC 5.0 interleaves expanded macros with line numbers breaking -+ # each line into multiple lines. RT#123784 -+ $inhibit_linemarkers = ' -P'; -+ } -+ - if ($^O eq 'VMS') { -- my $cpp = "$Config{cppstdin} $Config{cppflags} $Config{cppminus}"; -+ my $cpp = "$Config{cppstdin} $Config{cppflags}" . -+ $inhibit_linemarkers . " $Config{cppminus}"; - $cpp =~ s/sys\$input//i; - open(CPPO,"$cpp errno.c |") or - die "Cannot exec $Config{cppstdin}"; - } elsif ($IsMSWin32 || $^O eq 'NetWare') { -- open(CPPO,"$Config{cpprun} $Config{cppflags} errno.c |") or -- die "Cannot run '$Config{cpprun} $Config{cppflags} errno.c'"; -+ my $cpp = "$Config{cpprun} $Config{cppflags}" . -+ $inhibit_linemarkers; -+ open(CPPO,"$cpp errno.c |") or -+ die "Cannot run '$cpp errno.c'"; - } elsif ($IsSymbian) { -- my $cpp = "gcc -E -I$ENV{SDK}\\epoc32\\include\\libc -"; -+ my $cpp = "gcc -E -I$ENV{SDK}\\epoc32\\include\\libc" . -+ $inhibit_linemarkers ." -"; - open(CPPO,"$cpp < errno.c |") - or die "Cannot exec $cpp"; - } else { -- my $cpp = default_cpp(); -+ my $cpp = default_cpp() . $inhibit_linemarkers; - open(CPPO,"$cpp < errno.c |") - or die "Cannot exec $cpp"; - } - -commit 3bea78d24634e630b610f59957e7a019205a67b2 -Author: Tony Cook -Date: Mon Feb 16 15:57:00 2015 +1100 - - h2ph: correct handling of hex constants for the preamble - - Previously they were treated as identifiers resulting in code - generated like C< &0xFFF >. - - We also try to prevent compile-time warnings from large hex integers, - the user isn't responsible for the generated code, so we delay those - warnings to run-time. - -diff --git a/utils/h2ph.PL b/utils/h2ph.PL -index 9a8b14d..d082f22 100644 ---- a/utils/h2ph.PL -+++ b/utils/h2ph.PL -@@ -769,7 +769,7 @@ sub inc_dirs - sub build_preamble_if_necessary - { - # Increment $VERSION every time this function is modified: -- my $VERSION = 3; -+ my $VERSION = 4; - my $preamble = "$Dest_dir/_h2ph_pre.ph"; - - # Can we skip building the preamble file? -@@ -788,6 +788,11 @@ sub build_preamble_if_necessary - - open PREAMBLE, ">$preamble" or die "Cannot open $preamble: $!"; - print PREAMBLE "# This file was created by h2ph version $VERSION\n"; -+ # Prevent non-portable hex constants from warning. -+ # -+ # We still produce an overflow warning if we can't represent -+ # a hex constant as an integer. -+ print PREAMBLE "no warnings qw(portable);\n"; - - foreach (sort keys %define) { - if ($opt_D) { -@@ -814,6 +819,18 @@ DEFINE - # integer: - print PREAMBLE - "unless (defined &$_) { sub $_() { $1 } }\n\n"; -+ } elsif ($define{$_} =~ /^([+-]?0x[\da-f]+)U?L{0,2}$/i) { -+ # hex integer -+ # Special cased, since perl warns on hex integers -+ # that can't be represented in a UV. -+ # -+ # This way we get the warning at time of use, so the user -+ # only gets the warning if they happen to use this -+ # platform-specific definition. -+ my $code = $1; -+ $code = "hex('$code')" if length $code > 10; -+ print PREAMBLE -+ "unless (defined &$_) { sub $_() { $code } }\n\n"; - } elsif ($define{$_} =~ /^\w+$/) { - my $def = $define{$_}; - if ($isatype{$def}) { diff --git a/pkgs/development/interpreters/perl/5.22/default.nix b/pkgs/development/interpreters/perl/5.22/default.nix index 99ae93c77b50a7ace51b7698f8d364a5f7bf0045..c4635fd71e19c42b7fe81d60444c412bcbcd6468 100644 --- a/pkgs/development/interpreters/perl/5.22/default.nix +++ b/pkgs/development/interpreters/perl/5.22/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { ./no-sys-dirs.patch ] ++ optional stdenv.isSunOS ./ld-shared.patch - ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ./no-libutil.patch ]; + ++ stdenv.lib.optional stdenv.isDarwin [ ./cpp-precomp.patch ]; # Build a thread-safe Perl with a dynamic libperls.o. We need the # "installstyle" option to ensure that modules are put under diff --git a/pkgs/development/interpreters/perl/5.22/no-libutil.patch b/pkgs/development/interpreters/perl/5.22/no-libutil.patch deleted file mode 100644 index d6356a5243706e31fc3eef7974df10d3ca202ba3..0000000000000000000000000000000000000000 --- a/pkgs/development/interpreters/perl/5.22/no-libutil.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/Configure b/Configure -index 0a405d3..1871298 100755 ---- a/Configure -+++ b/Configure -@@ -1455,7 +1455,7 @@ libswanted_uselargefiles='' - : List of libraries we want. - : If anyone needs extra -lxxx, put those in a hint file. - libswanted="cl pthread socket bind inet nsl nm ndbm gdbm dbm db malloc dl ld" --libswanted="$libswanted sun m crypt sec util c cposix posix ucb bsd BSD" -+libswanted="$libswanted sun m crypt sec c cposix posix ucb bsd BSD" - : We probably want to search /usr/shlib before most other libraries. - : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. - glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` - diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index bde21afea9d093f207c37f1193d6136570cf4970..d263b9f40eac44809cb05f48dd048ab4da5a215d 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -309,8 +309,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 dd6338cd813dac63c182ea19cc7e515d570a10e0..bbc38226266b1b6bede90f68e9a45ffd5432c43c 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/interpreters/ruby/patchsets.nix b/pkgs/development/interpreters/ruby/patchsets.nix index 5f270dfe9c7128469facc457a1925627cf07224e..286301dc0a5d4faa69d356964f552ad8647f185a 100644 --- a/pkgs/development/interpreters/ruby/patchsets.nix +++ b/pkgs/development/interpreters/ruby/patchsets.nix @@ -1,7 +1,8 @@ { patchSet, useRailsExpress, ops, patchLevel }: -let self = rec { +rec { "1.9.3" = [ + ./ssl_v3.patch ./ruby19-parallel-install.patch ./bitperfect-rdoc.patch ] ++ ops useRailsExpress [ @@ -25,13 +26,17 @@ let self = rec { "${patchSet}/patches/ruby/1.9.3/p${patchLevel}/railsexpress/18-fix-missing-c-return-event.patch" "${patchSet}/patches/ruby/1.9.3/p${patchLevel}/railsexpress/19-fix-process-daemon-call.patch" ]; - "2.0.0" = ops useRailsExpress [ + "2.0.0" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/02-railsexpress-gc.patch" "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/03-display-more-detailed-stack-trace.patch" "${patchSet}/patches/ruby/2.0.0/p${patchLevel}/railsexpress/04-show-full-backtrace-on-stack-overflow.patch" ]; - "2.1.0" = ops useRailsExpress [ + "2.1.0" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.0/railsexpress/01-current-2.1.1-fixes.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/02-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/03-improve-gc-stats.patch" @@ -45,7 +50,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.0/railsexpress/11-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/12-backport-r44370.patch" ]; - "2.1.1" = ops useRailsExpress [ + "2.1.1" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.0/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -58,7 +65,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.0/railsexpress/11-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.0/railsexpress/12-backport-r44370.patch" ]; - "2.1.2" = ops useRailsExpress [ + "2.1.2" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.2/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.2/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.2/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -70,7 +79,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.2/railsexpress/09-aman-opt-aset-aref-str.patch" "${patchSet}/patches/ruby/2.1.2/railsexpress/10-funny-falcon-method-cache.patch" ]; - "2.1.3" = ops useRailsExpress [ + "2.1.3" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.3/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.3/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.3/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -80,7 +91,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.3/railsexpress/07-aman-opt-aset-aref-str.patch" "${patchSet}/patches/ruby/2.1.3/railsexpress/08-funny-falcon-method-cache.patch" ]; - "2.1.6" = ops useRailsExpress [ + "2.1.6" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.6/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.6/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.6/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -91,7 +104,9 @@ let self = rec { "${patchSet}/patches/ruby/2.1.6/railsexpress/08-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.6/railsexpress/09-heap-dump-support.patch" ]; - "2.1.7" = ops useRailsExpress [ + "2.1.7" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.1.7/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.1.7/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.1.7/railsexpress/03-display-more-detailed-stack-trace.patch" @@ -102,22 +117,28 @@ let self = rec { "${patchSet}/patches/ruby/2.1.7/railsexpress/08-funny-falcon-method-cache.patch" "${patchSet}/patches/ruby/2.1.7/railsexpress/09-heap-dump-support.patch" ]; - "2.2.0" = ops useRailsExpress [ + "2.2.0" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.2.0/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/03-display-more-detailed-stack-trace.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/04-backport-401c8bb.patch" "${patchSet}/patches/ruby/2.2.0/railsexpress/05-fix-packed-bitfield-compat-warning-for-older-gccs.patch" ]; - "2.2.2" = ops useRailsExpress [ + "2.2.2" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.2.2/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.2.2/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.2/railsexpress/03-display-more-detailed-stack-trace.patch" "${patchSet}/patches/ruby/2.2.2/railsexpress/04-backported-bugfixes-222.patch" ]; - "2.2.3" = ops useRailsExpress [ + "2.2.3" = [ + ./ssl_v3.patch + ] ++ ops useRailsExpress [ "${patchSet}/patches/ruby/2.2.3/railsexpress/01-zero-broken-tests.patch" "${patchSet}/patches/ruby/2.2.3/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.3/railsexpress/03-display-more-detailed-stack-trace.patch" ]; -}; in self +} diff --git a/pkgs/development/interpreters/ruby/ssl_v3.patch b/pkgs/development/interpreters/ruby/ssl_v3.patch new file mode 100644 index 0000000000000000000000000000000000000000..faa4021657513c069d7822bbc1550f5820f1fd8a --- /dev/null +++ b/pkgs/development/interpreters/ruby/ssl_v3.patch @@ -0,0 +1,16 @@ +--- a/ext/openssl/ossl_ssl.c 2015-11-26 16:41:03.775058140 +0000 ++++ b/ext/openssl/ossl_ssl.c 2015-11-26 16:40:56.191907346 +0000 +@@ -138,9 +138,12 @@ + OSSL_SSL_METHOD_ENTRY(SSLv2_server), + OSSL_SSL_METHOD_ENTRY(SSLv2_client), + #endif ++#if defined(HAVE_SSLV3_METHOD) && defined(HAVE_SSLV3_SERVER_METHOD) && \ ++ defined(HAVE_SSLV3_CLIENT_METHOD) + OSSL_SSL_METHOD_ENTRY(SSLv3), + OSSL_SSL_METHOD_ENTRY(SSLv3_server), + OSSL_SSL_METHOD_ENTRY(SSLv3_client), ++#endif + OSSL_SSL_METHOD_ENTRY(SSLv23), + OSSL_SSL_METHOD_ENTRY(SSLv23_server), + OSSL_SSL_METHOD_ENTRY(SSLv23_client), + diff --git a/pkgs/development/interpreters/spidermonkey/default.nix b/pkgs/development/interpreters/spidermonkey/default.nix index e8d548df548686ffb1271258d2856756595afdfb..b7744ea53c38ea55965d2d398e4bab9791695c2f 100644 --- a/pkgs/development/interpreters/spidermonkey/default.nix +++ b/pkgs/development/interpreters/spidermonkey/default.nix @@ -2,9 +2,9 @@ stdenv.mkDerivation rec { name = "spidermonkey-1.7"; - + src = fetchurl { - url = ftp://ftp.mozilla.org/pub/mozilla.org/js/js-1.7.0.tar.gz; + url = https://ftp.mozilla.org/pub/js/js-1.7.0.tar.gz; sha256 = "12v6v2ccw1y6ng3kny3xw0lfs58d1klylqq707k0x04m707kydj4"; }; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { makefileExtra = ./Makefile.extra; makefile = "Makefile.ref"; - + patchPhase = '' cat ${makefileExtra} >> ${makefile} diff --git a/pkgs/development/libraries/accounts-qt/old.nix b/pkgs/development/libraries/accounts-qt/old.nix deleted file mode 100644 index 26a04362090c7cfcf3e24e3059ec8d853d51ff1e..0000000000000000000000000000000000000000 --- 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 38d734e902c3c668fe8b3a959fba494d73b768e8..5af340bef07ab4a16a1c04cdc5aafae6a342d569 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/despotify/default.nix b/pkgs/development/libraries/despotify/default.nix index 2cb241b04276fc032814fdbf7a0ea082e7820e10..e774a9e923be6087590ebc67037e5a8434ff0509 100644 --- a/pkgs/development/libraries/despotify/default.nix +++ b/pkgs/development/libraries/despotify/default.nix @@ -10,6 +10,7 @@ stdenv.mkDerivation rec { src = fetchsvn { url = "http://svn.code.sf.net/p/despotify/code"; rev = "521"; + sha256 = "1vc453bv5ngkvaqkq7z5bj6x28m4kik59153jikcfah3k4qmxw21"; }; buildInputs = [ diff --git a/pkgs/development/libraries/fmod/4.24.16.nix b/pkgs/development/libraries/fmod/4.24.16.nix index d1768d656b4d19b00e24eb17f0eb92f6686aa992..b78b1a46e2572a0fc32562f6a6e298ab9e123ad4 100644 --- a/pkgs/development/libraries/fmod/4.24.16.nix +++ b/pkgs/development/libraries/fmod/4.24.16.nix @@ -11,12 +11,12 @@ let src = (if (bits == "64") then fetchurl { - url = "http://www.fmod.org/download/fmodex/api/Linux/fmodapi42416linux64.tar.gz"; + url = "http://zandronum.com/essentials/fmod/fmodapi42416linux64.tar.gz"; sha256 = "0hkwlzchzzgd7fanqznbv5bs53z2qy8iiv9l2y77l4sg1jwmlm6y"; } else fetchurl { - url = "http://www.fmod.org/download/fmodex/api/Linux/fmodapi42416linux.tar.gz"; + url = "http://zandronum.com/essentials/fmod/fmodapi42416linux.tar.gz"; sha256 = "13diw3ax2slkr99mwyjyc62b8awc30k0z08cvkpk2p3i1j6f85m5"; } ); @@ -28,23 +28,26 @@ stdenv.mkDerivation rec { version = "4.24.16"; dontStrip = true; + dontPatchELF = true; + + makeFlags = [ "DESTLIBDIR=$(out)/lib" "DESTHDRDIR=$(out)/include" ]; + buildPhase = "true"; - installPhase = '' - mkdir -p $out/lib $out/include/fmodex - cd api/inc && cp * $out/include/fmodex && cd ../lib - cp libfmodex${bits}-${version}.so $out/lib/libfmodex.so - cp libfmodex${bits}L-${version}.so $out/lib/libfmodexL.so + preInstall = '' + mkdir -p $out/lib + ''; - ${patchLib "$out/lib/libfmodex.so"} - ${patchLib "$out/lib/libfmodexL.so"} + postInstall = '' + mv $out/lib/libfmodex${bits}-${version}.so $out/lib/libfmodex.so + mv $out/lib/libfmodexp${bits}-${version}.so $out/lib/libfmodexp.so ''; - meta = { + meta = with stdenv.lib; { description = "Programming library and toolkit for the creation and playback of interactive audio"; homepage = "http://www.fmod.org/"; - license = stdenv.lib.licenses.unfreeRedistributable; - platforms = stdenv.lib.platforms.linux; + license = licenses.unfreeRedistributable; + platforms = platforms.linux; maintainers = [ stdenv.lib.maintainers.lassulus ]; }; } diff --git a/pkgs/development/libraries/geoclue/2.0.nix b/pkgs/development/libraries/geoclue/2.0.nix index 88545bf732c2e781e79bf2f4e96b584c68e5723a..73d3bb92e7ec214bf2680625342b1302ddb7ee3d 100644 --- a/pkgs/development/libraries/geoclue/2.0.nix +++ b/pkgs/development/libraries/geoclue/2.0.nix @@ -1,18 +1,18 @@ { fetchurl, stdenv, intltool, pkgconfig, glib, json_glib, libsoup, geoip -, dbus, dbus_glib, networkmanager, modemmanager +, dbus, dbus_glib, modemmanager, avahi }: stdenv.mkDerivation rec { - name = "geoclue-2.1.10"; + name = "geoclue-2.4.1"; src = fetchurl { - url = "http://www.freedesktop.org/software/geoclue/releases/2.1/${name}.tar.xz"; - sha256 = "0s0ws2bx5g1cbjamxmm448r4n4crha2fwpzm8zbx6cq6qslygmzi"; + url = "http://www.freedesktop.org/software/geoclue/releases/2.4/${name}.tar.xz"; + sha256 = "1m1l1npdv804m98xhfpd1wl1whrrp2pjivliwwlnyk86yq0gs6cs"; }; buildInputs = [ intltool pkgconfig glib json_glib libsoup geoip - dbus dbus_glib networkmanager modemmanager + dbus dbus_glib modemmanager avahi ]; preConfigure = '' diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index b32b126cfe8c5e4436bf539a82112d8c47c13b98..cebcf4e014b5f341cab5dcefce8aacbe169ae179 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -28,6 +28,12 @@ stdenv.mkDerivation (rec { "gt_cv_func_CFLocaleCopyCurrent=no" ]); + patchPhase = '' + substituteInPlace gettext-tools/projects/KDE/trigger --replace "/bin/pwd" pwd + substituteInPlace gettext-tools/projects/GNOME/trigger --replace "/bin/pwd" pwd + substituteInPlace gettext-tools/src/project-id --replace "/bin/pwd" pwd + ''; + # On cross building, gettext supposes that the wchar.h from libc # does not fulfill gettext needs, so it tries to work with its # own wchar.h file, which does not cope well with the system's @@ -90,8 +96,8 @@ stdenv.mkDerivation (rec { # Make sure `error.c' gets compiled and is part of `libgettextlib.la'. # This fixes: # gettext-0.18.1.1/gettext-tools/src/msgcmp.c:371: undefined reference to `_error_message_count' - - '' sed -i gettext-tools/gnulib-lib/Makefile.in \ + '' + sed -i gettext-tools/gnulib-lib/Makefile.in \ -e 's/am_libgettextlib_la_OBJECTS =/am_libgettextlib_la_OBJECTS = error.lo/g' ''; }) diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 03881a41aa5c5e0d6d752151e37eaff8558c2884..8a13cb6fe608c2a9289f61069bd700690f65c635 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -61,6 +61,8 @@ stdenv.mkDerivation ({ ./security-bdf1ff05.patch ./cve-2014-8121.patch ./cve-2015-1781.patch + + ./glibc-locale-incompatibility.patch ]; postPatch = diff --git a/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch b/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch new file mode 100644 index 0000000000000000000000000000000000000000..8ca2ce4cd88a42ce2f4edba65b705ec428a34c7a --- /dev/null +++ b/pkgs/development/libraries/glibc/glibc-locale-incompatibility.patch @@ -0,0 +1,25 @@ +http://git.savannah.gnu.org/cgit/guix.git/plain/gnu/packages/patches/glibc-locale-incompatibility.patch + +This patch avoids an assertion failure when incompatible locale data +is encountered: + + https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html + +--- glibc-2.22/locale/loadlocale.c 2015-09-22 17:16:02.321981548 +0200 ++++ glibc-2.22/locale/loadlocale.c 2015-09-22 17:17:34.814659064 +0200 +@@ -120,10 +120,11 @@ + _nl_value_type_LC_XYZ array. There are all pointers. */ + switch (category) + { +-#define CATTEST(cat) \ +- case LC_##cat: \ +- assert (cnt < (sizeof (_nl_value_type_LC_##cat) \ +- / sizeof (_nl_value_type_LC_##cat[0]))); \ ++#define CATTEST(cat) \ ++ case LC_##cat: \ ++ if (cnt >= (sizeof (_nl_value_type_LC_##cat) \ ++ / sizeof (_nl_value_type_LC_##cat[0]))) \ ++ goto puntdata; \ + break + CATTEST (NUMERIC); + CATTEST (TIME); 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 4127280fb9a2fa7d5d41b09487bc4b1d77497da8..0000000000000000000000000000000000000000 --- 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 0000000000000000000000000000000000000000..ee505b54e7e29687d7d1e6c1c990c971efb718f8 --- /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 25f530ecfef61251dc8278c473f90be8b442ac57..44e52b99d71b836879cd43d2b2b4d6cf9e2b510e 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, ncurses +, glib, gstreamer, bzip2, libsoup, libshout, ncurses, 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 99ac5a5ec54117a83f767ef6887ffe29b8f2083e..8e4e662dc3b374eb108a9f39444b30d7d60076b6 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 0000000000000000000000000000000000000000..daa4f7fb9f2132d837863ffa0900ee5b3fffc7fd --- /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/java/jzmq/default.nix b/pkgs/development/libraries/java/jzmq/default.nix index 508b188aef72c3cbc01d91639dbec1ac1c5587b6..4576c1a1c72b3cbb3453cb5ae568ac5093747a84 100644 --- a/pkgs/development/libraries/java/jzmq/default.nix +++ b/pkgs/development/libraries/java/jzmq/default.nix @@ -6,6 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/zeromq/jzmq.git; rev = "946fd39780423b2df6e5efd9fa2cd863fd79c9db"; + sha256 = "0j6kfmngqw2gpyxc1ak67d65l208vrb0h8bm8svclia8b339m37a"; }; buildInputs = [ automake autoconf libtool pkgconfig zeromq2 jdk ]; diff --git a/pkgs/development/libraries/java/rhino/default.nix b/pkgs/development/libraries/java/rhino/default.nix index 74aa8c9ba162739a23c23b2a6921949877c40046..87958512925f7cb56937c20abfde5873bd3a913c 100644 --- a/pkgs/development/libraries/java/rhino/default.nix +++ b/pkgs/development/libraries/java/rhino/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { name = "rhino-${version}"; src = fetchurl { - url = "ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R2.zip"; + url = "https://ftp.mozilla.org/pub/js/rhino1_7R2.zip"; sha256 = "1p32hkghi6bkc3cf2dcqyaw5cjj7403mykcp0fy8f5bsnv0pszv7"; }; diff --git a/pkgs/development/libraries/kde-frameworks-5.15/default.nix b/pkgs/development/libraries/kde-frameworks-5.15/default.nix deleted file mode 100644 index 6b6b95ab3c70afc84f8d7dd9399d7a4ae2cb4ac8..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/default.nix +++ /dev/null @@ -1,112 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib makeSetupHook stdenv; - - mirror = "mirror://kde"; - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - addPackages = self: with self; { - attica = callPackage ./attica.nix {}; - baloo = callPackage ./baloo.nix {}; - bluez-qt = callPackage ./bluez-qt.nix {}; - extra-cmake-modules = callPackage ./extra-cmake-modules {}; - frameworkintegration = callPackage ./frameworkintegration.nix {}; - kactivities = callPackage ./kactivities.nix {}; - kapidox = callPackage ./kapidox.nix {}; - karchive = callPackage ./karchive.nix {}; - kauth = callPackage ./kauth {}; - kbookmarks = callPackage ./kbookmarks.nix {}; - kcmutils = callPackage ./kcmutils {}; - kcodecs = callPackage ./kcodecs.nix {}; - kcompletion = callPackage ./kcompletion.nix {}; - kconfig = callPackage ./kconfig.nix {}; - kconfigwidgets = callPackage ./kconfigwidgets {}; - kcoreaddons = callPackage ./kcoreaddons.nix {}; - kcrash = callPackage ./kcrash.nix {}; - kdbusaddons = callPackage ./kdbusaddons.nix {}; - kdeclarative = callPackage ./kdeclarative.nix {}; - kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support.nix {}; - kdesignerplugin = callPackage ./kdesignerplugin.nix {}; - kdewebkit = callPackage ./kdewebkit.nix {}; - kdesu = callPackage ./kdesu.nix {}; - kdnssd = callPackage ./kdnssd.nix {}; - kdoctools = callPackage ./kdoctools {}; - kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata.nix {}; - kglobalaccel = callPackage ./kglobalaccel.nix {}; - kguiaddons = callPackage ./kguiaddons.nix {}; - khtml = callPackage ./khtml.nix {}; - ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes.nix {}; - kidletime = callPackage ./kidletime.nix {}; - kimageformats = callPackage ./kimageformats.nix {}; - kinit = callPackage ./kinit {}; - kio = callPackage ./kio.nix {}; - kitemmodels = callPackage ./kitemmodels.nix {}; - kitemviews = callPackage ./kitemviews.nix {}; - kjobwidgets = callPackage ./kjobwidgets.nix {}; - kjs = callPackage ./kjs.nix {}; - kjsembed = callPackage ./kjsembed.nix {}; - kmediaplayer = callPackage ./kmediaplayer.nix {}; - knewstuff = callPackage ./knewstuff.nix {}; - knotifications = callPackage ./knotifications.nix {}; - knotifyconfig = callPackage ./knotifyconfig.nix {}; - kpackage = callPackage ./kpackage {}; - kparts = callPackage ./kparts.nix {}; - kpeople = callPackage ./kpeople.nix {}; - kplotting = callPackage ./kplotting.nix {}; - kpty = callPackage ./kpty.nix {}; - kross = callPackage ./kross.nix {}; - krunner = callPackage ./krunner.nix {}; - kservice = callPackage ./kservice {}; - ktexteditor = callPackage ./ktexteditor {}; - ktextwidgets = callPackage ./ktextwidgets.nix {}; - kunitconversion = callPackage ./kunitconversion.nix {}; - kwallet = callPackage ./kwallet.nix {}; - kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; - kwindowsystem = callPackage ./kwindowsystem.nix {}; - kxmlgui = callPackage ./kxmlgui.nix {}; - kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; - modemmanager-qt = callPackage ./modemmanager-qt.nix {}; - networkmanager-qt = callPackage ./networkmanager-qt.nix {}; - plasma-framework = callPackage ./plasma-framework {}; - solid = callPackage ./solid.nix {}; - sonnet = callPackage ./sonnet.nix {}; - threadweaver = callPackage ./threadweaver.nix {}; - }; - - newScope = scope: pkgs.qt55Libs.newScope ({ inherit kdeFramework; } // scope); - -in lib.makeScope newScope addPackages diff --git a/pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh deleted file mode 100755 index e7f6d9e00e5c9d461e31ffe775ae7dbf98e13db6..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.15/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix deleted file mode 100644 index 43c21bb51ef577ba5ca4c092e13068ca1a868963..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kcoreaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, shared_mime_info -}: - -kdeFramework { - name = "kcoreaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ shared_mime_info ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix deleted file mode 100644 index 28df24153208c0f530fa69661cdeb82e077e5d49..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kdesignerplugin.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kdewebkit -, kdoctools -, kiconthemes -, kio -, kitemviews -, kplotting -, ktextwidgets -, kwidgetsaddons -, kxmlgui -, sonnet -}: - -kdeFramework { - name = "kdesignerplugin"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ kio sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix deleted file mode 100644 index 92ca1f26b93b6df873215b5f1c9429f633d37b0f..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kfilemetadata.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, popplerQt, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive popplerQt taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix deleted file mode 100644 index 915e3294b465dd9a252533dddf36b7d2b83f60a1..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/ki18n.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, gettext -, python -, qtscript -}: - -kdeFramework { - name = "ki18n"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtscript ]; - propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix deleted file mode 100644 index 02b516afedc64cbcd34437dda214f02c143a7516..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kiconthemes.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets, ki18n -, kitemviews, qtsvg -}: - -kdeFramework { - name = "kiconthemes"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kio.nix b/pkgs/development/libraries/kde-frameworks-5.15/kio.nix deleted file mode 100644 index 0789828d812bb51f61138ecba205213c04cb6eea..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kio.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, acl, karchive -, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews -, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper -, qtscript, qtx11extras, solid -}: - -kdeFramework { - name = "kio"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; - propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix deleted file mode 100644 index b3b8b39932de8b09d5f873df0e112eea8a8fbb25..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/kxmlgui.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, kconfig -, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews -, ktextwidgets, kwindowsystem, sonnet -}: - -kdeFramework { - name = "kxmlgui"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kconfigwidgets kiconthemes kitemviews - ktextwidgets - ]; - propagatedBuildInputs = [ kglobalaccel ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.15/srcs.nix deleted file mode 100644 index fd4998c49ba86751afebff1fb918821b8ab3d6ed..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.15/srcs.nix +++ /dev/null @@ -1,549 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/attica-5.15.0.tar.xz"; - sha256 = "0gddapcl2m5gds8f341z0954qlllx22xbd51649lri429aw2ijcl"; - name = "attica-5.15.0.tar.xz"; - }; - }; - baloo = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/baloo-5.15.0.tar.xz"; - sha256 = "10qwxljzhl8wagfmvdbrmqlzk68jkrp703d232fr7gvz3qrmdpbz"; - name = "baloo-5.15.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/bluez-qt-5.15.0.tar.xz"; - sha256 = "15k242ifj3mfy0g0v7h504zn07cvahc70whc6n9yr0091j1azf5f"; - name = "bluez-qt-5.15.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/extra-cmake-modules-5.15.0.tar.xz"; - sha256 = "1g02dcbx1r0n2skrhmc6d3pckqvbii7ai91chlkwcdd8vzd4lgcg"; - name = "extra-cmake-modules-5.15.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/frameworkintegration-5.15.0.tar.xz"; - sha256 = "06sacinx3g3hrs11v67k7j8ddp5swasjrw6x36ng3mr81i2ksyia"; - name = "frameworkintegration-5.15.0.tar.xz"; - }; - }; - kactivities = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kactivities-5.15.0.tar.xz"; - sha256 = "0h9f78f8r5z5jarxph168h1m0zvz2zhd8iq6gc9sg09044xn1lnq"; - name = "kactivities-5.15.0.tar.xz"; - }; - }; - kapidox = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kapidox-5.15.0.tar.xz"; - sha256 = "1342j7459rafz1ns0nnlh1i65c05cd6l3c4sh1j75qgl0pjnrvcq"; - name = "kapidox-5.15.0.tar.xz"; - }; - }; - karchive = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/karchive-5.15.0.tar.xz"; - sha256 = "1s5mggi0vydg9w589qk4fp4qbhj7h9wcczn6k7j41bcqdapxzdfh"; - name = "karchive-5.15.0.tar.xz"; - }; - }; - kauth = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kauth-5.15.0.tar.xz"; - sha256 = "1nhrfbfasmg8a9gj94ri5qcvrdhhb204miv3i5y59ma09hd1xag2"; - name = "kauth-5.15.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kbookmarks-5.15.0.tar.xz"; - sha256 = "1y21679a37lspwf02vy687k5najap18x7hxd8k8hssdivjvg43z8"; - name = "kbookmarks-5.15.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcmutils-5.15.0.tar.xz"; - sha256 = "0syk030b89z90aa85d1mlag613yaajipgfxxfxnp3f488s54qn6z"; - name = "kcmutils-5.15.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcodecs-5.15.0.tar.xz"; - sha256 = "1kz8vbxblzf0lxcn6c2433lhgi2iyvqsm65qxsvf5zgxckq5277p"; - name = "kcodecs-5.15.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcompletion-5.15.0.tar.xz"; - sha256 = "1mq110fg30y3xdmjicckysz3k5ylz92hz609ffjnm2svk56w5cny"; - name = "kcompletion-5.15.0.tar.xz"; - }; - }; - kconfig = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kconfig-5.15.0.tar.xz"; - sha256 = "083g4pr5sbqvpdn3ic3afbjzvczxl095rj0pi34g2b28anpwhjvn"; - name = "kconfig-5.15.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kconfigwidgets-5.15.0.tar.xz"; - sha256 = "0gkq7ifgyf7865ypxf4cwqkndn4qrp07k8wxp8fl0xa15d74nrj3"; - name = "kconfigwidgets-5.15.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcoreaddons-5.15.0.tar.xz"; - sha256 = "1v06bblxrxcwj9sbsz7xvqq6yg231m939pms8w0bbmyidsq4vpdm"; - name = "kcoreaddons-5.15.0.tar.xz"; - }; - }; - kcrash = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kcrash-5.15.0.tar.xz"; - sha256 = "1631wmg895bb4ls2mfxnlnffmzl1mjm82ad8fk361gv0s9g0xb3y"; - name = "kcrash-5.15.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdbusaddons-5.15.0.tar.xz"; - sha256 = "1w32ra4ifhb2k2k2j3dfqrrc65w0rsmj9yr34k0flqiqs0mq1pfx"; - name = "kdbusaddons-5.15.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdeclarative-5.15.0.tar.xz"; - sha256 = "06xv552v52zp9qb5v6w3cps9nm3wpacpjvm8s08zmij1y7by0z32"; - name = "kdeclarative-5.15.0.tar.xz"; - }; - }; - kded = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kded-5.15.0.tar.xz"; - sha256 = "144lfjx6gmbhqqwdv4ll1ab4rj3pcyn8bp9yp4snzh6v2a2hncwq"; - name = "kded-5.15.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kdelibs4support-5.15.0.tar.xz"; - sha256 = "1091nc3rrcq360sillynvmxwvmd209cnlql6g9x249zdxjpv62qy"; - name = "kdelibs4support-5.15.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdesignerplugin-5.15.0.tar.xz"; - sha256 = "0my6x0fx72dk65z6lajn1faxifc622msvll6jab0rk50x8ws9dwq"; - name = "kdesignerplugin-5.15.0.tar.xz"; - }; - }; - kdesu = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdesu-5.15.0.tar.xz"; - sha256 = "0cnqd0gm5xyqsqngl0x6rs0f01bilcfv8xx1ry9hfnqffv9amr9y"; - name = "kdesu-5.15.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdewebkit-5.15.0.tar.xz"; - sha256 = "1cgwhb5nr6g6y3azp2ii0hdjlvwacdr94ldlsirqmzl7rymkgkqa"; - name = "kdewebkit-5.15.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdnssd-5.15.0.tar.xz"; - sha256 = "1z5d26pmc9vmf30zz35kcl585fpjfrp8xf5r13lfwnnbfr6pnh0k"; - name = "kdnssd-5.15.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kdoctools-5.15.0.tar.xz"; - sha256 = "0vci37val64ixcz7zr99gzdqlb0ff04gdj2kad5dj32295iixhva"; - name = "kdoctools-5.15.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kemoticons-5.15.0.tar.xz"; - sha256 = "0a3izq6w3w37qd6b6w2g179w9nrh5pwh8hnc4iggyr2wwf2hfw9c"; - name = "kemoticons-5.15.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kfilemetadata-5.15.0.tar.xz"; - sha256 = "1y90azm27mnw2wfilwmg1gls21fpnd2nzvdl26vrhpsvnclf8rqn"; - name = "kfilemetadata-5.15.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kglobalaccel-5.15.0.tar.xz"; - sha256 = "1ii7bd1rf038zjimz7nd2snfi76drqdnyrkivwd6np4fdvcsyhjr"; - name = "kglobalaccel-5.15.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kguiaddons-5.15.0.tar.xz"; - sha256 = "0pfcns136i0ghk32gyr7nnq7wnk2j8rmcr3jr18f1y9pkk3ih6q8"; - name = "kguiaddons-5.15.0.tar.xz"; - }; - }; - khtml = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/khtml-5.15.0.tar.xz"; - sha256 = "01gx1qd7hhvyhzndin8kw9yg3jlz8rz7i8kxbl6wpab9sc270a70"; - name = "khtml-5.15.0.tar.xz"; - }; - }; - ki18n = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/ki18n-5.15.0.tar.xz"; - sha256 = "0qy7nv4ssjbyskjhnx8sr6vg9jwg183f6zd759rzp56pz5j79qdd"; - name = "ki18n-5.15.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kiconthemes-5.15.0.tar.xz"; - sha256 = "0ab9iki3jl4izzjph9bps04w7grimyyaaxsna6j0dzg90izg1zg2"; - name = "kiconthemes-5.15.0.tar.xz"; - }; - }; - kidletime = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kidletime-5.15.0.tar.xz"; - sha256 = "0gp6grv6a9zb14yfrznwn5ih1946v500zlj5g9s8f1xw5p0792i2"; - name = "kidletime-5.15.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kimageformats-5.15.0.tar.xz"; - sha256 = "0q66w91khj4xax4nzak5r9wmr0qny5cq7dapv11zdzn7rf90bpvv"; - name = "kimageformats-5.15.0.tar.xz"; - }; - }; - kinit = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kinit-5.15.0.tar.xz"; - sha256 = "0ccf2rg6m74xj7mq4i0fsl09l2wkwyhmlfp3lvrn4714w19bj5yf"; - name = "kinit-5.15.0.tar.xz"; - }; - }; - kio = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kio-5.15.0.tar.xz"; - sha256 = "0ld56arcjms5kiz9zj3g7hgd6xq05zg2bx0qpr4aaihl3hgp6888"; - name = "kio-5.15.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kitemmodels-5.15.0.tar.xz"; - sha256 = "112a8mdxabzv7lhpxfnnz2jrib972lz6ww7gd92lqziprz78fyga"; - name = "kitemmodels-5.15.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kitemviews-5.15.0.tar.xz"; - sha256 = "1112x7lf0wvwsizcr2ij0w463cssg0ahcav872g39gzirf67lqyi"; - name = "kitemviews-5.15.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kjobwidgets-5.15.0.tar.xz"; - sha256 = "12r3j1bwvmacj70dng4g5yrgjgj4v8nizk4yf22dfy858k8v8zda"; - name = "kjobwidgets-5.15.0.tar.xz"; - }; - }; - kjs = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kjs-5.15.0.tar.xz"; - sha256 = "1aj9w8009q8bdq17ckjr1z219qy4wkjwc5xggl1879haqxn1pfg3"; - name = "kjs-5.15.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kjsembed-5.15.0.tar.xz"; - sha256 = "099m6k6m6imy7jdia822i1g6c61gp955w21m4bb5nndwdy580mj4"; - name = "kjsembed-5.15.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kmediaplayer-5.15.0.tar.xz"; - sha256 = "1rli98klmizwmmwwn6lcna7vxihd7b5yrvshisw6ivb21ygjgrxm"; - name = "kmediaplayer-5.15.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/knewstuff-5.15.0.tar.xz"; - sha256 = "0s8ha0qqy007kq1k55mii5msbqxnczb57xici3in1idxjd83fjnw"; - name = "knewstuff-5.15.0.tar.xz"; - }; - }; - knotifications = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/knotifications-5.15.0.tar.xz"; - sha256 = "1189xx9a5i932lfyniqnz43gl3hhjlg962j996zy0g9yasc2r3cm"; - name = "knotifications-5.15.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/knotifyconfig-5.15.0.tar.xz"; - sha256 = "0b279z1qwfhj2mnpil0jd3xs8yn4i8mvib8dws6q4nygl941b8sa"; - name = "knotifyconfig-5.15.0.tar.xz"; - }; - }; - kpackage = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kpackage-5.15.0.tar.xz"; - sha256 = "03zcnqly2pb67pza9xm9n0asjixqicxwj5vnv25yvki02cgwmvn3"; - name = "kpackage-5.15.0.tar.xz"; - }; - }; - kparts = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kparts-5.15.0.tar.xz"; - sha256 = "0pjfmb97387kvvn7c4xzmxdja2jghx946ima5g8jnfw0zacsd2mw"; - name = "kparts-5.15.0.tar.xz"; - }; - }; - kpeople = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kpeople-5.15.0.tar.xz"; - sha256 = "11frmba6rqn2bmqp28wrwrqw8lpkdg27v5fa5lg47vrdp4ih0rgs"; - name = "kpeople-5.15.0.tar.xz"; - }; - }; - kplotting = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kplotting-5.15.0.tar.xz"; - sha256 = "0wwqlza0qfd25p9d5gfrs0ymwzg5b0lnb4b8slfw2znazvi03krj"; - name = "kplotting-5.15.0.tar.xz"; - }; - }; - kpty = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kpty-5.15.0.tar.xz"; - sha256 = "03yl4kwhwma0nwbgww95z4853waxrq4xipy41k7224n3gvd62c30"; - name = "kpty-5.15.0.tar.xz"; - }; - }; - kross = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/kross-5.15.0.tar.xz"; - sha256 = "1mlvs0ra3ngrmrmqb4qjg3nkw5hqscdd1p3cdh94mpcwk330svq0"; - name = "kross-5.15.0.tar.xz"; - }; - }; - krunner = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/portingAids/krunner-5.15.0.tar.xz"; - sha256 = "0kyb135a45b9si4xh7pml7aiigs3j5077dgjfrghhz0ci3ibmn0v"; - name = "krunner-5.15.0.tar.xz"; - }; - }; - kservice = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kservice-5.15.0.tar.xz"; - sha256 = "13yfg99s7k7y2npj8jn12iikan95dsf8hdmqfjb59n5qg4a6h253"; - name = "kservice-5.15.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/ktexteditor-5.15.0.tar.xz"; - sha256 = "161kkssai0lwssy6l4mxgclx7229bgfkfgsf973i94p6hanaymb8"; - name = "ktexteditor-5.15.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/ktextwidgets-5.15.0.tar.xz"; - sha256 = "1r9drjjlag5v7y8inswbrj2fmkzkranrnzyrwl4bl7v0l1dir2l8"; - name = "ktextwidgets-5.15.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kunitconversion-5.15.0.tar.xz"; - sha256 = "1qbps67w3ii2797q967wvy56zclsm9l6vcrwnylx9rfqygcs5ixf"; - name = "kunitconversion-5.15.0.tar.xz"; - }; - }; - kwallet = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kwallet-5.15.0.tar.xz"; - sha256 = "1b97v4vad7lzrjmf04zikm4q9czyzbzkk3vdhcd2mi47vizrj392"; - name = "kwallet-5.15.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kwidgetsaddons-5.15.0.tar.xz"; - sha256 = "1nbgsf5dfz0f12azw19ir7791y6ykkkj7y96ln0k81d3cbcgxq63"; - name = "kwidgetsaddons-5.15.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kwindowsystem-5.15.0.tar.xz"; - sha256 = "1x8pagby6j7k2ns3davbmyysggril0kp9ccn3326qm89l70zrf8x"; - name = "kwindowsystem-5.15.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kxmlgui-5.15.0.tar.xz"; - sha256 = "1d5mm2fkzk92q9gfh76a83mbzqw2pcagkg6s51i5ax3zqb7jnzdm"; - name = "kxmlgui-5.15.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/kxmlrpcclient-5.15.0.tar.xz"; - sha256 = "03ckqn33djzyg0ik9g1jk4dj33incsxwvvdc7g5k8wjgjcdkp433"; - name = "kxmlrpcclient-5.15.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/modemmanager-qt-5.15.0.tar.xz"; - sha256 = "1sxi32jxsz3d51nkcx7wxjyjvr2fg3qay3s3nzrpdzm0pa79drr9"; - name = "modemmanager-qt-5.15.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/networkmanager-qt-5.15.0.tar.xz"; - sha256 = "0l0396c9fgwxdv1h33p7y8w0ylvm4pa3a53yv7jckkc49nygk38p"; - name = "networkmanager-qt-5.15.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/plasma-framework-5.15.0.tar.xz"; - sha256 = "0v36i64jb3n6lq964417lzbdm6m57nvg83kjli4wqlc17dywjp8s"; - name = "plasma-framework-5.15.0.tar.xz"; - }; - }; - solid = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/solid-5.15.0.tar.xz"; - sha256 = "0118bynfqcgvg333ljbb80k7bkam6skc7vygwvy7fr7y4dzmlwfa"; - name = "solid-5.15.0.tar.xz"; - }; - }; - sonnet = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/sonnet-5.15.0.tar.xz"; - sha256 = "18qs5szdyvjzwlbid62g3qs7cs4fdb46n25aw49saq7drf567gm0"; - name = "sonnet-5.15.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.15.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.15/threadweaver-5.15.0.tar.xz"; - sha256 = "19ha9r6wjm93w4kh5rjaal0r91vxhsr9q82dw5b9j927zrqwb7pq"; - name = "threadweaver-5.15.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/attica.nix b/pkgs/development/libraries/kde-frameworks-5.16/attica.nix deleted file mode 100644 index 98721876c1204e5906a1d992846e54e674dfcec1..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/attica.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "attica"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.16/baloo.nix deleted file mode 100644 index 38c41d9271d86f3fab6eddae0c5858b9eb9b89c4..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/baloo.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig -, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid -}: - -kdeFramework { - name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; - propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase - ]; - postInstall = '' - wrapQtProgram "$out/bin/baloo_file" - wrapQtProgram "$out/bin/baloo_file_extractor" - wrapQtProgram "$out/bin/balooctl" - wrapQtProgram "$out/bin/baloosearch" - wrapQtProgram "$out/bin/balooshow" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix deleted file mode 100644 index f981b0516f720998b03f5e51e19a4d4bc45e5863..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/bluez-qt.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtdeclarative -}: - -kdeFramework { - name = "bluez-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; - preConfigure = '' - substituteInPlace CMakeLists.txt \ - --replace /lib/udev/rules.d "$out/lib/udev/rules.d" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch deleted file mode 100644 index 9717716faf5b60a4835c204bf46a5840c1609fff..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/0001-extra-cmake-modules-paths.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 3cc148e878b69fc3e0228f3e3bf1bbe689dad87c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 20 Feb 2015 23:17:39 -0600 -Subject: [PATCH] extra-cmake-modules paths - ---- - kde-modules/KDEInstallDirs.cmake | 37 ++++--------------------------------- - 1 file changed, 4 insertions(+), 33 deletions(-) - -diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake -index b7cd34d..2f868ac 100644 ---- a/kde-modules/KDEInstallDirs.cmake -+++ b/kde-modules/KDEInstallDirs.cmake -@@ -193,37 +193,8 @@ - # (To distribute this file outside of extra-cmake-modules, substitute the full - # License text for the above reference.) - --# Figure out what the default install directory for libraries should be. --# This is based on the logic in GNUInstallDirs, but simplified (the --# GNUInstallDirs code deals with re-configuring, but that is dealt with --# by the _define_* macros in this module). -+# The default library directory on NixOS is *always* /lib. - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR -@@ -445,15 +416,15 @@ if(KDE_INSTALL_USE_QT_SYS_PATHS) - "QtQuick2 imports" - QML_INSTALL_DIR) - else() -- _define_relative(QTPLUGINDIR LIBDIR "plugins" -+ _define_relative(QTPLUGINDIR LIBDIR "qt5/plugins" - "Qt plugins" - QT_PLUGIN_INSTALL_DIR) - -- _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "imports" -+ _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "qt5/imports" - "QtQuick1 imports" - IMPORTS_INSTALL_DIR) - -- _define_relative(QMLDIR LIBDIR "qml" -+ _define_relative(QMLDIR LIBDIR "qt5/qml" - "QtQuick2 imports" - QML_INSTALL_DIR) - endif() --- -2.3.0 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix deleted file mode 100644 index 4e1b1aff3bd1410e88d3bb77f6f717aa78baa0bc..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, stdenv, cmake, pkgconfig, qttools }: - -kdeFramework { - name = "extra-cmake-modules"; - patches = [ ./0001-extra-cmake-modules-paths.patch ]; - - setupHook = ./setup-hook.sh; - - # It is OK to propagate these inputs as long as - # extra-cmake-modules is never a propagated input - # of some other derivation. - propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - - meta = { - license = stdenv.lib.licenses.bsd2; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh deleted file mode 100644 index a6fa6189240b0c48bea2a1bcbac3a2861cd37db7..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/extra-cmake-modules/setup-hook.sh +++ /dev/null @@ -1,27 +0,0 @@ -addMimePkg() { - local propagated - - if [[ -d "$1/share/mime" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - fi -} - -envHooks+=(addMimePkg) diff --git a/pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix deleted file mode 100644 index 26987c385ad5d4918f71ac1108d9a156652ebc29..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/frameworkintegration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion -, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, libXcursor, qtx11extras -}: - -kdeFramework { - name = "frameworkintegration"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor - ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix deleted file mode 100644 index 3225098f43980a1c98c5fa4efcb87545d6b92a28..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kactivities.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig -, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n -, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative -}: - -kdeFramework { - name = "kactivities"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kactivitymanagerd" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix deleted file mode 100644 index 647be8f052c3965e415732d54ef757e49d638149..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kapidox.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, python -}: - -kdeFramework { - name = "kapidox"; - nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.16/karchive.nix deleted file mode 100644 index a8d9a0003c3b832f50d0083a8927aa5a5638f22b..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/karchive.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "karchive"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix deleted file mode 100644 index 42a1001933405352cbd93d6a2232f0e251fffc50..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kauth/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, polkitQt -}: - -kdeFramework { - name = "kauth"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkitQt ]; - propagatedBuildInputs = [ kcoreaddons ]; - patches = [ ./kauth-policy-install.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch b/pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch deleted file mode 100644 index 340155256f28f77e1ff3066b43f3ce607d9c0aee..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kauth/kauth-policy-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in -index e859ec7..9a8ab18 100644 ---- a/KF5AuthConfig.cmake.in -+++ b/KF5AuthConfig.cmake.in -@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions") - set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix deleted file mode 100644 index 1a469ab4db6dac39ec3faaac20e9686feca5837c..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kbookmarks.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kconfigwidgets -, kcoreaddons -, kiconthemes -, kxmlgui -}: - -kdeFramework { - name = "kbookmarks"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 0d861fa95012df3402acb3ea6a056f0e562a00a9..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:43:53 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/kpluginselector.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp -index 9c3431d..d6b1ee2 100644 ---- a/src/kpluginselector.cpp -+++ b/src/kpluginselector.cpp -@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, - QStringList desktopFileNames; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - desktopFileNames.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix deleted file mode 100644 index dbbb783ac6152bc2de2796c7b36eca977d1e42ee..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcmutils/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets -, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews -, kpackage, kservice, kxmlgui -}: - -kdeFramework { - name = "kcmutils"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui - ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix deleted file mode 100644 index 53a69a69b69c41cbfebc4eaf337933bc6f73a29a..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcodecs.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kcodecs"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix deleted file mode 100644 index e393774f16a5265616076c83cd2c365074de7779..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcompletion.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kwidgetsaddons -}: - -kdeFramework { - name = "kcompletion"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix deleted file mode 100644 index e132afe598866b0c8f6b041945b1f666b8008894..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kconfig.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -}: - -kdeFramework { - name = "kconfig"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kreadconfig5" - wrapQtProgram "$out/bin/kwriteconfig5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 7a6c0ee90534f0d7bf9f2842fb1997da26bbea43..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:47:01 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/khelpclient.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp -index 53a331e..80fbb01 100644 ---- a/src/khelpclient.cpp -+++ b/src/khelpclient.cpp -@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) - QString docPath; - const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); - Q_FOREACH (const QString &dir, desktopDirs) { -- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString desktopPath(it.next()); - KDesktopFile desktopFile(desktopPath); --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix deleted file mode 100644 index 0e14d06edd3671ccb253f0c77f0ee418124bbe25..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kconfigwidgets/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper -}: - -kdeFramework { - name = "kconfigwidgets"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/preparetips5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix deleted file mode 100644 index bbab78ccb4090b4482152c764a09bf287028e62d..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kcrash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwindowsystem -, qtx11extras -}: - -kdeFramework { - name = "kcrash"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix deleted file mode 100644 index d2ceab31d14bb0e478eff7cabe512a78e2bf7c47..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdbusaddons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix deleted file mode 100644 index 74d107466cfc4a424c6a2d2a502047a5ee2b5b95..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdeclarative.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig -, qtdeclarative -}: - -kdeFramework { - name = "kdeclarative"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; - propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kded.nix b/pkgs/development/libraries/kde-frameworks-5.16/kded.nix deleted file mode 100644 index 47ae2d68c68e40f06bf1e98201ba151193db5fe2..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kded.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kdoctools -, kinit -, kservice -}: - -kdeFramework { - name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix deleted file mode 100644 index 0dd5c41576124556f9ede749fc38f891af0e2b17..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix deleted file mode 100644 index 364fbd6a720bd7d2972d85c550a8a3af3309e3c3..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdesu.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty -, kservice -}: - -kdeFramework { - name = "kdesu"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix deleted file mode 100644 index d361313d1d494f53dab162a77bb4ff638c8ec1a2..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdewebkit.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit -}: - -kdeFramework { - name = "kdewebkit"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix deleted file mode 100644 index f00432b0c9ce455abb4c4d0f61bb1f4da3dc8063..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdnssd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, avahi -}: - -kdeFramework { - name = "kdnssd"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix deleted file mode 100644 index 138c3fc33b94bb10cf655b094dbc4e37d0d3685e..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages -}: - -kdeFramework { - name = "kdoctools"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" - ]; - patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch deleted file mode 100644 index 4e3a33efab32bd1b5330bcdeb5cabec1ef849b0e..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/kdoctools-no-find-docbook-xml.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5c4863c..f731775 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES - ) - - --find_package(DocBookXML4 "4.5") - - set_package_properties(DocBookXML4 PROPERTIES - TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh deleted file mode 100644 index 5cfffbd622d12d060e40f58fcd72eaaf9fd70f51..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kdoctools/setup-hook.sh +++ /dev/null @@ -1,5 +0,0 @@ -addXdgData() { - addToSearchPath XDG_DATA_DIRS "$1/share" -} - -envHooks+=(addXdgData) diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix deleted file mode 100644 index d165f84e3a2dd71ae68743b78ac31e05c715c5a0..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kemoticons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kservice -}: - -kdeFramework { - name = "kemoticons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix deleted file mode 100644 index c535b3590a38895e135a6815af805e2434635ff1..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kglobalaccel.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kwindowsystem -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kglobalaccel"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix deleted file mode 100644 index bc4e9ab11843ac791179fc7defd77b51041837f3..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kguiaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kguiaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.16/khtml.nix deleted file mode 100644 index d40df466ebbdc5ba6a587ca43ede7962e93df6e0..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/khtml.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, giflib, karchive -, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs -, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons -, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet -}: - -kdeFramework { - name = "khtml"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; - propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix deleted file mode 100644 index fc0865600239f77b2c916bafa9fd4b15cc84c929..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kidletime.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtbase -, qtx11extras -}: - -kdeFramework { - name = "kidletime"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix deleted file mode 100644 index 49d66bbcc2c645c37a8d3a540f42ab08000976ab..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kimageformats.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, ilmbase -}: - -kdeFramework { - name = "kimageformats"; - nativeBuildInputs = [ extra-cmake-modules ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch deleted file mode 100644 index 9c76079a382a853df2d444be4d41f5f901141812..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kinit/0001-kinit-libpath.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 13 Jun 2015 08:57:55 -0500 -Subject: [PATCH] kinit libpath - ---- - src/kdeinit/kinit.cpp | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp -index 9e775b6..0ac5646 100644 ---- a/src/kdeinit/kinit.cpp -+++ b/src/kdeinit/kinit.cpp -@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, - if (!libpath.isEmpty()) { - if (!l.load()) { - if (libpath_relative) { -- // NB: Because Qt makes the actual dlopen() call, the -- // RUNPATH of kdeinit is *not* respected - see -- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 -- // - so we try hacking it in ourselves -- QString install_lib_dir = QFile::decodeName( -- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); -- libpath = install_lib_dir + libpath; -- l.setFileName(libpath); -+ // Use QT_PLUGIN_PATH to find shared library directories -+ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 -+ // shared libraries should be in /lib/qt5/plugins/../../ -+ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); -+ const QString up = QString::fromLocal8Bit("/../../"); -+ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); -+ Q_FOREACH (const QString &path, paths) { -+ l.setFileName(path + up + libpath); - l.load(); -+ if (l.isLoaded()) break; -+ } - } - } - if (!l.isLoaded()) { --- -2.4.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix deleted file mode 100644 index 5f644d7c424e2034418249fd4b8a553c066d1c27..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kinit/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs -}: - -# TODO: setuid wrapper - -kdeFramework { - name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = [ ./0001-kinit-libpath.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix deleted file mode 100644 index a9024d771cc33c9344d137bd982a5b1ecf25efa3..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kitemmodels.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemmodels"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix deleted file mode 100644 index 931019ce495d72e7cb89ca220437f738d492ae4e..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kitemviews.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemviews"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix deleted file mode 100644 index 746edf12eea03c62dc8c0592414c9f3fa82c7adc..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kjobwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwidgetsaddons -, qtx11extras -}: - -kdeFramework { - name = "kjobwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.16/kjs.nix deleted file mode 100644 index 768720f178c871fa3927295a6e7c414a6da020ff..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kjs.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -}: - -kdeFramework { - name = "kjs"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix deleted file mode 100644 index 22eef2d47bde651bfc54866797557cd6bcf58ea8..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kjsembed.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg -}: - -kdeFramework { - name = "kjsembed"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix deleted file mode 100644 index 460458b22323a3f07d17b8a01751f1d020f82fc6..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kmediaplayer.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kparts -, kxmlgui -}: - -kdeFramework { - name = "kmediaplayer"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix deleted file mode 100644 index 5bcd6f301462494f292513c0bc42429fe39cf7d0..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/knewstuff.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, karchive -, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio -, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "knewstuff"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons - ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix deleted file mode 100644 index 7e301dd0f2683706f058848717b60ef02249f97b..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/knotifications.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem -, phonon -, qtx11extras -}: - -kdeFramework { - name = "knotifications"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons phonon - ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix deleted file mode 100644 index dd99d2d4f1e57ce63c707618aa3c6d2655f65eeb..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/knotifyconfig.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, ki18n, kio, phonon -}: - -kdeFramework { - name = "knotifyconfig"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch deleted file mode 100644 index beede4d7ccb5f061b1cbd4a46ed19ec4bc7cda17..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0001-allow-external-paths.patch +++ /dev/null @@ -1,25 +0,0 @@ -From a92ac391b4e6ca335bd7fa78f1addd23c9467931 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 28 Jan 2015 07:15:30 -0600 -Subject: [PATCH 1/2] allow external paths - ---- - src/kpackage/package.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpackage/package.cpp b/src/kpackage/package.cpp -index 539b21a..977a026 100644 ---- a/src/kpackage/package.cpp -+++ b/src/kpackage/package.cpp -@@ -789,7 +789,7 @@ PackagePrivate::PackagePrivate() - : QSharedData(), - fallbackPackage(0), - metadata(0), -- externalPaths(false), -+ externalPaths(true), - valid(false), - checkedValid(false) - { --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 6e93fca9b21db4bb47b3397bf36c97ac9411ad10..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kpackage/0002-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 9fc26c3c0478eb7cb0a531836ba2e3a85d820c88 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:50:28 -0500 -Subject: [PATCH 2/2] qdiriterator follow symlinks - ---- - src/kpackage/packageloader.cpp | 2 +- - src/kpackage/private/packagejobthread.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/kpackage/packageloader.cpp b/src/kpackage/packageloader.cpp -index eb5ed47..94217f6 100644 ---- a/src/kpackage/packageloader.cpp -+++ b/src/kpackage/packageloader.cpp -@@ -241,7 +241,7 @@ QList PackageLoader::listPackages(const QString &packageFormat, - } else { - //qDebug() << "Not cached"; - // If there's no cache file, fall back to listing the directory -- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; -+ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; - const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")); - - QDirIterator it(plugindir, nameFilters, QDir::Files, flags); -diff --git a/src/kpackage/private/packagejobthread.cpp b/src/kpackage/private/packagejobthread.cpp -index ca523b3..1cfa792 100644 ---- a/src/kpackage/private/packagejobthread.cpp -+++ b/src/kpackage/private/packagejobthread.cpp -@@ -145,7 +145,7 @@ bool indexDirectory(const QString& dir, const QString& dest) - QJsonArray plugins; - - int i = 0; -- QDirIterator it(dir, QStringList()< -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c685261195e8384691d6b317b8b3991434397..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix deleted file mode 100644 index 03b7c7c2f51d449fac625de2755862ff9c7d08c9..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kservice/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem -}: - -kdeFramework { - name = "kservice"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - propagatedUserEnvPkgs = [ kcoreaddons ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh deleted file mode 100644 index c28e862ff8aeae3bc6800ac5303ae97d7fb35d6d..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kservice/setup-hook.sh +++ /dev/null @@ -1,43 +0,0 @@ -addServicePkg() { - local propagated - for dir in "share/kservices5" "share/kservicetypes5"; do - if [[ -d "$1/$dir" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - - break - fi - done -} - -envHooks+=(addServicePkg) - -local propagated -for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z@out@" ]]; then - propagated=1 - break - fi -done -if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs @out@" -fi diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch deleted file mode 100644 index def55bff9b23fbebf6a076a01fea231e747f33cd..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/0001-no-qcoreapplication.patch +++ /dev/null @@ -1,48 +0,0 @@ -From dc50fffdc72b76498384ce2f9065c3757b786d71 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 09:08:59 -0500 -Subject: [PATCH] no qcoreapplication - ---- - src/syntax/data/katehighlightingindexer.cpp | 11 ++++------- - 1 file changed, 4 insertions(+), 7 deletions(-) - -diff --git a/src/syntax/data/katehighlightingindexer.cpp b/src/syntax/data/katehighlightingindexer.cpp -index 3c63140..e3d5efe 100644 ---- a/src/syntax/data/katehighlightingindexer.cpp -+++ b/src/syntax/data/katehighlightingindexer.cpp -@@ -51,19 +51,16 @@ QStringList readListing(const QString &fileName) - - int main(int argc, char *argv[]) - { -- // get app instance -- QCoreApplication app(argc, argv); -- - // ensure enough arguments are passed -- if (app.arguments().size() < 3) -+ if (argc < 3) - return 1; - - // open schema - QXmlSchema schema; -- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) -+ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) - return 2; - -- const QString hlFilenamesListing = app.arguments().value(3); -+ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); - if (hlFilenamesListing.isEmpty()) { - return 1; - } -@@ -147,7 +144,7 @@ int main(int argc, char *argv[]) - return anyError; - - // create outfile, after all has worked! -- QFile outFile(app.arguments().at(1)); -+ QFile outFile(QString::fromLocal8Bit(argv[1])); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix deleted file mode 100644 index 39092fbb278475517561e3c33d63faff2d18cbdf..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ktexteditor/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, karchive, kconfig -, kguiaddons, ki18n, kio, kiconthemes, kparts, perl, qtscript -, qtxmlpatterns, sonnet -}: - -kdeFramework { - name = "ktexteditor"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts qtscript - qtxmlpatterns - ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; - patches = [ ./0001-no-qcoreapplication.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix deleted file mode 100644 index e332d4ff9a832a16ef7609615cbc233b4aae2d06..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/ktextwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem -, sonnet -}: - -kdeFramework { - name = "ktextwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice - ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix deleted file mode 100644 index 3cf0f847d83d5a29406522fe1c16ffc0613efa64..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kunitconversion.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n }: - -kdeFramework { - name = "kunitconversion"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix deleted file mode 100644 index 7c4177e009d20122efce62f61a30f9b59d7a88c8..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kwallet.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications -, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper -}: - -kdeFramework { - name = "kwallet"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kiconthemes knotifications - kservice kwidgetsaddons libgcrypt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix deleted file mode 100644 index d95f44d3fecfdefdefe7ff6fd5c0e140a753ebe9..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kwidgetsaddons.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kwidgetsaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix deleted file mode 100644 index 09ab1f2200de3c075790743801c862beee70b719..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kwindowsystem.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kwindowsystem"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix deleted file mode 100644 index 20a300b68bc87b8309abf5bfadcb36d8f7524dd6..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/kxmlrpcclient.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: - -kdeFramework { - name = "kxmlrpcclient"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix deleted file mode 100644 index 7d7f769d6a9be2e04f3bdd42f4b063503c911144..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/modemmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, modemmanager -}: - -kdeFramework { - name = "modemmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix deleted file mode 100644 index 333378bd14316a153adb5773678c73d81ee7af5d..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/networkmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, networkmanager -}: - -kdeFramework { - name = "networkmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix deleted file mode 100644 index d8846f7772318695c37121add0986cc70132b181..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/solid.nix b/pkgs/development/libraries/kde-frameworks-5.16/solid.nix deleted file mode 100644 index afd125e3c5973342e16557929aced04a3f719e7e..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/solid.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtdeclarative -}: - -kdeFramework { - name = "solid"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix deleted file mode 100644 index 943fe04a1c92c433de0c5e4fa33742bce4598c45..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/sonnet.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, hunspell -}: - -kdeFramework { - name = "sonnet"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.16/srcs.nix deleted file mode 100644 index 8e3d6a4a921021f414c3973a26d323d7ed2b3f0a..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/srcs.nix +++ /dev/null @@ -1,565 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/attica-5.16.0.tar.xz"; - sha256 = "1739pf892vgvl03l4322p09p346ca4nghc50ansny7868c73f95w"; - name = "attica-5.16.0.tar.xz"; - }; - }; - baloo = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/baloo-5.16.0.tar.xz"; - sha256 = "0s8l9q43ak87sjagashxfwadildlz3vdysj96in6v3gcg09ngm8j"; - name = "baloo-5.16.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/bluez-qt-5.16.0.tar.xz"; - sha256 = "0xxlwb4kqiiqmph9vr6ppyzjndzz1ys9qbnzzinrhhdmiir5m3k6"; - name = "bluez-qt-5.16.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/breeze-icons-5.16.0.tar.xz"; - sha256 = "1vmwnqin9p6p78kshn1bfq7zz1znmm615bq28545shywfkri1yil"; - name = "breeze-icons-5.16.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/extra-cmake-modules-5.16.0.tar.xz"; - sha256 = "06xfmxbjkrdswh2n0qmdi5zvm3dqhawiazi5x6p32n77ij5wiph9"; - name = "extra-cmake-modules-5.16.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/frameworkintegration-5.16.0.tar.xz"; - sha256 = "0vyv3c34mpp6yjgqm8gyir7cwxn3a064q5d3ms49macpjkkz7c6f"; - name = "frameworkintegration-5.16.0.tar.xz"; - }; - }; - kactivities = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kactivities-5.16.0.tar.xz"; - sha256 = "0aq0yxbzhg3r9jpddn1vnylmjb2xr4xx5rviisyfa6nhn21ynqxm"; - name = "kactivities-5.16.0.tar.xz"; - }; - }; - kapidox = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kapidox-5.16.0.tar.xz"; - sha256 = "0gfxnssbkdkfncka956y5d2w3zm7yxkl11jvl88cwg6zx2rfh1a4"; - name = "kapidox-5.16.0.tar.xz"; - }; - }; - karchive = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/karchive-5.16.0.tar.xz"; - sha256 = "0rn8n7lnw9z7rl1d2cdy59j4f38jzd6sj0s33dkfk04i4kl0ccpc"; - name = "karchive-5.16.0.tar.xz"; - }; - }; - kauth = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kauth-5.16.0.tar.xz"; - sha256 = "1972c4m7kcj7hnklvy973935sn0khl4jby6g8q2i5hzivp5b0sn3"; - name = "kauth-5.16.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kbookmarks-5.16.0.tar.xz"; - sha256 = "009yls3f4l97z1hcn9nk0j35b0kfysc2l0gvdnijk9prgldn287j"; - name = "kbookmarks-5.16.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcmutils-5.16.0.tar.xz"; - sha256 = "1cz3lgwm6vp39c40yykg26791xcjk3vr83266nhcyl6cm7dk04rl"; - name = "kcmutils-5.16.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcodecs-5.16.0.tar.xz"; - sha256 = "164yj6mpqb7hl9v5xdhgwpddrk7d4qig8qhx9i8xlxbb2v30rlcp"; - name = "kcodecs-5.16.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcompletion-5.16.0.tar.xz"; - sha256 = "084nqd5j7rffqh67v862h88zsqks3pyynw2fzmayhngcjm1y8c22"; - name = "kcompletion-5.16.0.tar.xz"; - }; - }; - kconfig = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kconfig-5.16.0.tar.xz"; - sha256 = "1871ixmk4z4ajfnszlyba4ibmywz0iw7ibg073wwzm3hpx2nizmf"; - name = "kconfig-5.16.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kconfigwidgets-5.16.0.tar.xz"; - sha256 = "11pl9295qnvz9284liyacz87hb5w5a4ybzcyg0jchc62aw1q9bi6"; - name = "kconfigwidgets-5.16.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcoreaddons-5.16.0.tar.xz"; - sha256 = "1944csk50q42a2prm6fijnzi1cds23phdzkfvsxlxxxzga7744fm"; - name = "kcoreaddons-5.16.0.tar.xz"; - }; - }; - kcrash = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kcrash-5.16.0.tar.xz"; - sha256 = "1bk7dvlzxs6n63iy0lmb7jgwa3np0ja4ldvwxx1y82gq593dqwa9"; - name = "kcrash-5.16.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdbusaddons-5.16.0.tar.xz"; - sha256 = "0ykfgmhisyiah9nisb73xcdfnxgiwcpjzry68x9j1r60b506r6za"; - name = "kdbusaddons-5.16.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdeclarative-5.16.0.tar.xz"; - sha256 = "0ck8w2vd9z288h08zc8fa2bndgcg6m63g34dl95snb4h00ciybd4"; - name = "kdeclarative-5.16.0.tar.xz"; - }; - }; - kded = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kded-5.16.0.tar.xz"; - sha256 = "0p0mxa989k9n45iaq0ymgr228nx4g31v3bcbdm2vlzzr524jnx8q"; - name = "kded-5.16.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kdelibs4support-5.16.0.tar.xz"; - sha256 = "0y2m67h79in7hdlv95g31kkdnjafdda1h26dm9fdjv52183n8kdc"; - name = "kdelibs4support-5.16.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdesignerplugin-5.16.0.tar.xz"; - sha256 = "1x2kd70nyvykcmd4whnv991pqyflpaahans5jaz0v0y1a2l67965"; - name = "kdesignerplugin-5.16.0.tar.xz"; - }; - }; - kdesu = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdesu-5.16.0.tar.xz"; - sha256 = "10g7vg8q2hibdh098n373jg8njzr0w9dxyfi9yb84pjyyshj7km6"; - name = "kdesu-5.16.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdewebkit-5.16.0.tar.xz"; - sha256 = "1nq6j1k3ddp9p40mdgczcvv0ba16haz3s4km9pyxsv7qwrbpm6wa"; - name = "kdewebkit-5.16.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdnssd-5.16.0.tar.xz"; - sha256 = "1ds1xvw7v75vz2nnrygy10slwysis75y57s8xafsw7fhs8sybvc3"; - name = "kdnssd-5.16.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kdoctools-5.16.0.tar.xz"; - sha256 = "1qf82drggsbhwlwsrmwbk6m0x4jhihhx0wz32y7ybhn867p8glgb"; - name = "kdoctools-5.16.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kemoticons-5.16.0.tar.xz"; - sha256 = "166la4160vjf444cylyr4dnc507fqsifl9qpdw2gqa8nw45w6kms"; - name = "kemoticons-5.16.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kfilemetadata-5.16.0.tar.xz"; - sha256 = "1yf7hgpgrvw8qvyj0l8c828y6xh3w3grslg4s9grx93jsw2jpypm"; - name = "kfilemetadata-5.16.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kglobalaccel-5.16.0.tar.xz"; - sha256 = "12hxhi8b53az3qrpgcjz494vylbqgxq3921qhsccy3nvywg7r3mv"; - name = "kglobalaccel-5.16.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kguiaddons-5.16.0.tar.xz"; - sha256 = "1gv0rhr06xzgkw1pj1nc4jbc6vmr952bbvs1vp3x2609pfn7d8b4"; - name = "kguiaddons-5.16.0.tar.xz"; - }; - }; - khtml = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/khtml-5.16.0.tar.xz"; - sha256 = "11q66h7hlsmjc7rj4m70yian6vymbjisz7yw7ck81qbv7b75w9bk"; - name = "khtml-5.16.0.tar.xz"; - }; - }; - ki18n = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/ki18n-5.16.0.tar.xz"; - sha256 = "08hxinx0x8b4pprx23a6aklc9sd26cd21ajdzlk2wrv8jp3dl2pw"; - name = "ki18n-5.16.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kiconthemes-5.16.0.tar.xz"; - sha256 = "10y9rz4dmza6xjl8n9hhjpymnxzpdqk6w82s7d4yaam2kkv5hysk"; - name = "kiconthemes-5.16.0.tar.xz"; - }; - }; - kidletime = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kidletime-5.16.0.tar.xz"; - sha256 = "1s51xbn2i50d7dpl7p9aq92gy5zvgxb0liaq36f425g3hzmdkr57"; - name = "kidletime-5.16.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kimageformats-5.16.0.tar.xz"; - sha256 = "02jsmz3ysddywd9v7y8cbsvanpg4d9xwbgr0sqxb600a4s0z797s"; - name = "kimageformats-5.16.0.tar.xz"; - }; - }; - kinit = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kinit-5.16.0.tar.xz"; - sha256 = "1flpxypblj7jjv854f81xd6yx3x1wsns18hpp19jnwb54w2xy0g0"; - name = "kinit-5.16.0.tar.xz"; - }; - }; - kio = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kio-5.16.0.tar.xz"; - sha256 = "1mm94ywvkfnrfkd29vhcnc8v3ly9d33vvjmrhz9r2q3rw4zyjpiv"; - name = "kio-5.16.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kitemmodels-5.16.0.tar.xz"; - sha256 = "1bm948adzhqpq698wg1bqxz09cmpxwqhpv1qvb6fgnxv2fyjgdg2"; - name = "kitemmodels-5.16.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kitemviews-5.16.0.tar.xz"; - sha256 = "1bv41lijf3yh2dwwkwjp80sxz5yffyl1hqs7prhhv2jyn88xpx6a"; - name = "kitemviews-5.16.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kjobwidgets-5.16.0.tar.xz"; - sha256 = "07dclwc85294ca3vkg1sf9zqcgr3brzjimb8qqy0svdbfvbr0kxa"; - name = "kjobwidgets-5.16.0.tar.xz"; - }; - }; - kjs = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kjs-5.16.0.tar.xz"; - sha256 = "0zj5px9wx5c5yzlsz48bahi0xnshn3xbrfm4l9j4x4nj4vk3jksv"; - name = "kjs-5.16.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kjsembed-5.16.0.tar.xz"; - sha256 = "17vsbz0a6cd0nfjpwlyr6401pfrz0snxrcqwnj0llcmbpkbc3las"; - name = "kjsembed-5.16.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kmediaplayer-5.16.0.tar.xz"; - sha256 = "0j9g13qd7l2kwn1imphdsannjdxbx3jk8jl3d9xa6g33mqav8bjc"; - name = "kmediaplayer-5.16.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/knewstuff-5.16.0.tar.xz"; - sha256 = "0213lnnlah2jq8a5rbbwzjxl0qc0cgmsnixjbkbvq3wr7yb1s6hr"; - name = "knewstuff-5.16.0.tar.xz"; - }; - }; - knotifications = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/knotifications-5.16.0.tar.xz"; - sha256 = "0bfr68a2favrnmpmck16vrqy8mni72plkn0fv0fl6bfq3fmi645a"; - name = "knotifications-5.16.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/knotifyconfig-5.16.0.tar.xz"; - sha256 = "0ma5s4451h9jl9va4nnjrwhxgq5jmgq2b0m5y7hdh7m03hwhjqmc"; - name = "knotifyconfig-5.16.0.tar.xz"; - }; - }; - kpackage = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kpackage-5.16.0.tar.xz"; - sha256 = "0js7dbg0y6b6nqnwc70706pchxpg12l9g7si1qab2jq8ir5drrap"; - name = "kpackage-5.16.0.tar.xz"; - }; - }; - kparts = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kparts-5.16.0.tar.xz"; - sha256 = "0g405r2x900d8c5jdsspy05m70agj3gqja6y3j319b8ph3yycnq4"; - name = "kparts-5.16.0.tar.xz"; - }; - }; - kpeople = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kpeople-5.16.0.tar.xz"; - sha256 = "07lsacynsr3mzqyizbq3mywk8d54kyzfx5a3nminf2hs5a1wgg8m"; - name = "kpeople-5.16.0.tar.xz"; - }; - }; - kplotting = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kplotting-5.16.0.tar.xz"; - sha256 = "1fc448f52lf8nvs2zi2r55vqfhph7qdvdwvdpk0gz8jadj4gciz7"; - name = "kplotting-5.16.0.tar.xz"; - }; - }; - kpty = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kpty-5.16.0.tar.xz"; - sha256 = "074sws3rvjs090l2cbhl9gxcgb6bjlxard8ylmrkhvqr0dc9syvc"; - name = "kpty-5.16.0.tar.xz"; - }; - }; - kross = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/kross-5.16.0.tar.xz"; - sha256 = "05mwldy2jwal5pjn6hbiny61xd02sbljkkbyc33ni5qiiznxjk56"; - name = "kross-5.16.0.tar.xz"; - }; - }; - krunner = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/portingAids/krunner-5.16.0.tar.xz"; - sha256 = "1rk7j6kj3sv6dqnv98hprdyrp94wz57lr1lvlmw11kdlm1mmh45p"; - name = "krunner-5.16.0.tar.xz"; - }; - }; - kservice = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kservice-5.16.0.tar.xz"; - sha256 = "140b4jxs3s00xbbbh8jjqw9q5krsd7xh4qal2k0hjk0nfx5blvp9"; - name = "kservice-5.16.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/ktexteditor-5.16.0.tar.xz"; - sha256 = "0g1yms864jq83c48j5ida4pmwisqxn49kl5daf7c1ssaia1pxfqw"; - name = "ktexteditor-5.16.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/ktextwidgets-5.16.0.tar.xz"; - sha256 = "1vzklpq1zdn3cg5hh7f2988q3sdn6y9mr1hgkmpcsc1y8pfhn7w9"; - name = "ktextwidgets-5.16.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kunitconversion-5.16.0.tar.xz"; - sha256 = "1ppmma1z1hk9shfn1w7dvy72872ryyqs9252s65pzx3ycrd00nll"; - name = "kunitconversion-5.16.0.tar.xz"; - }; - }; - kwallet = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kwallet-5.16.0.tar.xz"; - sha256 = "1gcwc7m8q5ya3gbj02pmmjaigpr0y94m3h526b2xdbksc23kv2gi"; - name = "kwallet-5.16.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kwidgetsaddons-5.16.0.tar.xz"; - sha256 = "0vzyikwp351sdywh38m6jj851sf5l4s8mxyvf5i6jkzpzl5591a3"; - name = "kwidgetsaddons-5.16.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kwindowsystem-5.16.0.tar.xz"; - sha256 = "07hl0sy0573nwddzyph5s75h983569p5bb96gxjbh0lh3ixar2ig"; - name = "kwindowsystem-5.16.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kxmlgui-5.16.0.tar.xz"; - sha256 = "1vzhf29gd5kn94x1cydnblb5v5163a52vpwh7fpsg3dlhhwd9h2s"; - name = "kxmlgui-5.16.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/kxmlrpcclient-5.16.0.tar.xz"; - sha256 = "1pacf0q67xckw8nvj3bncz5ydsmiw2a0fksmabklpbdmi9p2dz0a"; - name = "kxmlrpcclient-5.16.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/modemmanager-qt-5.16.0.tar.xz"; - sha256 = "0q135rhp52pk3ilmx9gx2cmn2p834s56kcqg3vdfycvi5gmvn81x"; - name = "modemmanager-qt-5.16.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/networkmanager-qt-5.16.0.tar.xz"; - sha256 = "115r211bf16dlcccib6dg0fd22g9kq9xshh8vf7f4msaa63kdfjv"; - name = "networkmanager-qt-5.16.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/oxygen-icons5-5.16.0.tar.xz"; - sha256 = "0nmr1jp3kr41k4wn9jvj1yvq9w51ljajzk94qf5k7rh68dzj4jl7"; - name = "oxygen-icons5-5.16.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/plasma-framework-5.16.0.tar.xz"; - sha256 = "1snih6i9n29c48sfw51csl99khps1c9bralb599d3c6q1j4iqzp3"; - name = "plasma-framework-5.16.0.tar.xz"; - }; - }; - solid = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/solid-5.16.0.tar.xz"; - sha256 = "1km4nb8cmqag2lpwgrmjj5rn8lv6s9lbhh2d3dfb2f0lmnqm00sl"; - name = "solid-5.16.0.tar.xz"; - }; - }; - sonnet = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/sonnet-5.16.0.tar.xz"; - sha256 = "1fn729ijclvdrxw9h0c23sbayfagh2jb7yglgsqqjsg3bdp72qi7"; - name = "sonnet-5.16.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.16.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.16/threadweaver-5.16.0.tar.xz"; - sha256 = "1ansjzfl6bvwqw2yi597gvzikyaaf8z5pvldwfd4mamb3vl42y4y"; - name = "threadweaver-5.16.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix deleted file mode 100644 index 52817921cc7239435671bd8a43b9343c3e61f2b8..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.16/threadweaver.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "threadweaver"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/attica.nix b/pkgs/development/libraries/kde-frameworks-5.17/attica.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/attica.nix rename to pkgs/development/libraries/kde-frameworks-5.17/attica.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.17/baloo.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/baloo.nix rename to pkgs/development/libraries/kde-frameworks-5.17/baloo.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.17/bluez-qt.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/bluez-qt.nix rename to pkgs/development/libraries/kde-frameworks-5.17/bluez-qt.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix similarity index 74% rename from pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix rename to pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix index 8c86a46401d5762cf26754ea3697e12029b2609c..879262c56a417a638b40581fe75faa19509a8c74 100644 --- a/pkgs/development/libraries/kde-frameworks-5.16/breeze-icons.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/breeze-icons.nix @@ -1,8 +1,10 @@ { kdeFramework , extra-cmake-modules +, qtsvg }: kdeFramework { name = "breeze-icons"; nativeBuildInputs = [ extra-cmake-modules ]; + propagatedUserEnvPkgs = [ qtsvg ]; } diff --git a/pkgs/development/libraries/kde-frameworks-5.16/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/default.nix similarity index 82% rename from pkgs/development/libraries/kde-frameworks-5.16/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/default.nix index 6c2889aa59819fab062adf7be6a1a3a910a7aae7..828faaa631f6329ee4ad21ef4bd1a1b6a179b509 100644 --- a/pkgs/development/libraries/kde-frameworks-5.16/default.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/default.nix @@ -14,29 +14,29 @@ let mirror = "mirror://kde"; srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; + packages = self: with self; { + kdeFramework = args: + let + inherit (args) name; + inherit (srcs."${name}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); - addPackages = self: with self; { attica = callPackage ./attica.nix {}; baloo = callPackage ./baloo.nix {}; bluez-qt = callPackage ./bluez-qt.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 {}; @@ -109,6 +109,4 @@ let threadweaver = callPackage ./threadweaver.nix {}; }; - newScope = scope: pkgs.qt55Libs.newScope ({ inherit kdeFramework; } // scope); - -in lib.makeScope newScope addPackages +in packages diff --git a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/0001-extra-cmake-modules-paths.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/0001-extra-cmake-modules-paths.patch rename to pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/0001-extra-cmake-modules-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/extra-cmake-modules/setup-hook.sh rename to pkgs/development/libraries/kde-frameworks-5.17/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh similarity index 96% rename from pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh rename to pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh index 72d830575450ba889715925a716d41cf7c35a3bb..16a8de82c5906d5fecfdc1a7bf0a9d798dd70f3c 100755 --- a/pkgs/development/libraries/kde-frameworks-5.16/fetchsrcs.sh +++ b/pkgs/development/libraries/kde-frameworks-5.17/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.16/" +RELEASE_URL="http://download.kde.org/stable/frameworks/5.17/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/development/libraries/kde-frameworks-5.15/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.17/frameworkintegration.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/frameworkintegration.nix rename to pkgs/development/libraries/kde-frameworks-5.17/frameworkintegration.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.17/kactivities.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kactivities.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kactivities.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.17/kapidox.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kapidox.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kapidox.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.17/karchive.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/karchive.nix rename to pkgs/development/libraries/kde-frameworks-5.17/karchive.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix similarity index 87% rename from pkgs/development/libraries/kde-frameworks-5.15/kauth/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kauth/default.nix index 42a1001933405352cbd93d6a2232f0e251fffc50..2b000ff3c04174f03baf535cb159cca315bc2d71 100644 --- a/pkgs/development/libraries/kde-frameworks-5.15/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.15/kauth/kauth-policy-install.patch b/pkgs/development/libraries/kde-frameworks-5.17/kauth/kauth-policy-install.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kauth/kauth-policy-install.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kauth/kauth-policy-install.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.17/kbookmarks.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kbookmarks.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kbookmarks.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kcmutils/0001-qdiriterator-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kcmutils/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcmutils/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kcmutils/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kcmutils/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcodecs.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kcodecs.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kcodecs.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcompletion.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kcompletion.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kcompletion.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.17/kconfig.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kconfig.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kconfig.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kconfigwidgets/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kconfigwidgets/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcoreaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.16/kcoreaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kcoreaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.17/kcrash.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kcrash.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kcrash.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdbusaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdbusaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdbusaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdeclarative.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdeclarative.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdeclarative.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kded.nix b/pkgs/development/libraries/kde-frameworks-5.17/kded.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kded.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kded.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdelibs4support.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdelibs4support.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdelibs4support.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdelibs4support.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.16/kdesignerplugin.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdesignerplugin.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdesu.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdesu.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdesu.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdewebkit.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdewebkit.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdewebkit.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdnssd.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdnssd.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdnssd.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdoctools/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kdoctools/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kdoctools/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.17/kdoctools/setup-hook.sh similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kdoctools/setup-hook.sh rename to pkgs/development/libraries/kde-frameworks-5.17/kdoctools/setup-hook.sh diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kemoticons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kemoticons.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kemoticons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kfilemetadata.nix b/pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix similarity index 83% rename from pkgs/development/libraries/kde-frameworks-5.16/kfilemetadata.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kfilemetadata.nix index 92ca1f26b93b6df873215b5f1c9429f633d37b0f..be99c58d550413379590451a222ae971c9fbd764 100644 --- a/pkgs/development/libraries/kde-frameworks-5.16/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.15/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.17/kglobalaccel.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kglobalaccel.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kglobalaccel.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kguiaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kguiaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kguiaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.17/khtml.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/khtml.nix rename to pkgs/development/libraries/kde-frameworks-5.17/khtml.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix similarity index 81% rename from pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix rename to pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix index 915e3294b465dd9a252533dddf36b7d2b83f60a1..268006512e7c3e206be5f6d47774adbcd3ad3501 100644 --- a/pkgs/development/libraries/kde-frameworks-5.16/ki18n.nix +++ b/pkgs/development/libraries/kde-frameworks-5.17/ki18n.nix @@ -2,13 +2,14 @@ , extra-cmake-modules , gettext , python +, qtdeclarative , qtscript }: kdeFramework { name = "ki18n"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtscript ]; + buildInputs = [ qtdeclarative qtscript ]; propagatedNativeBuildInputs = [ gettext python ]; 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 0000000000000000000000000000000000000000..5b3b15d5d5b5b24e79a3881981912e946c25cf0d --- /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.16/kiconthemes.nix b/pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix similarity index 53% rename from pkgs/development/libraries/kde-frameworks-5.16/kiconthemes.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kiconthemes/default.nix index eb24403169d63a8b657f77e4502d0857308901f2..b78b25582bebdaafef59a809ad0f4cba06adfd26 100644 --- a/pkgs/development/libraries/kde-frameworks-5.16/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 0000000000000000000000000000000000000000..ab5cc8a3edb2793fd55ead1ee8ee0d04f7f71fcd --- /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/kde-frameworks-5.15/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.17/kidletime.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kidletime.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kidletime.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.17/kimageformats.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kimageformats.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kimageformats.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.17/kinit/0001-kinit-libpath.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kinit/0001-kinit-libpath.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kinit/0001-kinit-libpath.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kinit/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kinit/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kinit/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kio.nix b/pkgs/development/libraries/kde-frameworks-5.17/kio.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.16/kio.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kio.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.17/kitemmodels.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kitemmodels.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kitemmodels.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.17/kitemviews.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kitemviews.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kitemviews.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.17/kjobwidgets.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kjobwidgets.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kjobwidgets.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.17/kjs.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kjs.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kjs.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.17/kjsembed.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kjsembed.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kjsembed.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.17/kmediaplayer.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kmediaplayer.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kmediaplayer.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.17/knewstuff.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/knewstuff.nix rename to pkgs/development/libraries/kde-frameworks-5.17/knewstuff.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.17/knotifications.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/knotifications.nix rename to pkgs/development/libraries/kde-frameworks-5.17/knotifications.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.17/knotifyconfig.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/knotifyconfig.nix rename to pkgs/development/libraries/kde-frameworks-5.17/knotifyconfig.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0001-allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0001-allow-external-paths.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kpackage/0001-allow-external-paths.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kpackage/0001-allow-external-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/0002-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/0002-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kpackage/0002-qdiriterator-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kpackage/0002-qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpackage/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kpackage/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kpackage/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kpackage/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kparts.nix b/pkgs/development/libraries/kde-frameworks-5.17/kparts.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kparts.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kparts.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpeople.nix b/pkgs/development/libraries/kde-frameworks-5.17/kpeople.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kpeople.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kpeople.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kplotting.nix b/pkgs/development/libraries/kde-frameworks-5.17/kplotting.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kplotting.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kplotting.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kpty.nix b/pkgs/development/libraries/kde-frameworks-5.17/kpty.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kpty.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kpty.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kross.nix b/pkgs/development/libraries/kde-frameworks-5.17/kross.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kross.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kross.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/krunner.nix b/pkgs/development/libraries/kde-frameworks-5.17/krunner.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/krunner.nix rename to pkgs/development/libraries/kde-frameworks-5.17/krunner.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.17/kservice/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kservice/0001-qdiriterator-follow-symlinks.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kservice/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.17/kservice/0002-no-canonicalize-path.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kservice/0002-no-canonicalize-path.patch rename to pkgs/development/libraries/kde-frameworks-5.17/kservice/0002-no-canonicalize-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/kservice/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kservice/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kservice/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kservice/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.17/kservice/setup-hook.sh similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kservice/setup-hook.sh rename to pkgs/development/libraries/kde-frameworks-5.17/kservice/setup-hook.sh diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/0001-no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/0001-no-qcoreapplication.patch similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/0001-no-qcoreapplication.patch rename to pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/0001-no-qcoreapplication.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/ktexteditor/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/ktexteditor/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.17/ktextwidgets.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/ktextwidgets.nix rename to pkgs/development/libraries/kde-frameworks-5.17/ktextwidgets.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.17/kunitconversion.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kunitconversion.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kunitconversion.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.17/kwallet.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kwallet.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kwallet.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.17/kwidgetsaddons.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kwidgetsaddons.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kwidgetsaddons.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.17/kwindowsystem.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kwindowsystem.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kwindowsystem.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.17/kxmlgui.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.16/kxmlgui.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kxmlgui.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.17/kxmlrpcclient.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/kxmlrpcclient.nix rename to pkgs/development/libraries/kde-frameworks-5.17/kxmlrpcclient.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.17/modemmanager-qt.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/modemmanager-qt.nix rename to pkgs/development/libraries/kde-frameworks-5.17/modemmanager-qt.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.17/networkmanager-qt.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/networkmanager-qt.nix rename to pkgs/development/libraries/kde-frameworks-5.17/networkmanager-qt.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.16/oxygen-icons5.nix b/pkgs/development/libraries/kde-frameworks-5.17/oxygen-icons5.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.16/oxygen-icons5.nix rename to pkgs/development/libraries/kde-frameworks-5.17/oxygen-icons5.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.17/plasma-framework/default.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/plasma-framework/default.nix rename to pkgs/development/libraries/kde-frameworks-5.17/plasma-framework/default.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/solid.nix b/pkgs/development/libraries/kde-frameworks-5.17/solid.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/solid.nix rename to pkgs/development/libraries/kde-frameworks-5.17/solid.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.15/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.17/sonnet.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/sonnet.nix rename to pkgs/development/libraries/kde-frameworks-5.17/sonnet.nix diff --git a/pkgs/development/libraries/kde-frameworks-5.17/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.17/srcs.nix new file mode 100644 index 0000000000000000000000000000000000000000..8cf8d1bbad4548393908f4dc7a1506fb12f1cd76 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.17/srcs.nix @@ -0,0 +1,565 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/attica-5.17.0.tar.xz"; + sha256 = "0n5f8754705ga3s158nn56haakajcpx7hms3pjn32jc1n95h06nf"; + name = "attica-5.17.0.tar.xz"; + }; + }; + baloo = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/baloo-5.17.0.tar.xz"; + sha256 = "01gkn69i63ppjrswpqw1vdfc590vn4xlld1zmjzprbfs2ryni2k0"; + name = "baloo-5.17.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/bluez-qt-5.17.0.tar.xz"; + sha256 = "1jh60gs2lqwg1x609lh3lrgqjfg179r40j59wgmzrm5bfvc5zsk5"; + name = "bluez-qt-5.17.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/breeze-icons-5.17.0.tar.xz"; + sha256 = "120x15mps8gy4c4vzrcwvfcmjv7qka7q92lyqk76g70v6yh29q84"; + name = "breeze-icons-5.17.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/extra-cmake-modules-5.17.0.tar.xz"; + sha256 = "01blad3rwffsgd21xkkk653kbqv2gvh0ckmvpil9x9fc0w7gwmqs"; + name = "extra-cmake-modules-5.17.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/frameworkintegration-5.17.0.tar.xz"; + sha256 = "1f8clq6wszb74qal6402r66izansn9cz1x5j13v8ajwqb7rr8gvl"; + name = "frameworkintegration-5.17.0.tar.xz"; + }; + }; + kactivities = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kactivities-5.17.0.tar.xz"; + sha256 = "0lnx3kbgna9pq1bdzzygng0l7rkwyvr2gkxm5abhbw290dvq0xas"; + name = "kactivities-5.17.0.tar.xz"; + }; + }; + kapidox = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kapidox-5.17.0.tar.xz"; + sha256 = "1cd32n36w8hfggng61m50jflb9lpv4ba74aq1g64c1grbfjad3k1"; + name = "kapidox-5.17.0.tar.xz"; + }; + }; + karchive = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/karchive-5.17.0.tar.xz"; + sha256 = "1ry7vwgc1np9pw1b8791lji09n1y6afyifqlv112riifq7ljmld1"; + name = "karchive-5.17.0.tar.xz"; + }; + }; + kauth = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kauth-5.17.0.tar.xz"; + sha256 = "0v7vgh4hmfk3h3083jwx3n11xz22j6vn50naffzwwixqlrqa7qy3"; + name = "kauth-5.17.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kbookmarks-5.17.0.tar.xz"; + sha256 = "0rk70ag21lpym9lw4dd9rlq77lfi2v2y076g6000hhrqjnvdbcya"; + name = "kbookmarks-5.17.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcmutils-5.17.0.tar.xz"; + sha256 = "176b8ai490ipc1p8zqzi3ymsqzazb7awgnrd81b4fr3fzcm3q8zh"; + name = "kcmutils-5.17.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcodecs-5.17.0.tar.xz"; + sha256 = "12nic57sx69zvj9ihw3ifiwnf9giqq57kgp892kcz5q42wjqzvj3"; + name = "kcodecs-5.17.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcompletion-5.17.0.tar.xz"; + sha256 = "0d8mx3kr29lp1fk0n8pmmzlzrw9fa3czayn46xdwf1dr2pjj4a2g"; + name = "kcompletion-5.17.0.tar.xz"; + }; + }; + kconfig = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kconfig-5.17.0.tar.xz"; + sha256 = "1kdagw6wisqnfj6iq77r0nkc04cvhj4n454s3w3az0bhk23b4nrj"; + name = "kconfig-5.17.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kconfigwidgets-5.17.0.tar.xz"; + sha256 = "0fvrk5ap4lr8i2nlphsy3z7kv39h28v33yja2r54pa4207kq4cy2"; + name = "kconfigwidgets-5.17.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcoreaddons-5.17.0.tar.xz"; + sha256 = "0pd6siicagcjd4vbn30rhrlwy6r3iiyjpl2pim1njr6fvsb0687n"; + name = "kcoreaddons-5.17.0.tar.xz"; + }; + }; + kcrash = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kcrash-5.17.0.tar.xz"; + sha256 = "0v1v4ksfswc3fg7piqiw0fln30vilk5pbqq2wphbwbgn5im91m7d"; + name = "kcrash-5.17.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdbusaddons-5.17.0.tar.xz"; + sha256 = "1n4k97206v7hdkrd2p8vhy1bnr194zvamw3vpvhfxgq4pr4a96dm"; + name = "kdbusaddons-5.17.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdeclarative-5.17.0.tar.xz"; + sha256 = "12p5dkdww32d5gk71aw7x5xpa3gj1ag60vj17b9v3zmax0a2g84k"; + name = "kdeclarative-5.17.0.tar.xz"; + }; + }; + kded = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kded-5.17.0.tar.xz"; + sha256 = "1sly9dviv0q99045p13xswjr78x2x5fzwj4qad66w6cyv67i0khk"; + name = "kded-5.17.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kdelibs4support-5.17.0.tar.xz"; + sha256 = "03i7r60zjd10cam0q0kld0x43a8fn281bgn25fysw7604f92x7rx"; + name = "kdelibs4support-5.17.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdesignerplugin-5.17.0.tar.xz"; + sha256 = "0v47sia41gsf9gaf5jgvfgf2wzszfa76abzplqrmlgvrymi1fk1z"; + name = "kdesignerplugin-5.17.0.tar.xz"; + }; + }; + kdesu = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdesu-5.17.0.tar.xz"; + sha256 = "188k34x4z1s948f3qdy4c5pascdzshrqnbsx0ppnjlgxhv8sx108"; + name = "kdesu-5.17.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdewebkit-5.17.0.tar.xz"; + sha256 = "1p3nanp1i09hpxp9gfvjyqcrfjf7ypxpfhpd381az96pjs35dixc"; + name = "kdewebkit-5.17.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdnssd-5.17.0.tar.xz"; + sha256 = "05njhdpmp28c46271laxjy87v6miwzf7xm1886b9q0v47cpin2p1"; + name = "kdnssd-5.17.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kdoctools-5.17.0.tar.xz"; + sha256 = "0qbzj68rfg9xc3nabhrnaqm9ysgbrdhdgm8ag64ixk6b4x6hjmr8"; + name = "kdoctools-5.17.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kemoticons-5.17.0.tar.xz"; + sha256 = "0cxzjfsl1ph3nl6ycsgyaz22rb4nc15n2glcgnmrqchh67xxzv13"; + name = "kemoticons-5.17.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kfilemetadata-5.17.0.tar.xz"; + sha256 = "1a6865v1cz31i8a63hhjzp1lw5b78p0r7ypml6syxlblpg2y9mzh"; + name = "kfilemetadata-5.17.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kglobalaccel-5.17.0.tar.xz"; + sha256 = "0dm8xljqgxay98dcqdgvmhcf0fanv3iiw23nk4vyzis6n8nv04hz"; + name = "kglobalaccel-5.17.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kguiaddons-5.17.0.tar.xz"; + sha256 = "1r15ll4c27zp78p9i18izxrpmf41hynz16z0fmz8jgcdnxgx0d74"; + name = "kguiaddons-5.17.0.tar.xz"; + }; + }; + khtml = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/khtml-5.17.0.tar.xz"; + sha256 = "0mz5mb7mh2nxih2avy2ncmchlyzg8pignnl4lbr5cnfc7y79g7i4"; + name = "khtml-5.17.0.tar.xz"; + }; + }; + ki18n = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/ki18n-5.17.0.tar.xz"; + sha256 = "07chysr2x579ll6qwxmirmcy5b06wf0578l8xmvgc9q4wk0m0m73"; + name = "ki18n-5.17.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kiconthemes-5.17.0.tar.xz"; + sha256 = "1fgwgwmrb0pav30s7wc30src92cvfw6cxqz2q14n5flz7kg1d0k3"; + name = "kiconthemes-5.17.0.tar.xz"; + }; + }; + kidletime = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kidletime-5.17.0.tar.xz"; + sha256 = "06ig3wca3k1kdq0w1pl5syvcgrrshyws6xal7qswr6vsf6jd7n95"; + name = "kidletime-5.17.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kimageformats-5.17.0.tar.xz"; + sha256 = "0dw007wc50fhgpm1sv8qxs3y8xwwgcz33nd8p7yg8bxqfgjmhzbs"; + name = "kimageformats-5.17.0.tar.xz"; + }; + }; + kinit = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kinit-5.17.0.tar.xz"; + sha256 = "18agcc5z8g0vsk97wh4p09185m5vz52wdsia7rg8f5fb4wkzrn5i"; + name = "kinit-5.17.0.tar.xz"; + }; + }; + kio = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kio-5.17.0.tar.xz"; + sha256 = "1dfh2kbp00kv5b94p4xjimh4fhlwmcgac7wsi1g2pvrbw7gsi48l"; + name = "kio-5.17.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kitemmodels-5.17.0.tar.xz"; + sha256 = "19zq1d7ymfzlz3nx4a9hvlfssa7x0rdh8pg8i9rchalals6239ny"; + name = "kitemmodels-5.17.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kitemviews-5.17.0.tar.xz"; + sha256 = "1k3f1j3sw86jl5y3ak767ldb2fraspldjh6i98926wingqq3y8p3"; + name = "kitemviews-5.17.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kjobwidgets-5.17.0.tar.xz"; + sha256 = "02j7fm0g0dc6grvgjhx269b5p4xil7k8z1m8amkjpc7v3j3vkyrw"; + name = "kjobwidgets-5.17.0.tar.xz"; + }; + }; + kjs = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kjs-5.17.0.tar.xz"; + sha256 = "0988qcgiqc4mla3x12mb8xaw0mhy2kmdi94xw634az03mwghljh4"; + name = "kjs-5.17.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kjsembed-5.17.0.tar.xz"; + sha256 = "0am27pdc2pdjisc82iinq68lw8r12a0zb9n6ywa1mlqbrvr5sqgs"; + name = "kjsembed-5.17.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kmediaplayer-5.17.0.tar.xz"; + sha256 = "1idzbddyfrf05kbqqm1hcyy53qrnvg9sb0f29rqp33mq36y63rxg"; + name = "kmediaplayer-5.17.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/knewstuff-5.17.0.tar.xz"; + sha256 = "1ljr1syg7810ww0wlqq2p7xdqn9sfz7kkxr8vdw4627gjqr50l5s"; + name = "knewstuff-5.17.0.tar.xz"; + }; + }; + knotifications = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/knotifications-5.17.0.tar.xz"; + sha256 = "0k2g0vmlhandp9zihj5sbs06yanmpy06h2pq5d2hn569anvpxr0r"; + name = "knotifications-5.17.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/knotifyconfig-5.17.0.tar.xz"; + sha256 = "1lfa23vag5j294ry5c0n59rs04k1mb5yr7vi69al2pw6xmnkbw6n"; + name = "knotifyconfig-5.17.0.tar.xz"; + }; + }; + kpackage = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kpackage-5.17.0.tar.xz"; + sha256 = "03z3hcibzkzymva935gx39bbrl61jw8wnxqxh2f56z7qmm7sj9x7"; + name = "kpackage-5.17.0.tar.xz"; + }; + }; + kparts = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kparts-5.17.0.tar.xz"; + sha256 = "08dh17z5345gmvaacrllpx9zdfayndfxl8ykhzpp3gvx0ssrswwx"; + name = "kparts-5.17.0.tar.xz"; + }; + }; + kpeople = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kpeople-5.17.0.tar.xz"; + sha256 = "0d7j2j92r2iwkabnqm6f6wm5d4j69r4z1859pc9l4rhh4f0qy9g3"; + name = "kpeople-5.17.0.tar.xz"; + }; + }; + kplotting = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kplotting-5.17.0.tar.xz"; + sha256 = "0i8gcvf2fiaxxqjan1lil9is8v5bfd4yi9zyl7bzijcishckrkmx"; + name = "kplotting-5.17.0.tar.xz"; + }; + }; + kpty = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kpty-5.17.0.tar.xz"; + sha256 = "1csgwp9y33sfgzn4mwinqznfmsd2cm1iia6qm0xpmf8n39rassxc"; + name = "kpty-5.17.0.tar.xz"; + }; + }; + kross = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/kross-5.17.0.tar.xz"; + sha256 = "0bjkp8ibaw1zr71dbfz09qbaragmzh3slyp8mm6ypaixgfvprklx"; + name = "kross-5.17.0.tar.xz"; + }; + }; + krunner = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/portingAids/krunner-5.17.0.tar.xz"; + sha256 = "0ghxbmkpi20kbrsn6kib3na3gdnsn5akfzazfwh8q00dhabhin4k"; + name = "krunner-5.17.0.tar.xz"; + }; + }; + kservice = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kservice-5.17.0.tar.xz"; + sha256 = "0nz46n6yj3h6ml0gvn2j7malvxn4p96q9xh9f2i7j1jwl3c5j4b8"; + name = "kservice-5.17.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/ktexteditor-5.17.0.tar.xz"; + sha256 = "16shf6zq019pmg8avnlvn4l5w71h4y6v3511rckn8kqdrz3wb4pr"; + name = "ktexteditor-5.17.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/ktextwidgets-5.17.0.tar.xz"; + sha256 = "1940a2s084hwf359rr3vrlzdz09iyn3nlpch24wgff728i28mc73"; + name = "ktextwidgets-5.17.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kunitconversion-5.17.0.tar.xz"; + sha256 = "0yc3k0d91m5ql75azabqqsihy3hai3x0hzwby8wwm5by20mq1bjf"; + name = "kunitconversion-5.17.0.tar.xz"; + }; + }; + kwallet = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kwallet-5.17.0.tar.xz"; + sha256 = "0552cd4m6nf439vrbwljxmb030h1ndmldvnl4p5r0g8h8jd12siv"; + name = "kwallet-5.17.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kwidgetsaddons-5.17.0.tar.xz"; + sha256 = "151jywz4z375kgx362i39gf5xb7fdayz9kly738vzwx4vx253xvn"; + name = "kwidgetsaddons-5.17.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kwindowsystem-5.17.0.tar.xz"; + sha256 = "180b567ixiv487fdw2hp0jgs7cckm8f82y0mny5zvi25l39gjq54"; + name = "kwindowsystem-5.17.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kxmlgui-5.17.0.tar.xz"; + sha256 = "0rbxk9f918wmq1ijxcpjf6rl31p1f0f85f8rjk5aln3gh65b1zdn"; + name = "kxmlgui-5.17.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/kxmlrpcclient-5.17.0.tar.xz"; + sha256 = "1zj7c6b72cnnkds73938xyy87padbv0ah3jfqxdfb1yd5zxba7cs"; + name = "kxmlrpcclient-5.17.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/modemmanager-qt-5.17.0.tar.xz"; + sha256 = "1q3abgr527lcrzy40anm3sjy9j8ycga4g1gkqz201lwa1wp22zr3"; + name = "modemmanager-qt-5.17.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/networkmanager-qt-5.17.0.tar.xz"; + sha256 = "08aafz3y2lnnl5dmzj4s1nfjwhy3mda20pkxjyw1vk8l3s8nhs1l"; + name = "networkmanager-qt-5.17.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/oxygen-icons5-5.17.0.tar.xz"; + sha256 = "18m5hfz4zappnz45f230sgjbl52fsjxli6d5dvm6998bhcyvv1y9"; + name = "oxygen-icons5-5.17.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/plasma-framework-5.17.0.tar.xz"; + sha256 = "0pi91pg9h0s4xziw9m8mc65b8ryhgjnv14zalmbwyr63qn7bkfjh"; + name = "plasma-framework-5.17.0.tar.xz"; + }; + }; + solid = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/solid-5.17.0.tar.xz"; + sha256 = "1igdqk5cgrxq4is55zdskkc0kbcyp9vjfdrvr9xxhs0lxgizccx3"; + name = "solid-5.17.0.tar.xz"; + }; + }; + sonnet = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/sonnet-5.17.0.tar.xz"; + sha256 = "0f7bzdcknc7kc4133q0c3zc1j78yf29kh8i7c0qg01zv1iafbbsv"; + name = "sonnet-5.17.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.17.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.17/threadweaver-5.17.0.tar.xz"; + sha256 = "1cf7qrzw4saai0z6l7bzhfc8clhngcgxla5zbpj28l6130lha8sw"; + name = "threadweaver-5.17.0.tar.xz"; + }; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.15/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.17/threadweaver.nix similarity index 100% rename from pkgs/development/libraries/kde-frameworks-5.15/threadweaver.nix rename to pkgs/development/libraries/kde-frameworks-5.17/threadweaver.nix diff --git a/pkgs/development/libraries/libb64/default.nix b/pkgs/development/libraries/libb64/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..793c4992c3f06ef58323e4ad1b65837496e161d4 --- /dev/null +++ b/pkgs/development/libraries/libb64/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "libb64-${version}"; + version = "1.2"; + + src = fetchurl { + url = "http://download.draios.com/dependencies/libb64-1.2.src.zip"; + md5 = "a609809408327117e2c643bed91b76c5"; + }; + + buildInputs = [ unzip ]; + + installPhase = '' + mkdir -p $out $out/lib $out/bin $out/include + cp -r include/* $out/include/ + cp base64/base64 $out/bin/ + cp src/libb64.a src/cencode.o src/cdecode.o $out/lib/ + ''; + + meta = { + inherit version; + description = "ANSI C routines for fast base64 encoding/decoding"; + license = stdenv.lib.licenses.publicDomain; + }; +} 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 5f76162453c438c2d63b58461c0d66341c9a7864..0000000000000000000000000000000000000000 --- 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/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index 816b9728cc99c58bc4fd933fc2cf5fec1c570eff..962f716c120a78927ad7cf9e94617b210b678f06 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv }: +{ fetchurl, stdenv, dejagnu, doCheck ? false }: stdenv.mkDerivation rec { name = "libffi-3.2.1"; @@ -12,11 +12,15 @@ stdenv.mkDerivation rec { outputs = [ "dev" "out" "doc" ]; + buildInputs = stdenv.lib.optional doCheck dejagnu; + configureFlags = [ "--with-gcc-arch=generic" # no detection of -march= or -mtune= "--enable-pax_emutramp" ]; + inherit doCheck; + dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling. # Install headers and libs in the right places. diff --git a/pkgs/development/libraries/libguestfs/default.nix b/pkgs/development/libraries/libguestfs/default.nix index 661a5c8b8ca675d3760388cc3ee99d9e4d4e3e1b..6853c9a2ef0760d1bf92221e81c6fe2c0a9fcc57 100644 --- a/pkgs/development/libraries/libguestfs/default.nix +++ b/pkgs/development/libraries/libguestfs/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, autoconf, automake, libtool, makeWrapper , ncurses, cpio, gperf, perl, cdrkit, flex, bison, qemu, pcre, augeas, libxml2 , acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex -, gmp, readline, file, libintlperl, GetoptLong, SysVirt }: +, gmp, readline, file, libintlperl, GetoptLong, SysVirt, numactl, xen }: stdenv.mkDerivation rec { name = "libguestfs-${version}"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { makeWrapper pkgconfig autoconf automake libtool ncurses cpio gperf perl cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig systemd fuse yajl libvirt gmp readline file hivex libintlperl GetoptLong - SysVirt + SysVirt numactl xen ]; configureFlags = "--disable-appliance --disable-daemon"; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index d9619fd2712bace5afce469b82304768bdbbb2df..5fbc6bb1dbf02ba29d7b83c091f012f6887ab338 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.79"; + version = "0.7.80"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "0lanhx1zg7s36wgi9ndv4zz7dbhkqz4dc99mva6x9rcj2p5p8c6d"; + sha256 = "0v9px37qx0dkx67gqwi1rd9x4m7zm1ml8sdj5fx0isj6qymbd1z5"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix index 8f46d1c0bfd2ab4a1e3154b926b51c5cb688e5f7..479a187cf87c9d4d911f4e40473a4a01a0ae9cf4 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/libosinfo/default.nix b/pkgs/development/libraries/libosinfo/default.nix index 7c103d76bd58d98bc88d0160589e32f2bff8d83a..83873cc36601f817c7d5d8612a18bfb59c192996 100644 --- a/pkgs/development/libraries/libosinfo/default.nix +++ b/pkgs/development/libraries/libosinfo/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "libosinfo-0.2.11"; + name = "libosinfo-0.2.12"; src = fetchurl { url = "https://fedorahosted.org/releases/l/i/libosinfo/${name}.tar.gz"; - sha256 = "0889zvidhmpk3nd7c1xhh3fkk9i014dkr6zdlddh89kbflva2sxv"; + sha256 = "1vcg8ylh7q69s9y6hj94dqfffwfbann3i28yqgfc01navf6yl07s"; }; buildInputs = [ diff --git a/pkgs/development/libraries/libpng/12.nix b/pkgs/development/libraries/libpng/12.nix index 6e7481805e700a29e43b2b5fd3150b25946adf50..01e90cb191324a8257abd7bc41c06d60960ce61b 100644 --- a/pkgs/development/libraries/libpng/12.nix +++ b/pkgs/development/libraries/libpng/12.nix @@ -3,11 +3,11 @@ assert !(stdenv ? cross) -> zlib != null; stdenv.mkDerivation rec { - name = "libpng-1.2.54"; + name = "libpng-1.2.55"; src = fetchurl { url = "mirror://sourceforge/libpng/${name}.tar.xz"; - sha256 = "0wnjy7gqn0f24qrlggs7kl0ij59by413j1xmqp12n3vqh9j531fg"; + sha256 = "0zkra0b9lrpk2axassdgkqinmc2ba6b473sm52xbpyknaqs2fljy"; }; outputs = [ "dev" "out" "man" ]; diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index 00abbbbdca48a0300a8c2947e46898061f3b5ce7..6faed97aaee28ab9eb5814710c51fe9d3e423529 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -3,11 +3,11 @@ assert zlib != null; let - version = "1.6.19"; - sha256 = "1s1mmkl79ghiczi2x2rbnp6y70v4c5pr8g3icxn9h5imymbmc71i"; + version = "1.6.20"; + sha256 = "12wis4rlisfnw79pj2778m42m94xpi9nq8m385hxk11lkyg9biam"; patch_src = fetchurl { url = "mirror://sourceforge/libpng-apng/libpng-${version}-apng.patch.gz"; - sha256 = "0bgqkac16yhl0zwjzq2zwkixg2l2x3a6blbk3k0wqz0lza2a6jrh"; + sha256 = "11xgal9qk6fmqdgcb37xg55f2y58wizszw54p1pyq855d2xpwfz6"; }; whenPatched = stdenv.lib.optionalString apngSupport; diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 4058943b6f341fa99a5208bdf724b39b1eec1320..1412e1d59fad9df3ed07fa88510fe9689f02ea18 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/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index fd18c7f5652664db530e7f3278cc0b68a08ce826..89e7e6507e497f15fa9c62fc744d1601fb1e1cea 100644 --- a/pkgs/development/libraries/libressl/2.2.nix +++ b/pkgs/development/libraries/libressl/2.2.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.2.4"; + version = "2.2.5"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "0zlsxw366n438dc14zqnim6fc5vh1574jj95hv1sym46prcrhh3b"; + sha256 = "0jwidi7fafcdh5qml72dx0ad0kfsk94qxzm29i7wd3cx8v8dxjp3"; }; enableParallelBuilding = true; @@ -15,6 +15,6 @@ stdenv.mkDerivation rec { description = "Free TLS/SSL implementation"; homepage = "http://www.libressl.org"; platforms = platforms.all; - maintainers = with maintainers; [ thoughtpolice wkennington fpletz ]; + maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; }; } diff --git a/pkgs/development/libraries/libsass/default.nix b/pkgs/development/libraries/libsass/default.nix index 356891e7351dde6e2a6faf7a3495367619901163..9efe07c6567975dd6f52c51c836f9af97707a5f2 100644 --- a/pkgs/development/libraries/libsass/default.nix +++ b/pkgs/development/libraries/libsass/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libsass-${version}"; - version = "3.2.4"; + version = "3.3.2"; src = fetchurl { url = "https://github.com/sass/libsass/archive/${version}.tar.gz"; - sha256 = "1v804r7k0iv97ihlr46hwfw88v874kfklsm616b85yzdz0105i8h"; + sha256 = "affb7efaa7e152e576cc1d510c662ebe067b0b9e9228ad2937dcafdd4431b573"; }; patchPhase = '' diff --git a/pkgs/development/libraries/libvirt-glib/default.nix b/pkgs/development/libraries/libvirt-glib/default.nix index ae1f0e41448701c1318b822d6eb5d94f242b0aaa..ae83ce78d5fe24fbf12e3de54ed11f7d894ed13f 100644 --- a/pkgs/development/libraries/libvirt-glib/default.nix +++ b/pkgs/development/libraries/libvirt-glib/default.nix @@ -1,36 +1,21 @@ { stdenv, fetchurl, pkgconfig, libvirt, glib, libxml2, intltool, libtool, yajl -, nettle, libgcrypt, python, pygobject, gobjectIntrospection, libcap_ng +, nettle, libgcrypt, python, pygobject, gobjectIntrospection, libcap_ng, numactl +, xen }: stdenv.mkDerivation rec { - name = "libvirt-glib-0.2.0"; + name = "libvirt-glib-0.2.3"; src = fetchurl { url = "http://libvirt.org/sources/glib/${name}.tar.gz"; - sha256 = "02saqkk4wzsimsan7s9yc5bx05xn7j00hnxhq4sczkgr4krf1drh"; + sha256 = "1pahj8qa7k2307sd57rwqwq1hijya02v0sxk91hl3cw48niimcf3"; }; buildInputs = [ pkgconfig libvirt glib libxml2 intltool libtool yajl nettle libgcrypt - python pygobject gobjectIntrospection libcap_ng + python pygobject gobjectIntrospection libcap_ng numactl xen ]; - # Compiler flag -fstack-protector-all fixes this build error: - # - # ./.libs/libvirt-glib-1.0.so: undefined reference to `__stack_chk_guard' - # - # And the extra include path fixes this build error: - # - # In file included from ../libvirt-gobject/libvirt-gobject-domain-device.h:30:0, - # from /tmp/nix-build-libvirt-glib-0.1.7.drv-2/libvirt-glib-0.1.7/libvirt-gobject/libvirt-gobject.h:33, - # from :4: - # ../libvirt-gobject/libvirt-gobject-domain.h:33:29: fatal error: libvirt/libvirt.h: No such file or directory - # compilation terminated. - # make[3]: *** [LibvirtGObject-1.0.gir] Error 1 - preConfigure = '' - export NIX_CFLAGS_COMPILE="-fstack-protector-all -I${libvirt}/include" - ''; - meta = with stdenv.lib; { description = "Library for working with virtual machines"; longDescription = '' diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index a8295380829e93e9e2146cbc774347415f4fbe8e..c947758b9794128e1e918b32ea52d9d9416f70ec 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -1,16 +1,13 @@ { stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python , iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext , libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng -, dnsmasq, libnl, libpcap, libxslt, xhtml1 -, pythonPackages, perlPackages +, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages +, curl, libiconv, gmp, xen }: -let version = "1.2.19"; in - -assert version == pythonPackages.libvirt.version; - stdenv.mkDerivation rec { name = "libvirt-${version}"; + version = "1.2.19"; src = fetchurl { url = "http://libvirt.org/sources/${name}.tar.gz"; @@ -18,23 +15,40 @@ stdenv.mkDerivation rec { }; buildInputs = [ - pkgconfig libxml2 gnutls devicemapper perl python readline lvm2 - utillinux systemd.udev.lib libpciaccess gettext libtasn1 libgcrypt yajl makeWrapper - libcap_ng libnl libxslt xhtml1 perlPackages.XMLXPath + pkgconfig libxml2 gnutls perl python readline + gettext libtasn1 libgcrypt yajl makeWrapper + libxslt xhtml1 perlPackages.XMLXPath curl libpcap + ] ++ stdenv.lib.optionals stdenv.isLinux [ + libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng + libnl numad numactl xen + ] ++ stdenv.lib.optionals stdenv.isDarwin [ + libiconv gmp ]; - preConfigure = '' - PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/sbin:${dnsmasq}/bin:$PATH + preConfigure = stdenv.lib.optionalString stdenv.isLinux '' + PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/bin:$PATH + substituteInPlace configure --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"' + '' + '' + PATH=${dnsmasq}/bin:$PATH patchShebangs . # fixes /usr/bin/python references ''; configureFlags = [ "--localstatedir=/var" "--sysconfdir=/etc" - "--with-init-script=redhat" + "--with-libpcap" + "--with-vmware" + "--with-vbox" + "--with-test" + "--with-esx" + "--with-remote" + ] ++ stdenv.lib.optionals stdenv.isLinux [ + "--with-numad" "--with-macvtap" "--with-virtualport" - "--with-libpcap" + "--with-init-script=redhat" + ] ++ stdenv.lib.optionals stdenv.isDarwin [ + "--with-init-script=none" ]; installFlags = [ @@ -46,8 +60,9 @@ stdenv.mkDerivation rec { sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh substituteInPlace $out/libexec/libvirt-guests.sh \ --replace "$out/bin" "${gettext}/bin" + '' + stdenv.lib.optionalString stdenv.isLinux '' wrapProgram $out/sbin/libvirtd \ - --prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/bin + --prefix PATH : ${iptables}/sbin:${iproute}/sbin:${pmutils}/bin:${numad}/bin:${numactl}/bin ''; enableParallelBuilding = true; @@ -62,6 +77,6 @@ stdenv.mkDerivation rec { versions of Linux (and other OSes) ''; license = licenses.lgpl2Plus; - platforms = platforms.linux; + platforms = platforms.unix; }; } diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 3386de316b94f8e15c63559df27cc4e426993320..3596a994baff913f12ff28d5c1fc4e4edeee686f 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -23,7 +23,7 @@ else with { inherit (stdenv.lib) optional optionalString; }; let - version = "11.0.5"; + version = "11.0.8"; # this is the default search path for DRI drivers driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32"; in @@ -33,10 +33,12 @@ stdenv.mkDerivation { src = fetchurl { urls = [ - "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" "ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz" + (with stdenv.lib; ''ftp://ftp.freedesktop.org/pub/mesa/older-versions/'' + + head (splitString "." version) + ''.x/${version}/mesa-${version}.tar.xz'') + "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" ]; - sha256 = "9c255a2a6695fcc6ef4a279e1df0aeaf417dc142f39ee59dfb533d80494bb67a"; + sha256 = "5696e4730518b6805d2ed5def393c4293f425a2c2c01bd5ed4bdd7ad62f7ad75"; }; prePatch = "patchShebangs ."; 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 6f308a20fdc05a3f03c271dcb6cdfd5daa97e89d..0000000000000000000000000000000000000000 --- 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/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index b026119441482c28d382dacced65abb153ca056c..9a1b5e31345269b37f31832aca58c1bce45c4470 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl }: -let version = "4.10.10"; in +let version = "4.11"; in stdenv.mkDerivation { name = "nspr-${version}"; src = fetchurl { url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; - sha256 = "343614971c30520d0fa55f4af0a72578e2d8674bb71caf7187490c3379523107"; + sha256 = "cb320a9eee7028275ac0fce7adc39dee36f14f02fd8432fce1b7e1aa5e3685c2"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/nss/85_security_load.patch b/pkgs/development/libraries/nss/85_security_load.patch index d20572a051efc013d47bb0bec949906307fc323e..3e51e2908873580145cf01b91a954c29dbec4b0b 100644 --- a/pkgs/development/libraries/nss/85_security_load.patch +++ b/pkgs/development/libraries/nss/85_security_load.patch @@ -48,7 +48,7 @@ diff -ru nss-3.16-orig/nss/lib/util/secload.c nss-3.16/nss/lib/util/secload.c + if (!c) { /* referencePath doesn't contain a / means that dladdr gave us argv[0] + * and program was called from $PATH. Hack to get libs from NIX_NSS_LIBDIR */ + referencePath = NIX_NSS_LIBDIR; -+ c = &referencePath[sizeof(NIX_NSS_LIBDIR) - 1]; /* last / */ ++ c = (char*) &referencePath[sizeof(NIX_NSS_LIBDIR) - 1]; /* last / */ + } if (c) { size_t referencePathSize = 1 + c - referencePath; diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index 12c44c4cae0c1905077338c5cf35881bc1a1f63c..96326bf1df0596970e5da9bbb5eebcef01b645ce 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -9,11 +9,11 @@ let in stdenv.mkDerivation rec { name = "nss-${version}"; - version = "3.20.1"; + version = "3.21"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_20_1_RTM/src/${name}.tar.gz"; - sha256 = "ad3c8f11dfd9570c2d04a6140d5ef7c2bdd0fe30d6c9e5548721a4251a5e8c97"; + url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_21_RTM/src/${name}.tar.gz"; + sha256 = "3f7a5b027d7cdd5c0e4ff7544da33fdc6f56c2f8c27fff02938fd4a6fbe87239"; }; buildInputs = [ nspr perl zlib sqlite ]; @@ -23,7 +23,7 @@ in stdenv.mkDerivation rec { ''; patches = - [ ./nss-3.17-gentoo-fixups.patch + [ ./nss-3.21-gentoo-fixups.patch # Based on http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.4-1/85_security_load.patch ./85_security_load.patch ]; @@ -59,6 +59,8 @@ in stdenv.mkDerivation rec { "NSS_USE_SYSTEM_SQLITE=1" ] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1"; + NIX_CFLAGS_COMPILE = "-Wno-error"; + postInstall = '' rm -rf $out/private mv $out/public $out/include diff --git a/pkgs/development/libraries/nss/nss-3.17-gentoo-fixups.patch b/pkgs/development/libraries/nss/nss-3.21-gentoo-fixups.patch similarity index 82% rename from pkgs/development/libraries/nss/nss-3.17-gentoo-fixups.patch rename to pkgs/development/libraries/nss/nss-3.21-gentoo-fixups.patch index 7948fc07150ac81448dd209cc2d12f34aafdf1fd..33819821c19372aa228c811527750e6c8634f9a9 100644 --- a/pkgs/development/libraries/nss/nss-3.17-gentoo-fixups.patch +++ b/pkgs/development/libraries/nss/nss-3.21-gentoo-fixups.patch @@ -1,5 +1,6 @@ ---- nss-3.17.1/nss/config/Makefile -+++ nss-3.17.1/nss/config/Makefile +diff -urN a/nss/config/Makefile b/nss/config/Makefile +--- a/nss/config/Makefile 1969-12-31 18:00:00.000000000 -0600 ++++ b/nss/config/Makefile 2015-11-15 10:42:46.249578304 -0600 @@ -0,0 +1,40 @@ +CORE_DEPTH = .. +DEPTH = .. @@ -41,8 +42,9 @@ + +dummy: all export libs + ---- nss-3.17.1/nss/config/nss-config.in -+++ nss-3.17.1/nss/config/nss-config.in +diff -urN a/nss/config/nss-config.in b/nss/config/nss-config.in +--- a/nss/config/nss-config.in 1969-12-31 18:00:00.000000000 -0600 ++++ b/nss/config/nss-config.in 2015-11-15 10:42:46.250578304 -0600 @@ -0,0 +1,145 @@ +#!/bin/sh + @@ -189,8 +191,9 @@ + echo $libdirs +fi + ---- nss-3.17.1/nss/config/nss.pc.in -+++ nss-3.17.1/nss/config/nss.pc.in +diff -urN a/nss/config/nss.pc.in b/nss/config/nss.pc.in +--- a/nss/config/nss.pc.in 1969-12-31 18:00:00.000000000 -0600 ++++ b/nss/config/nss.pc.in 2015-11-15 10:42:46.251578304 -0600 @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ @@ -201,12 +204,13 @@ +Description: Network Security Services +Version: @NSS_MAJOR_VERSION@.@NSS_MINOR_VERSION@.@NSS_PATCH_VERSION@ +Requires: nspr >= 4.8 -+Libs: -L${libdir} -lssl3 -lsmime3 -lnss3 -lnssutil3 ++Libs: -lssl3 -lsmime3 -lnss3 -lnssutil3 +Cflags: -I${includedir} + ---- nss-3.17.1/nss/Makefile -+++ nss-3.17.1/nss/Makefile -@@ -44,7 +44,7 @@ +diff -urN a/nss/Makefile b/nss/Makefile +--- a/nss/Makefile 2015-11-15 09:25:06.410786060 -0600 ++++ b/nss/Makefile 2015-11-15 10:42:46.252578304 -0600 +@@ -46,7 +46,7 @@ # (7) Execute "local" rules. (OPTIONAL). # ####################################################################### @@ -215,7 +219,7 @@ nss_clean_all: clobber_nspr clobber -@@ -109,12 +109,6 @@ +@@ -115,12 +115,6 @@ --with-dist-prefix='$(NSPR_PREFIX)' \ --with-dist-includedir='$(NSPR_PREFIX)/include' @@ -228,14 +232,12 @@ build_docs: $(MAKE) -C $(CORE_DEPTH)/doc ---- nss-3.17.1/nss/manifest.mn -+++ nss-3.17.1/nss/manifest.mn -@@ -10,7 +10,7 @@ +diff -urN a/nss/manifest.mn b/nss/manifest.mn +--- a/nss/manifest.mn 2015-11-15 09:25:06.411786060 -0600 ++++ b/nss/manifest.mn 2015-11-15 10:43:15.633576994 -0600 +@@ -10,4 +10,4 @@ RELEASE = nss --DIRS = coreconf lib cmd +-DIRS = coreconf lib cmd external_tests +DIRS = coreconf lib cmd config - - ifdef NSS_BUILD_GTESTS - DIRS += external_tests diff --git a/pkgs/development/libraries/openbr/default.nix b/pkgs/development/libraries/openbr/default.nix index 2b4d11919fb4c7fdbe43f2a4f9918ab7808cbd9c..dd40311b80733c55e489309f599965469d335d33 100644 --- a/pkgs/development/libraries/openbr/default.nix +++ b/pkgs/development/libraries/openbr/default.nix @@ -1,14 +1,15 @@ -{ stdenv, fetchgit, cmake, opencv, qtbase, qtsvg }: +{ stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }: stdenv.mkDerivation rec { version = "0.5"; name = "openbr-${version}"; - src = fetchgit { - url = "https://github.com/biometrics/openbr.git"; + src = fetchFromGitHub { + owner = "biometrics"; + repo = "openbr"; rev = "cc364a89a86698cd8d3052f42a3cb520c929b325"; - sha256 = "16b3mmsf9r1yqqaw89fx0c3bgfg86dz4phry89wqy2hw05szgda3"; + sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz"; }; buildInputs = [ opencv qtbase qtsvg ]; diff --git a/pkgs/development/libraries/opendkim/default.nix b/pkgs/development/libraries/opendkim/default.nix index 5dfd87c4d84d12261c4b7efbd00b0dd9af5af9e0..d84f9e755100b99ee5a6dd742d5fe1fe5bf7f1cb 100644 --- a/pkgs/development/libraries/opendkim/default.nix +++ b/pkgs/development/libraries/opendkim/default.nix @@ -1,13 +1,21 @@ -{stdenv, fetchurl, openssl, libmilter}: +{stdenv, fetchurl, openssl, libmilter, libbsd}: stdenv.mkDerivation rec { - name = "opendkim-2.4.3"; + name = "opendkim-2.10.3"; src = fetchurl { url = "mirror://sourceforge/opendkim/files/${name}.tar.gz"; - sha256 = "01h97h012gcp8rimjbc9mrv4759cnw4flb42ddiady1bmb2p7vy3"; + sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823"; }; configureFlags="--with-openssl=${openssl} --with-milter=${libmilter}"; - buildInputs = [openssl libmilter]; + buildInputs = [openssl libmilter libbsd]; + + meta = { + description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service"; + homepage = http://opendkim.org/; + maintainers = [ ]; + platforms = with stdenv.lib.platforms; all; + }; + } 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 9d1e6e7285396381b471e1914846a489f2598e1a..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/old.nix +++ /dev/null @@ -1,42 +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" - "-fPIC" - ]; - - 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 3dddd60b59f82b5dc46542747ea28aa42fa0340d..0000000000000000000000000000000000000000 --- 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 b887134e5b9399e4867ab5d10b369e2db27663a5..0000000000000000000000000000000000000000 --- 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 a3e9e9be642372e30531e8b9c03fa5333a3d5b50..0000000000000000000000000000000000000000 --- 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/qca2/default.nix b/pkgs/development/libraries/qca2/default.nix index 43ef6f78b5767aea1c9041757a32579e5d4a0332..4e6b50502d62f29203a0a7dd5439ce533a73e6b8 100644 --- a/pkgs/development/libraries/qca2/default.nix +++ b/pkgs/development/libraries/qca2/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + patches = [ ./libressl.patch ]; + meta = with stdenv.lib; { description = "Qt Cryptographic Architecture"; license = "LGPL"; diff --git a/pkgs/development/libraries/qca2/libressl.patch b/pkgs/development/libraries/qca2/libressl.patch new file mode 100644 index 0000000000000000000000000000000000000000..c9b0267f85d8548b9b04e457fd1b44d3a5c2681a --- /dev/null +++ b/pkgs/development/libraries/qca2/libressl.patch @@ -0,0 +1,28 @@ +--- a/plugins/qca-ossl/qca-ossl.cpp 2015-12-02 09:34:25.810682094 +0000 ++++ b/plugins/qca-ossl/qca-ossl.cpp 2015-12-02 09:29:51.720392423 +0000 +@@ -5403,11 +5403,13 @@ + ctx = SSL_CTX_new(SSLv2_client_method()); + break; + #endif ++#ifndef OPENSSL_NO_SSL3 + case TLS::SSL_v3: + ctx = SSL_CTX_new(SSLv3_client_method()); + break; ++#endif + case TLS::TLS_v1: ++ ctx = SSL_CTX_new(SSLv23_client_method()); +- ctx = SSL_CTX_new(TLSv1_client_method()); + break; + case TLS::DTLS_v1: + default: +@@ -7133,8 +7135,10 @@ + return new opensslInfoContext(this); + else if ( type == "sha1" ) + return new opensslHashContext( EVP_sha1(), this, type); ++#ifndef OPENSSL_NO_SHA0 + else if ( type == "sha0" ) + return new opensslHashContext( EVP_sha(), this, type); ++#endif + else if ( type == "ripemd160" ) + return new opensslHashContext( EVP_ripemd160(), this, type); + #ifdef HAVE_OPENSSL_MD2 diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix index ccc486692e2412351cb033bdd1ca5318eff12793..39cfd745be5016d1d171aae022deaab8569bf129 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -50,6 +50,7 @@ stdenv.mkDerivation rec { patches = [ ./glib-2.32.patch + ./libressl.patch (substituteAll { src = ./dlopen-absolute-paths.diff; cups = cups.out; diff --git a/pkgs/development/libraries/qt-4.x/4.8/libressl.patch b/pkgs/development/libraries/qt-4.x/4.8/libressl.patch new file mode 100644 index 0000000000000000000000000000000000000000..5432610d9dc97785e5fc701f48ca9c90a6dfc8d4 --- /dev/null +++ b/pkgs/development/libraries/qt-4.x/4.8/libressl.patch @@ -0,0 +1,64 @@ +$OpenBSD: patch-src_network_ssl_qsslsocket_openssl_symbols_cpp,v 1.3 2015/09/17 12:24:42 dcoppa Exp $ +--- a/src/network/ssl/qsslsocket_openssl_symbols.cpp Wed Sep 16 13:27:39 2015 ++++ b/src/network/ssl/qsslsocket_openssl_symbols.cpp Wed Sep 16 13:33:06 2015 +@@ -228,13 +228,17 @@ DEFINEFUNC(int, SSL_shutdown, SSL *a, a, return -1, re + #ifndef OPENSSL_NO_SSL2 + DEFINEFUNC(const SSL_METHOD *, SSLv2_client_method, DUMMYARG, DUMMYARG, return 0, return) + #endif ++#ifndef OPENSSL_NO_SSL3 + DEFINEFUNC(const SSL_METHOD *, SSLv3_client_method, DUMMYARG, DUMMYARG, return 0, return) ++#endif + DEFINEFUNC(const SSL_METHOD *, SSLv23_client_method, DUMMYARG, DUMMYARG, return 0, return) + DEFINEFUNC(const SSL_METHOD *, TLSv1_client_method, DUMMYARG, DUMMYARG, return 0, return) + #ifndef OPENSSL_NO_SSL2 + DEFINEFUNC(const SSL_METHOD *, SSLv2_server_method, DUMMYARG, DUMMYARG, return 0, return) + #endif ++#ifndef OPENSSL_NO_SSL3 + DEFINEFUNC(const SSL_METHOD *, SSLv3_server_method, DUMMYARG, DUMMYARG, return 0, return) ++#endif + DEFINEFUNC(const SSL_METHOD *, SSLv23_server_method, DUMMYARG, DUMMYARG, return 0, return) + DEFINEFUNC(const SSL_METHOD *, TLSv1_server_method, DUMMYARG, DUMMYARG, return 0, return) + #else +@@ -822,13 +826,17 @@ bool q_resolveOpenSslSymbols() + #ifndef OPENSSL_NO_SSL2 + RESOLVEFUNC(SSLv2_client_method) + #endif ++#ifndef OPENSSL_NO_SSL3 + RESOLVEFUNC(SSLv3_client_method) ++#endif + RESOLVEFUNC(SSLv23_client_method) + RESOLVEFUNC(TLSv1_client_method) + #ifndef OPENSSL_NO_SSL2 + RESOLVEFUNC(SSLv2_server_method) + #endif ++#ifndef OPENSSL_NO_SSL3 + RESOLVEFUNC(SSLv3_server_method) ++#endif + RESOLVEFUNC(SSLv23_server_method) + RESOLVEFUNC(TLSv1_server_method) + RESOLVEFUNC(X509_NAME_entry_count) +--- a/src/network/ssl/qsslsocket_openssl.cpp Thu May 7 16:14:44 2015 ++++ b/src/network/ssl/qsslsocket_openssl.cpp Wed Sep 16 13:30:03 2015 +@@ -267,15 +267,19 @@ init_context: + #endif + break; + case QSsl::SslV3: ++#ifndef OPENSSL_NO_SSL3 + ctx = q_SSL_CTX_new(client ? q_SSLv3_client_method() : q_SSLv3_server_method()); ++#else ++ ctx = 0; // SSL 3 not supported by the system, but chosen deliberately -> error ++#endif + break; +- case QSsl::SecureProtocols: // SslV2 will be disabled below +- case QSsl::TlsV1SslV3: // SslV2 will be disabled below + case QSsl::AnyProtocol: +- default: + ctx = q_SSL_CTX_new(client ? q_SSLv23_client_method() : q_SSLv23_server_method()); + break; + case QSsl::TlsV1: ++ case QSsl::SecureProtocols: ++ case QSsl::TlsV1SslV3: ++ default: + ctx = q_SSL_CTX_new(client ? q_TLSv1_client_method() : q_TLSv1_server_method()); + break; + } 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 4abb69da4d8510e9e3ce2cbe1d05b7187538dc21..0000000000000000000000000000000000000000 --- 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 e6b921b771d34e13dd72b3a61291c4850554d9ac..0000000000000000000000000000000000000000 --- 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 d112427bdd639ddfa6a12dac9a6ed6073c5501ee..0000000000000000000000000000000000000000 --- 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 49ade86fae3f09611c9aa545cf36f12e45b21064..0000000000000000000000000000000000000000 --- 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 77eb7bc85af58967d54118ab61675c0882b205da..0000000000000000000000000000000000000000 --- 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 4ec1947f6f95f2f1cffca25791fddb72e8199701..0000000000000000000000000000000000000000 --- 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_inc@/include -+QMAKE_LIBDIR_OPENGL = @mesa_lib@/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 4607274de74c14161fc3131ce38e27ca609b88b8..0000000000000000000000000000000000000000 --- 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 5807e6858723f20054bc8b31cb8e9e9e7d6a2a38..9b1324d11373fda4bf5becd8f749db9c8c10ae76 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,357 +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 -, libudev -, cups -, gnome +{ pkgs # options , developerBuild ? false , decryptSslTraffic ? false }: -with autonix; +let inherit (pkgs) makeSetupHook makeWrapper stdenv; in + with stdenv.lib; let - srcs = - 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; - - version = "5.4.2"; - - callPackage = newScope (self // { inherit qtSubmodule; }); - - qtSubmodule = callPackage ./qt-submodule.nix { - inherit srcs version; - inherit (stdenv) mkDerivation; - }; - - self = - { - - activeqt = callPackage - ( - { qtSubmodule, base }: - qtSubmodule { - name = "qtactiveqt"; - qtInputs = [ base ]; - } - ) - {}; + mirror = "http://download.qt.io"; + srcs = import ./srcs.nix { inherit mirror; inherit (pkgs) fetchurl; }; - /* androidextras = not packaged */ + qtSubmodule = args: + let + inherit (args) name; + inherit (srcs."${args.name}") version src; + inherit (pkgs.stdenv) mkDerivation; + in mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); + + NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; + dontAddPrefix = args.dontAddPrefix or true; + dontFixLibtool = args.dontFixLibtool or true; + configureScript = args.configureScript or "qmake"; + + enableParallelBuilding = args.enableParallelBuilding or true; + + 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 {}); + }); + + addPackages = self: with self; + let + callPackage = self.newScope { inherit qtSubmodule srcs; }; + in { - 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 }: - - qtSubmodule { - name = "qtconnectivity"; - qtInputs = [ base declarative ]; - } - ) - {}; - - 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, substituteAll }: - - qtSubmodule { - name = "qtserialport"; - qtInputs = [ base ]; - patchFlags = "-p2"; # patches originally for monolithic build - patches = [ - (substituteAll { - src = ./0009-dlopen-serialport-udev.patch; - libudev = libudev.out; - }) - ]; - } - ) - {}; - - 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, libudev - , 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; - gtk = gtk.out; - gdk_pixbuf = gdk_pixbuf.out; - } - ) - ++ optional flashplayerFix - (substituteAll - { - src = ./0007-dlopen-webkit-gtk.patch; - gtk = gtk.out; - } - ) - ++ [ - (substituteAll - { - src = ./0008-dlopen-webkit-udev.patch; - libudev = libudev.out; - } - ) - ]; - } - ) - {}; - - 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 ]; - } - ) - {}; + /* 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 {}; + + 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 + ]; + + 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 0000000000000000000000000000000000000000..0fd5bb8d5fee8d7d1ddb93cff94471405f3c2ec6 --- /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 0000000000000000000000000000000000000000..d61665455bf457a48d6eb066e7a0ed740315458a --- /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 83dedb41706cc6a964c406e0bc5e5c1fe1cbf7ab..0000000000000000000000000000000000000000 --- 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 780269a6417aa5d88e24cc17c278b353caee3bf0..0000000000000000000000000000000000000000 --- 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 4012b637e286755ce2b5aa12d4aaf42551bc6d17..0000000000000000000000000000000000000000 --- 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 2b7052e1ca62563cfcbeb14f01302ead35458275..0000000000000000000000000000000000000000 --- a/pkgs/development/libraries/qt-5/5.4/qtbase.nix +++ /dev/null @@ -1,213 +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.out}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11.out}/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.out; - gtk = gtk.out; - libgnomeui = libgnomeui.out; - gnome_vfs = gnome_vfs.out; - }) - ++ [ - (substituteAll { - src = ./0004-dlopen-resolv.patch; - glibc = stdenv.cc.libc.out; - }) - (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; libXcursor = libXcursor.out; }) - (substituteAll { src = ./0011-dlopen-openssl.patch; openssl = openssl.out; }) - (substituteAll { src = ./0012-dlopen-dbus.patch; dbus_libs = dbus.lib; }) - ./0013-xdg_config_dirs.patch - ] ++ optional mesaSupported - (substituteAll { src = ./0014-mkspecs-libgl.patch; mesa_inc = mesa.dev; mesa_lib = mesa.out; }) - ++ (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}/lib -lpq"; - - propagatedBuildInputs = [ - xorg.libXcomposite libX11 libxcb libXext libXrender libXi - fontconfig freetype openssl dbus 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 0000000000000000000000000000000000000000..08d12087f0801a2035a3ebe5abac5cf1499c1bee --- /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 0000000000000000000000000000000000000000..10e7e01a07f2cb4389c5a2eb29b8d83ddce17862 --- /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 0000000000000000000000000000000000000000..36bd3822bf730fd29710680e47ed58a5b60d6114 --- /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 0000000000000000000000000000000000000000..05e98d8be71d8f1bd2f0cec4d3b4d349edf27c9f --- /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 0000000000000000000000000000000000000000..d6e08cd24106cd867b66a4e12d19ffc6ee283770 --- /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 a4211378b9046201be412e08912228a182c47515..c2be7377949794325edeb06ecb96febf817105f2 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 0000000000000000000000000000000000000000..608c68b6d5b464b0efdb98ecf5d63a64479b3c47 --- /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 a79f0f363899e7878550536e1c4d21bcef4c5ae9..b648a58b5701837ec8cbac31c81f32ab96bc851e 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 0000000000000000000000000000000000000000..a79c806462f8a9e6b70d8a3f2e34fba2c6fee4f7 --- /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 0000000000000000000000000000000000000000..10115e8144ad320e29e97525ebab7eca5a3d0270 --- /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 8eaf2f4ffac59f30fbdc01cb4a8c06a0a6ded5c1..824d2ea0817f89b0a6f4d4c3be85448f518ad5b9 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 0000000000000000000000000000000000000000..3cfa50e85b70f2e2ed6c31e1874951769d230765 --- /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 0000000000000000000000000000000000000000..b86b6df28ac895ec5ab0a14e609da0522d060518 --- /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 63066658f0f62ad961a92ce05a0f877df145cfe9..dbf5eac52e6b6cb2c8dc771351163003b7b96713 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 0000000000000000000000000000000000000000..95cd6fea79b404c0cc790006cd9187d93d92fc21 --- /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 0000000000000000000000000000000000000000..8e86f97a94772fc21ffae771bd396819c24d0387 --- /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 0000000000000000000000000000000000000000..9181c37b22583d91a0fdf8720e968b411e23d85e --- /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 0000000000000000000000000000000000000000..578ea6ba0b22685c796c8cfc03385459acbb72c4 --- /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 0000000000000000000000000000000000000000..b860a73ef8900bce563a1b0b41ec34afe1b5c0c3 --- /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 0000000000000000000000000000000000000000..3273f12eb830283bb62778f73389ebf57c5242f3 --- /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 0000000000000000000000000000000000000000..03d0fffbe80e17481d296f99d5cca85685e29261 --- /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 0000000000000000000000000000000000000000..1e134057c4b474b15bf561b82f6eb8ed8eaf1dc6 --- /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 0000000000000000000000000000000000000000..b6b4d8ea0cf4e0aa419eab4645be7584ecec7a1d --- /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 0000000000000000000000000000000000000000..63b141f6ce5a7c32356b894e81af60722f049463 --- /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 0000000000000000000000000000000000000000..d1c7bb389a49ca2b980b22f1899e3f036bd7a5d2 --- /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 0000000000000000000000000000000000000000..93a864621b82433fb25efdbf89fa66e4a3e3bd4b --- /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 0000000000000000000000000000000000000000..887e107b6c1b228c9ec8b38362f1b889ddc3e8ee --- /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 0000000000000000000000000000000000000000..127766e2ebd61204d739aa3d38213f4d6bb48b48 --- /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 0000000000000000000000000000000000000000..61e64dc47e4dc3fc635ff57edde1aff92f31ae67 --- /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 bb304392af4c85024782ac7771a8e881b10fed00..3a813dc800745537efda7e88552629ad875ec157 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 0000000000000000000000000000000000000000..072825dfe9ba391f2f483aad5cc5cf650c9796dc --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix @@ -0,0 +1,13 @@ +{ qtSubmodule, qtbase, substituteAll, libudev }: + +qtSubmodule { + name = "qtserialport"; + qtInputs = [ qtbase ]; + + patches = [ + (substituteAll { + src = ./0001-dlopen-serialport-udev.patch; + libudev = libudev.out; + }) + ]; +} 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 0000000000000000000000000000000000000000..b9ccac7cf933184ac4f0f7e302dfe76375562397 --- /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 0000000000000000000000000000000000000000..65edc45081283d8a41640d294a8910f0e1457f23 --- /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 0000000000000000000000000000000000000000..50fc8cf6826a08c3833fbca7109fbf0fa6b5ad5a --- /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 0000000000000000000000000000000000000000..64f85c42d1984dc6aaf6c94fa355ca4f897e0fa3 --- /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 0752cdcf4793d640d051b555881e420a0e64656e..0eeacce1bc053a4018f918b40d6f167dbb9aee8e 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 9582b714c9036d3179728c598ed0733fea2bdbc0..bb5d1f74364cf092f2277acd99eb5811ae92224f 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 63% 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 fd226708a916cf6d61887077711c1209bf167fd5..1c360cd81aa2dfb83826e8f01ae22ccf02ff8dde 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 0000000000000000000000000000000000000000..2620dcdf2d8a3bf89607d918d1040080b447f7c7 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix @@ -0,0 +1,34 @@ +{ qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors +, fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt +, sqlite, libudev +, 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; + gtk = gtk.out; + gdk_pixbuf = gdk_pixbuf.out; + }; + dlopen-webkit-gtk = substituteAll { + src = ./0002-dlopen-webkit-gtk.patch; + gtk = gtk.out; + }; + dlopen-webkit-udev = substituteAll { + src = ./0003-dlopen-webkit-udev.patch; + udev = libudev.out; + }; + 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 0000000000000000000000000000000000000000..fbdfbbcf0dbedba073fb105638bf839035f0d6d1 --- /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 0000000000000000000000000000000000000000..a765161e2d7ea864c0a4cafd749d1d0ea9162550 --- /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 0000000000000000000000000000000000000000..9a8ddbba2bd24116ac97c36dd01003860b1ad401 --- /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 3bc4890f3bb23ab181a66834990f315639855d18..0000000000000000000000000000000000000000 --- 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 0f8bd78aa32023b9766f34a8191c7af32f6117f3..0000000000000000000000000000000000000000 --- 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 61c9b9846f5a09dbc6115ba2300ffc4a98f50271..0000000000000000000000000000000000000000 --- 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 dcd5855e824e37b0832fc182f8cbcfad09a4c4b4..0000000000000000000000000000000000000000 --- 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 1d7202924cd37016f8f398b15c7ddf805a3a9471..0000000000000000000000000000000000000000 --- 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 3a60abb5f4a05aaa78e2c9b0563d591960128901..0000000000000000000000000000000000000000 --- 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_inc@/include -+QMAKE_LIBDIR_OPENGL = @mesa_lib@/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 0000000000000000000000000000000000000000..08d12087f0801a2035a3ebe5abac5cf1499c1bee --- /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 0000000000000000000000000000000000000000..2cb3f7dfa700e56faa720d25aef182df49a109cb --- /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 1ec89acfcd21d5b15b5d458222dacc56101839d7..8f771f1f621a5c2adad3782fdad1b1a1d325dfae 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,71 +41,63 @@ 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.out}/share/X11/locale \ - --replace /usr/lib/X11/locale ${libX11.out}/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.out; - gtk = gtk.out; + 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 libgnomeui = libgnomeui.out; gnome_vfs = gnome_vfs.out; - }; - dlopen-resolv = substituteAll { - src = ./0002-dlopen-resolv.patch; - glibc = stdenv.cc.libc.out; - }; - 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; - libXcursor = libXcursor.out; - }; - dlopen-openssl = substituteAll { - src = ./0006-dlopen-openssl.patch; - openssl = openssl.out; - }; - dlopen-dbus = substituteAll { - src = ./0007-dlopen-dbus.patch; - dbus_libs = dbus.lib; - }; - xdg-config-dirs = ./0008-xdg-config-dirs.patch; - decrypt-ssl-traffic = ./0009-decrypt-ssl-traffic.patch; - mkspecs-libgl = substituteAll { - src = ./0010-mkspecs-libgl.patch; - mesa_inc = mesa.dev; - mesa_lib = mesa.out; - }; - 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; + + 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" ''; @@ -124,7 +114,7 @@ stdenv.mkDerivation { -release -shared -c++11 - ${optionalString developerBuild "-developer-build"} + ${lib.optionalString developerBuild "-developer-build"} -largefile -accessibility -rpath @@ -145,15 +135,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 @@ -177,14 +167,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}/lib -lpq"; + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql.lib}/lib -lpq"; propagatedBuildInputs = [ xlibs.libXcomposite libX11 libxcb libXext libXrender libXi @@ -194,15 +184,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 ]; @@ -213,12 +203,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; @@ -226,7 +215,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 0000000000000000000000000000000000000000..401cfd5c295ebbb91b28fa83fa71d9d357898329 --- /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 0000000000000000000000000000000000000000..14411a95f3ac2da817b2dc4828c0b62982b139fe --- /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 3f411139f5be7acad35bd42561decac4a0b9d42b..ad1719c46e2986b70b8b8525e64ed99d7b6368da 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 0000000000000000000000000000000000000000..e66ce1676d307e18127f61dfa76c47ead5064438 --- /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 ad48133d93f724a7ed6820c21940e01753c396fa..1cc6fac583b7c0b61ea3d64def2531ca800f12d0 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 0000000000000000000000000000000000000000..a79c806462f8a9e6b70d8a3f2e34fba2c6fee4f7 --- /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/libressl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/libressl.patch new file mode 100644 index 0000000000000000000000000000000000000000..e483ad14e05e3a36560a785d54549bdd0d76e0a0 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/libressl.patch @@ -0,0 +1,36 @@ +From 81494e67eccba04fc3fe554d76a9ca6fe7f2250e Mon Sep 17 00:00:00 2001 +From: hasufell +Date: Sat, 10 Oct 2015 01:15:01 +0200 +Subject: [PATCH] Fix compilation with libressl + +By additionally checking for defined(SSL_CTRL_SET_CURVES), which +is defined in openssl, but not in libressl. +--- + src/network/ssl/qsslcontext_openssl.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/qtbase/src/network/ssl/qsslcontext_openssl.cpp b/qtbase/src/network/ssl/qsslcontext_openssl.cpp +index b88ab54..cfc4f6d 100644 +--- a/qtbase/src/network/ssl/qsslcontext_openssl.cpp ++++ b/qtbase/src/network/ssl/qsslcontext_openssl.cpp +@@ -338,7 +338,7 @@ init_context: + + const QVector qcurves = sslContext->sslConfiguration.ellipticCurves(); + if (!qcurves.isEmpty()) { +-#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) ++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) + // Set the curves to be used + if (q_SSLeay() >= 0x10002000L) { + // SSL_CTX_ctrl wants a non-const pointer as last argument, +@@ -352,7 +352,7 @@ init_context: + return sslContext; + } + } else +-#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) ++#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) + { + // specific curves requested, but not possible to set -> error + sslContext->errorStr = msgErrorSettingEllipticCurves(QSslSocket::tr("OpenSSL version too old, need at least v1.0.2")); +-- +2.6.0 + 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 0000000000000000000000000000000000000000..10115e8144ad320e29e97525ebab7eca5a3d0270 --- /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 0000000000000000000000000000000000000000..470526b1dcdbf8e445a29af673f5d2ce516d4bc5 --- /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 0000000000000000000000000000000000000000..2196d83837527445f521070b9ced4be98f14031c --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/series @@ -0,0 +1,9 @@ +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 +libressl.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 c2564df4e1a18ed92b861b77b7a3509fea843673..92adeda82735475ebca8b6f16e2a6232d265c04d 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 ebb572081bf145ec7231e3372ad8a79755121f2c..24dc3bde148d71f3d298bff6d5d736d4cbcd823a 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 e6973015acaa37f02301ed4c29bc6ee4dc9902fc..11c6ac74d5f63394ee5cf8eb1d027ee358a3f739 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 119fda9eb80ab827cf49e3556495c548c01f85c1..4db9d8b4665fef9d4cef806dcc365d9e81fefeb8 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 822b888843e120f257a96ccf2ae79f57ae917c30..d4819d70bfc82afe8f88dc30d30a336e6da4cdac 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/qxt/default.nix b/pkgs/development/libraries/qxt/default.nix index 98619854c1e9a86ef3c7dee855a689ea6801dcf9..78dbe1366729ef4690fba888e8ac8a387d0a8977 100644 --- a/pkgs/development/libraries/qxt/default.nix +++ b/pkgs/development/libraries/qxt/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "0.6.2"; src = fetchzip { - url = "http://dev.libqxt.org/libqxt/get/v${version}.tar.gz"; + url = "https://bitbucket.org/libqxt/libqxt/get/v${version}.tar.gz"; sha256 = "0zmqfn0h8cpky7wgaaxlfh0l89r9r0isi87587kaicyap7a6kxwz"; }; @@ -27,6 +27,7 @@ stdenv.mkDerivation rec { Development Frameworks, Nokia. ''; license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ forkk ]; }; } diff --git a/pkgs/development/libraries/science/math/arpack/default.nix b/pkgs/development/libraries/science/math/arpack/default.nix index 58326a6fa50373e1b0f3167748978d35a7dd2b90..c9f9bcfa9a752081529cfd8845ed5a9b3aefed4d 100644 --- a/pkgs/development/libraries/science/math/arpack/default.nix +++ b/pkgs/development/libraries/science/math/arpack/default.nix @@ -1,27 +1,30 @@ -{ stdenv, fetchurl, gfortran, openblas }: +{ stdenv, lib, copyPathsToStore, fetchurl, autoconf, automake, gettext, libtool +, gfortran, openblas }: with stdenv.lib; let - version = "3.2.0"; + version = "3.3.0"; in stdenv.mkDerivation { name = "arpack-${version}"; + src = fetchurl { url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz"; - sha256 = "1fwch6vipms1ispzg2djvbzv5wag36f1dmmr3xs3mbp6imfyhvff"; + sha256 = "1cz53wqzcf6czmcpfb3vb61xi0rn5bwhinczl65hpmbrglg82ndd"; }; + nativeBuildInputs = [ autoconf automake gettext libtool ]; buildInputs = [ gfortran openblas ]; - # Auto-detection fails because gfortran brings in BLAS by default - configureFlags = [ - "--with-blas=-lopenblas" - "--with-lapack=-lopenblas" - ]; + BLAS_LIBS = "-L${openblas}/lib -lopenblas"; FFLAGS = optional openblas.blas64 "-fdefault-integer-8"; + preConfigure = '' + ./bootstrap + ''; + meta = { homepage = "http://github.com/opencollab/arpack-ng"; description = '' diff --git a/pkgs/development/libraries/signon/old.nix b/pkgs/development/libraries/signon/old.nix deleted file mode 100644 index bf211c3b8a34d5494dec327fb990052b9179f253..0000000000000000000000000000000000000000 --- 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/svrcore/default.nix b/pkgs/development/libraries/svrcore/default.nix index 637b8b8ab7f536318cbca4d0b0e6fd2f99a98243..a5559e87aadb9a4cfe36d7fda911c739b80d022c 100644 --- a/pkgs/development/libraries/svrcore/default.nix +++ b/pkgs/development/libraries/svrcore/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "4.0.4"; src = fetchurl { - url = "ftp://ftp.mozilla.org/pub/mozilla.org/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; + url = "https://ftp.mozilla.org/pub/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7"; }; diff --git a/pkgs/development/libraries/taglib-extras/default.nix b/pkgs/development/libraries/taglib-extras/default.nix index 05fe67eb9d7b1fb6ef0813250c0576641d2d33d6..882116bd3f1b332575b2f50d337b62834809f5b6 100644 --- a/pkgs/development/libraries/taglib-extras/default.nix +++ b/pkgs/development/libraries/taglib-extras/default.nix @@ -3,9 +3,14 @@ stdenv.mkDerivation rec { name = "taglib-extras-1.0.1"; src = fetchurl { - url = "http://www.kollide.net/~jefferai/${name}.tar.gz"; + url = "http://ftp.rz.uni-wuerzburg.de/pub/unix/kde/taglib-extras/1.0.1/src/${name}.tar.gz"; sha256 = "0cln49ws9svvvals5fzxjxlzqm0fzjfymn7yfp4jfcjz655nnm7y"; }; buildInputs = [ taglib ]; nativeBuildInputs = [ cmake ]; + + # Workaround for upstream bug https://bugs.kde.org/show_bug.cgi?id=357181 + preConfigure = '' + sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake + ''; } diff --git a/pkgs/development/libraries/telepathy/farstream/default.nix b/pkgs/development/libraries/telepathy/farstream/default.nix index a5185689ee0a1ea19fd1e91561a73f539c72d7a3..88eecd0703cc39ddcd25acc9cf4c0aff65755677 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 7ef48d09725a39254266328b5e60489b3cd11f0c..1052e92d38072a1b5fbe6627e852d335997fd38e 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 1c18e84468925a3f861f1f5cc66ff58bade9d24d..0000000000000000000000000000000000000000 --- 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 50d569f30917c526ffd8113563339e6dcfecb00e..0000000000000000000000000000000000000000 --- 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/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index e83ea743263b8440407b1b717b2cd4772f0c30b8..06618fff819a77e87f5276e77eeaec7e0a46f6b0 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchzip, ocaml, findlib, qtest }: -let version = "2.3.1"; in +let version = "2.4.0"; in stdenv.mkDerivation { name = "ocaml-batteries-${version}"; src = fetchzip { url = "https://github.com/ocaml-batteries-team/batteries-included/archive/v${version}.tar.gz"; - sha256 = "1hjbzczchqnnxbn4ck84j5pi6prgfjfjg14kg26fzqz3gql427rl"; + sha256 = "0bxp5d05w1igwh9vcgvhd8sd6swf2ddsjphw0mkakdck9afnimmd"; }; buildInputs = [ ocaml findlib qtest ]; diff --git a/pkgs/development/ocaml-modules/easy-format/default.nix b/pkgs/development/ocaml-modules/easy-format/default.nix index bac558cc50ac68ce84cfa5c448c894d263af3ecb..bbf4d82b51966d9b4f53bfda8fc2c4491837d640 100644 --- a/pkgs/development/ocaml-modules/easy-format/default.nix +++ b/pkgs/development/ocaml-modules/easy-format/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchzip, ocaml, findlib }: let pname = "easy-format"; - version = "1.1.0"; + version = "1.2.0"; in stdenv.mkDerivation { @@ -9,7 +9,7 @@ stdenv.mkDerivation { src = fetchzip { url = "https://github.com/mjambon/${pname}/archive/v${version}.tar.gz"; - sha256 = "084blm13k5lakl5wq3qfxbd0l0bwblvk928v75xcxpaqwv426w5a"; + sha256 = "00ga7mrlycjc99gzp3bgx6iwhf7i6j8856f8xzrf1yas7zwzgzm9"; }; buildInputs = [ ocaml findlib ]; diff --git a/pkgs/development/ocaml-modules/hex/default.nix b/pkgs/development/ocaml-modules/hex/default.nix index 7a060bd795a04a04605f9d4fdd74d5df3b812f2e..a9d30f1a9e7e9494927094994b68604c22fbe916 100644 --- a/pkgs/development/ocaml-modules/hex/default.nix +++ b/pkgs/development/ocaml-modules/hex/default.nix @@ -1,17 +1,20 @@ { stdenv, fetchzip, ocaml, findlib, cstruct }: -let version = "0.2.0"; in +let version = "1.0.0"; in stdenv.mkDerivation { name = "ocaml-hex-${version}"; src = fetchzip { url = "https://github.com/mirage/ocaml-hex/archive/${version}.tar.gz"; - sha256 = "13vmpxwg5vb2qvkdqz37rx1ya19r9cp4dwylx8jj15mn77hpy7xg"; + sha256 = "0g4cq4bsksga15fa5ln083gkglawknbnhi2s4k8yk0yi5xngvwm4"; }; buildInputs = [ ocaml findlib ]; propagatedBuildInputs = [ cstruct ]; + configureFlags = "--enable-tests"; + doCheck = true; + checkTarget = "test"; createFindlibDestdir = true; meta = { diff --git a/pkgs/development/ocaml-modules/iso8601/default.nix b/pkgs/development/ocaml-modules/iso8601/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..4b194332d08641d6f41025f5b1c3d153e6ca6548 --- /dev/null +++ b/pkgs/development/ocaml-modules/iso8601/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchzip, ocaml, findlib }: + +let version = "0.2.4"; in + +stdenv.mkDerivation { + name = "ocaml-iso8601-${version}"; + src = fetchzip { + url = "https://github.com/sagotch/ISO8601.ml/archive/${version}.tar.gz"; + sha256 = "0ypdd1p04xdjxxx3b61wp7abswfrq3vcvwwaxvywxwqljw0dhydi"; + }; + + buildInputs = [ ocaml findlib ]; + createFindlibDestdir = true; + + meta = { + homepage = http://sagotch.github.io/ISO8601.ml/; + description = "ISO 8601 and RFC 3999 date parsing for OCaml"; + license = stdenv.lib.licenses.mit; + platforms = ocaml.meta.platforms; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + }; +} diff --git a/pkgs/development/ocaml-modules/menhir/default.nix b/pkgs/development/ocaml-modules/menhir/default.nix index c8243f326715956ae9b7adf914b8d165ba810b35..3841027b89618050ef97c6993407aa3d0a8f61a4 100644 --- a/pkgs/development/ocaml-modules/menhir/default.nix +++ b/pkgs/development/ocaml-modules/menhir/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ocaml, findlib -, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20151110" else "20140422" +, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20151112" else "20140422" }@args: let sha256 = if version == "20140422" then "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d" - else if version == "20151110" then "12ijr1gd808f79d7k7ji9zg23xr4szayfgvm6njqamh0jnspq70r" + else if version == "20151112" then "0fhfs96gxnj920h5ydsg7c1qypsbrlzqfn2cqzrg9rfj1qq6wq86" else throw ("menhir: unknown version " ++ version); in diff --git a/pkgs/development/ocaml-modules/tuntap/default.nix b/pkgs/development/ocaml-modules/tuntap/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..de520c643fe2a7ec8f120e3abb2e207fbc38d661 --- /dev/null +++ b/pkgs/development/ocaml-modules/tuntap/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchzip, ocaml, findlib, ipaddr }: + +assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"; + +stdenv.mkDerivation { + name = "ocaml-tuntap-1.3.0"; + + src = fetchzip { + url = https://github.com/mirage/ocaml-tuntap/archive/v1.3.0.tar.gz; + sha256 = "1cmd4kky875ks02gm2nb8yr80hmlfcnjdfyc63hvkh49acssy3d5"; + }; + + buildInputs = [ ocaml findlib ]; + propagatedBuildInputs = [ ipaddr ]; + + createFindlibDestdir = true; + + meta = { + description = "Bindings to the UNIX tuntap facility"; + license = stdenv.lib.licenses.isc; + homepage = https://github.com/mirage/ocaml-tuntap; + inherit (ocaml.meta) platforms; + }; + +} diff --git a/pkgs/development/python-modules/buildout-nix/default.nix b/pkgs/development/python-modules/buildout-nix/default.nix index 001aebc10294b6eee922f075faa923b0fea6119f..d12702d98ca0eaed5adbbfc66bb47a2fc052ab5c 100644 --- a/pkgs/development/python-modules/buildout-nix/default.nix +++ b/pkgs/development/python-modules/buildout-nix/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, buildPythonPackage }: buildPythonPackage { - name = "zc.buildout-nix-2.4.3"; + name = "zc.buildout-nix-2.5.0"; src = fetchurl { - url = "https://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-2.4.3.tar.gz"; - sha256 = "db877d791e058a6207ac716e1017296e6862e4f1b5388dd145702eb19d902580"; + url = "https://pypi.python.org/packages/source/z/zc.buildout/zc.buildout-2.5.0.tar.gz"; + sha256 = "721bd2231a9f01f2d5c14f3adccb3385f85b093ee05b18d15d0ff2b9f1f1bd02"; }; patches = [ ./nix.patch ]; diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index bb1d91b3ca83d165fedae33c672da8f6f5858457..c2e5cb1a763e2bd25ceb748b9d64fdd364ffe0af 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 0000000000000000000000000000000000000000..0a7f92d9d2ea69604de858bcca4ae098ba458e6a --- /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 b2460c768f2faf1943a309ec342383985974f269..c0647a6df4a5b9b206ffdfb9613968438bf23214 100644 --- a/pkgs/development/qtcreator/default.nix +++ b/pkgs/development/qtcreator/default.nix @@ -1,10 +1,13 @@ -{ stdenv, fetchurl, makeWrapper, qtLib, withDocumentation ? false }: +{ stdenv, fetchurl, makeWrapper +, qtbase, qtquickcontrols, qtscript, qtdeclarative +, withDocumentation ? false +}: with stdenv.lib; let - baseVersion = "3.4"; - revision = "2"; + baseVersion = "3.5"; + revision = "1"; version = "${baseVersion}.${revision}"; in @@ -13,10 +16,10 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.qt-project.org/official_releases/qtcreator/${baseVersion}/${version}/qt-creator-opensource-src-${version}.tar.gz"; - sha256 = "1asbfphws0aqs92gjgh0iqzr1911kg51r9al44jxpfk88yazjzgm"; + 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/r-modules/default.nix b/pkgs/development/r-modules/default.nix index e393d92b02f3dc79b4bd466e1f8f457166488b52..bceb50ecea0a06ca158a8ab0db8509e04d2e5c15 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -221,53 +221,53 @@ let }; packagesWithNativeBuildInputs = { - abn = [ pkgs.gsl ]; + abn = [ pkgs.gsl_1 ]; adimpro = [ pkgs.imagemagick ]; audio = [ pkgs.portaudio ]; - BayesSAE = [ pkgs.gsl ]; - BayesVarSel = [ pkgs.gsl ]; + BayesSAE = [ pkgs.gsl_1 ]; + BayesVarSel = [ pkgs.gsl_1 ]; BayesXsrc = [ pkgs.readline pkgs.ncurses ]; bigGP = [ pkgs.openmpi ]; BiocCheck = [ pkgs.which ]; Biostrings = [ pkgs.zlib ]; - bnpmr = [ pkgs.gsl ]; - BNSP = [ pkgs.gsl ]; + bnpmr = [ pkgs.gsl_1 ]; + BNSP = [ pkgs.gsl_1 ]; cairoDevice = [ pkgs.gtk2 ]; Cairo = [ pkgs.libtiff pkgs.libjpeg pkgs.cairo ]; Cardinal = [ pkgs.which ]; chebpol = [ pkgs.fftw ]; ChemmineOB = [ pkgs.openbabel pkgs.pkgconfig ]; - cit = [ pkgs.gsl ]; + cit = [ pkgs.gsl_1 ]; curl = [ pkgs.curl ]; devEMF = [ pkgs.xorg.libXft ]; - diversitree = [ pkgs.gsl pkgs.fftw ]; + diversitree = [ pkgs.gsl_1 pkgs.fftw ]; EMCluster = [ pkgs.liblapack ]; fftw = [ pkgs.fftw ]; fftwtools = [ pkgs.fftw ]; Formula = [ pkgs.gmp ]; - geoCount = [ pkgs.gsl ]; + geoCount = [ pkgs.gsl_1 ]; git2r = [ pkgs.zlib pkgs.openssl ]; - GLAD = [ pkgs.gsl ]; + GLAD = [ pkgs.gsl_1 ]; glpkAPI = [ pkgs.gmp pkgs.glpk ]; gmp = [ pkgs.gmp ]; - graphscan = [ pkgs.gsl ]; - gsl = [ pkgs.gsl ]; - HiCseg = [ pkgs.gsl ]; - iBMQ = [ pkgs.gsl ]; + graphscan = [ pkgs.gsl_1 ]; + gsl = [ pkgs.gsl_1 ]; + HiCseg = [ pkgs.gsl_1 ]; + iBMQ = [ pkgs.gsl_1 ]; igraph = [ pkgs.gmp ]; JavaGD = [ pkgs.jdk ]; jpeg = [ pkgs.libjpeg ]; - KFKSDS = [ pkgs.gsl ]; + KFKSDS = [ pkgs.gsl_1 ]; kza = [ pkgs.fftw ]; - libamtrack = [ pkgs.gsl ]; - mixcat = [ pkgs.gsl ]; - mvabund = [ pkgs.gsl ]; + libamtrack = [ pkgs.gsl_1 ]; + mixcat = [ pkgs.gsl_1 ]; + mvabund = [ pkgs.gsl_1 ]; mwaved = [ pkgs.fftw ]; ncdf4 = [ pkgs.netcdf ]; ncdf = [ pkgs.netcdf ]; nloptr = [ pkgs.nlopt ]; openssl = [ pkgs.openssl ]; - outbreaker = [ pkgs.gsl ]; + outbreaker = [ pkgs.gsl_1 ]; pander = [ pkgs.pandoc pkgs.which ]; pbdMPI = [ pkgs.openmpi ]; pbdNCDF4 = [ pkgs.netcdf ]; @@ -278,7 +278,7 @@ let proj4 = [ pkgs.proj ]; qtbase = [ pkgs.qt4 ]; qtpaint = [ pkgs.qt4 ]; - R2GUESS = [ pkgs.gsl ]; + R2GUESS = [ pkgs.gsl_1 ]; R2SWF = [ pkgs.zlib pkgs.libpng pkgs.freetype ]; RAppArmor = [ pkgs.libapparmor ]; rapportools = [ pkgs.which ]; @@ -286,9 +286,9 @@ let rbamtools = [ pkgs.zlib ]; rcdd = [ pkgs.gmp ]; RcppCNPy = [ pkgs.zlib ]; - RcppGSL = [ pkgs.gsl ]; + RcppGSL = [ pkgs.gsl_1 ]; RcppOctave = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.pcre pkgs.octave ]; - RcppZiggurat = [ pkgs.gsl ]; + RcppZiggurat = [ pkgs.gsl_1 ]; rgdal = [ pkgs.proj pkgs.gdal ]; rgeos = [ pkgs.geos ]; rggobi = [ pkgs.ggobi pkgs.gtk2 pkgs.libxml2 ]; @@ -297,11 +297,11 @@ let RGtk2 = [ pkgs.gtk2 ]; Rhpc = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.openmpi pkgs.pcre ]; Rhtslib = [ pkgs.zlib ]; - ridge = [ pkgs.gsl ]; + ridge = [ pkgs.gsl_1 ]; RJaCGH = [ pkgs.zlib ]; rjags = [ pkgs.jags ]; rJava = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.pcre pkgs.jdk pkgs.libzip ]; - Rlibeemd = [ pkgs.gsl ]; + Rlibeemd = [ pkgs.gsl_1 ]; rmatio = [ pkgs.zlib ]; Rmpfr = [ pkgs.gmp pkgs.mpfr ]; Rmpi = [ pkgs.openmpi ]; @@ -326,28 +326,28 @@ let SAVE = [ pkgs.zlib pkgs.bzip2 pkgs.icu pkgs.lzma pkgs.pcre ]; sdcTable = [ pkgs.gmp pkgs.glpk ]; seewave = [ pkgs.fftw pkgs.libsndfile ]; - SemiCompRisks = [ pkgs.gsl ]; + SemiCompRisks = [ pkgs.gsl_1 ]; seqinr = [ pkgs.zlib ]; seqminer = [ pkgs.zlib pkgs.bzip2 ]; showtext = [ pkgs.zlib pkgs.libpng pkgs.icu pkgs.freetype ]; - simplexreg = [ pkgs.gsl ]; + simplexreg = [ pkgs.gsl_1 ]; SOD = [ pkgs.cudatoolkit ]; # requres CL/cl.h spate = [ pkgs.fftw ]; sprint = [ pkgs.openmpi ]; ssanv = [ pkgs.proj ]; - stsm = [ pkgs.gsl ]; + stsm = [ pkgs.gsl_1 ]; stringi = [ pkgs.icu ]; - survSNP = [ pkgs.gsl ]; + survSNP = [ pkgs.gsl_1 ]; sysfonts = [ pkgs.zlib pkgs.libpng pkgs.freetype ]; TAQMNGR = [ pkgs.zlib ]; tiff = [ pkgs.libtiff ]; - TKF = [ pkgs.gsl ]; + TKF = [ pkgs.gsl_1 ]; tkrplot = [ pkgs.xorg.libX11 ]; - topicmodels = [ pkgs.gsl ]; + topicmodels = [ pkgs.gsl_1 ]; udunits2 = [ pkgs.udunits pkgs.expat ]; V8 = [ pkgs.v8 ]; - VBLPCM = [ pkgs.gsl ]; - VBmix = [ pkgs.gsl pkgs.fftw pkgs.qt4 ]; + VBLPCM = [ pkgs.gsl_1 ]; + VBmix = [ pkgs.gsl_1 pkgs.fftw pkgs.qt4 ]; WhopGenome = [ pkgs.zlib ]; XBRL = [ pkgs.zlib pkgs.libxml2 ]; xml2 = [ pkgs.libxml2 ]; diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index c17c453bf55bb3ed1ad3cfce27314a7c8c70696d..a9cf08c4c3e9e2bb2bfa988104f6972bd93842bc 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "6.12.1"; + version = "6.13"; name = "checkstyle-${version}"; src = fetchurl { url = "mirror://sourceforge/checkstyle/${name}-bin.tar.gz"; - sha256 = "1s2qj2kz5q2wrfxk9mnw23ly3abplnly73apy37583d2nvs2hjyq"; + sha256 = "0k53kj0mx0shypagny134yrhkjgawzs5yixaxv87br52ablcqdvx"; }; installPhase = '' 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 57d5cadf98c2a8f2ec9762e784c83d5cd133dcff..75e4dba003bbcf54abc6eee8a6248b666aa832d8 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 ba8f2474f44e5a677cab21e454f9986da15d880b..96bbc2be0b27c0a2383335fc4cbd271a600bb335 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/cargo/default.nix b/pkgs/development/tools/build-managers/cargo/default.nix index bdd6c18e92c777cf7cbcca50eec40797b6cab23e..aa3df6fb1ce51176acc2c58a8b23562fddb93f95 100644 --- a/pkgs/development/tools/build-managers/cargo/default.nix +++ b/pkgs/development/tools/build-managers/cargo/default.nix @@ -5,7 +5,7 @@ with rustPlatform; with ((import ./common.nix) { inherit stdenv rustc; - version = "0.6.0"; + version = "0.7.0"; }); buildRustPackage rec { @@ -15,10 +15,10 @@ buildRustPackage rec { src = fetchgit { url = "git://github.com/rust-lang/cargo"; rev = "refs/tags/${version}"; - sha256 = "1kxri32sz9ygnf4wlbj7hc7q9p6hmm5xrb9zzkx23wzkzbcpyjyz"; + sha256 = "139rv7d6mk31klbnccmn573i05ygjrnflag6c3qwc075i62yfmx6"; }; - depsSha256 = "1m045yywv67sx75idbsny59d3dzbqnhr07k41jial5n5zwp87mb9"; + depsSha256 = "07p244bcw3aa1hfbsz6q89pyl8ypkw9zp1r8cvd131w890w9ab4b"; buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index 8055a918ff3b364cea4164d21b11b8acc2406490..8e517930cfcc852a33614a82954a6083f4bce785 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.10"; src = fetchurl { url = "http://services.gradle.org/distributions/${name}-bin.zip"; - sha256 = "1jq3m6ihvcxyp37mwsg3i8li9hd6rpv8ri8ih2mgvph4y71bk3d8"; + sha256 = "66406247f745fc6f05ab382d3f8d3e120c339f34ef54b86f6dc5f6efc18fbb13"; }; }; diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..c4e256d58737a31d2840c52ea78fc6489b8f9db0 --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -0,0 +1,129 @@ +{ stdenv, fetchurl, fetchHex, erlang, tree, fetchFromGitHub }: + + +let + version = "3.0.0-beta.4"; + registrySnapshot = import ./registrySnapshot.nix { inherit fetchFromGitHub; }; + setupRegistry = '' + mkdir -p _build/default/{lib,plugins,packages}/ ./.cache/rebar3/hex/default/ + zcat ${registrySnapshot}/registry.ets.gz > .cache/rebar3/hex/default/registry + ''; + # TODO: all these below probably should go into nixpkgs.erlangModules.sources.* + # {erlware_commons, "0.16.0"}, + erlware_commons = fetchHex { + pkg = "erlware_commons"; + version = "0.16.0"; + sha256 = "0kh24d0001390wfx28d0xa874vrsfvjgj41g315vg4hac632krxx"; + }; + # {ssl_verify_hostname, "1.0.5"}, + ssl_verify_hostname = fetchHex { + pkg = "ssl_verify_hostname"; + version = "1.0.5"; + sha256 = "1gzavzqzljywx4l59gvhkjbr1dip4kxzjjz1s4wsn42f2kk13jzj"; + }; + # {certifi, "0.1.1"}, + certifi = fetchHex { + pkg = "certifi"; + version = "0.1.1"; + sha256 = "0afylwqg74gprbg116asz0my2nipmki0512c8mdiq6xdiyjdvlg6"; + }; + # {providers, "1.5.0"}, + providers = fetchHex { + pkg = "providers"; + version = "1.5.0"; + sha256 = "1hc8sp2l1mmx9dfpmh1f8j9hayfg7541rmx05wb9cmvxvih7zyvf"; + }; + # {getopt, "0.8.2"}, + getopt = fetchHex { + pkg = "getopt"; + version = "0.8.2"; + sha256 = "1xw30h59zbw957cyjd8n50hf9y09jnv9dyry6x3avfwzcyrnsvkk"; + }; + # {bbmustache, "1.0.4"}, + bbmustache = fetchHex { + pkg = "bbmustache"; + version = "1.0.4"; + sha256 = "04lvwm7f78x8bys0js33higswjkyimbygp4n72cxz1kfnryx9c03"; + }; + # {relx, "3.8.0"}, + relx = fetchHex { + pkg = "relx"; + version = "3.8.0"; + sha256 = "0y89iirjz3kc1rzkdvc6p3ssmwcm2hqgkklhgm4pkbc14fcz57hq"; + }; + # {cf, "0.2.1"}, + cf = fetchHex { + pkg = "cf"; + version = "0.2.1"; + sha256 = "19d0yvg8wwa57cqhn3vqfvw978nafw8j2rvb92s3ryidxjkrmvms"; + }; + # {cth_readable, "1.1.0"}, + cth_readable = fetchHex { + pkg = "cth_readable"; + version = "1.0.1"; + sha256 = "1cnc4fbypckqllfi5h73rdb24dz576k3177gzvp1kbymwkp1xcz1"; + }; + # {eunit_formatters, "0.2.0"} + eunit_formatters = fetchHex { + pkg = "eunit_formatters"; + version = "0.2.0"; + sha256 = "03kiszlbgzscfd2ns7na6bzbfzmcqdb5cx3p6qy3657jk2fai332"; + }; + +in +stdenv.mkDerivation { + name = "rebar3-${version}"; + + src = fetchurl { + url = "https://github.com/rebar/rebar3/archive/${version}.tar.gz"; + sha256 = "0px66scjdia9aaa5z36qzxb848r56m0k98g0bxw065a2narsh4xy"; + }; + + patches = [ ./hermetic-bootstrap.patch ]; + + buildInputs = [ erlang + tree + ]; + inherit setupRegistry; + + postPatch = '' + echo postPatch + ${setupRegistry} + mkdir -p _build/default/lib/ + cp --no-preserve=mode -R ${erlware_commons} _build/default/lib/erlware_commons + cp --no-preserve=mode -R ${providers} _build/default/lib/providers + cp --no-preserve=mode -R ${getopt} _build/default/lib/getopt + cp --no-preserve=mode -R ${bbmustache} _build/default/lib/bbmustache + cp --no-preserve=mode -R ${certifi} _build/default/lib/certifi + cp --no-preserve=mode -R ${cf} _build/default/lib/cf + cp --no-preserve=mode -R ${cth_readable} _build/default/lib/cth_readable + cp --no-preserve=mode -R ${eunit_formatters} _build/default/lib/eunit_formatters + cp --no-preserve=mode -R ${relx} _build/default/lib/relx + cp --no-preserve=mode -R ${ssl_verify_hostname} _build/default/lib/ssl_verify_hostname + ''; + + buildPhase = '' + HOME=. escript bootstrap + ''; + installPhase = '' + mkdir -p $out/bin + cp rebar3 $out/bin/rebar3 + ''; + + meta = { + homepage = "https://github.com/rebar/rebar3"; + description = "rebar 3.0 is an Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases."; + + longDescription = '' + rebar is a self-contained Erlang script, so it's easy to distribute or + even embed directly in a project. Where possible, rebar uses standard + Erlang/OTP conventions for project structures, thus minimizing the amount + of build configuration work. rebar also provides dependency management, + enabling application writers to easily re-use common libraries from a + variety of locations (hex.pm, git, hg, and so on). + ''; + + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.gleber ]; + }; +} diff --git a/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix b/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix new file mode 100644 index 0000000000000000000000000000000000000000..1b1378c10cbd2a4f20d709743ea59be9f44f462d --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/fetch-hex.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl }: + +{ pkg, version, sha256 +, meta ? {} +}: + +with stdenv.lib; + +stdenv.mkDerivation ({ + name = "hex-source-${pkg}-${version}"; + + src = fetchurl { + url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${pkg}-${version}.tar"; + inherit sha256; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + unpackCmd = '' + tar -xf $curSrc contents.tar.gz + mkdir contents + tar -C contents -xzf contents.tar.gz + ''; + + installPhase = '' + runHook preInstall + mkdir "$out" + cp -Hrt "$out" . + success=1 + runHook postInstall + ''; + + inherit meta; +}) diff --git a/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch b/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch new file mode 100644 index 0000000000000000000000000000000000000000..13d60fdcc915592a282d2f88d1ef8f5e5b4d3138 --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/hermetic-bootstrap.patch @@ -0,0 +1,78 @@ +diff --git a/bootstrap b/bootstrap +index 25bd658..b2a986b 100755 +--- a/bootstrap ++++ b/bootstrap +@@ -8,9 +8,6 @@ main(_Args) -> + application:start(asn1), + application:start(public_key), + application:start(ssl), +- inets:start(), +- inets:start(httpc, [{profile, rebar}]), +- set_httpc_options(), + + %% Fetch and build deps required to build rebar3 + BaseDeps = [{providers, []} +@@ -33,7 +30,6 @@ main(_Args) -> + + setup_env(), + os:putenv("REBAR_PROFILE", "bootstrap"), +- rebar3:run(["update"]), + {ok, State} = rebar3:run(["compile"]), + reset_env(), + os:putenv("REBAR_PROFILE", ""), +@@ -71,33 +67,7 @@ fetch_and_compile({Name, ErlFirstFiles}, Deps) -> + compile(Name, ErlFirstFiles). + + fetch({pkg, Name, Vsn}, App) -> +- Dir = filename:join([filename:absname("_build/default/lib/"), App]), +- CDN = "https://s3.amazonaws.com/s3.hex.pm/tarballs", +- Package = binary_to_list(<>), +- Url = string:join([CDN, Package], "/"), +- case request(Url) of +- {ok, Binary} -> +- {ok, Contents} = extract(Binary), +- ok = erl_tar:extract({binary, Contents}, [{cwd, Dir}, compressed]); +- _ -> +- io:format("Error: Unable to fetch package ~p ~p~n", [Name, Vsn]) +- end. +- +-extract(Binary) -> +- {ok, Files} = erl_tar:extract({binary, Binary}, [memory]), +- {"contents.tar.gz", Contents} = lists:keyfind("contents.tar.gz", 1, Files), +- {ok, Contents}. +- +-request(Url) -> +- case httpc:request(get, {Url, []}, +- [{relaxed, true}], +- [{body_format, binary}], +- rebar) of +- {ok, {{_Version, 200, _Reason}, _Headers, Body}} -> +- {ok, Body}; +- Error -> +- Error +- end. ++ ok. + + get_rebar_config() -> + {ok, [[Home]]} = init:get_argument(home), +@@ -109,20 +79,6 @@ get_rebar_config() -> + [] + end. + +-get_http_vars(Scheme) -> +- proplists:get_value(Scheme, get_rebar_config(), []). +- +-set_httpc_options() -> +- set_httpc_options(https_proxy, get_http_vars(https_proxy)), +- set_httpc_options(proxy, get_http_vars(http_proxy)). +- +-set_httpc_options(_, []) -> +- ok; +- +-set_httpc_options(Scheme, Proxy) -> +- {ok, {_, _, Host, Port, _, _}} = http_uri:parse(Proxy), +- httpc:set_options([{Scheme, {{Host, Port}, []}}], rebar). +- + compile(App, FirstFiles) -> + Dir = filename:join(filename:absname("_build/default/lib/"), App), + filelib:ensure_dir(filename:join([Dir, "ebin", "dummy.beam"])), diff --git a/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix b/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix new file mode 100644 index 0000000000000000000000000000000000000000..8e9c2a292fd3fb15b5f9547e0832447e34a2cb2c --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/registrySnapshot.nix @@ -0,0 +1,8 @@ +{ fetchFromGitHub }: + +fetchFromGitHub { + owner = "gleber"; + repo = "hex-pm-registry-snapshots"; + rev = "329ae2b"; + sha256 = "1rs3z8psfvy10mzlfvkdzbflgikcnq08r38kfi0f8p5wvi8f8hmh"; +} diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index edc551a70541024fe17556b17c94a20ade230ffc..e18d2dd4b4751445e5411c6a316a586834d1dd7d 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "1.638"; + version = "1.643"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "1kbx9n2hj8znw0ykvgvrlf2v472f1nkdwix6a2v4rjxkgmghxmh8"; + sha256 = "b8c6387e56d04a0a4a7ec8d9dacd379fbd5d4001d01fdfcd443f9864809f9293"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; diff --git a/pkgs/development/tools/devpi-client/default.nix b/pkgs/development/tools/devpi-client/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..5db62da06d852a2f977f565988a9c38657f3f87d --- /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 89a56f1dbadaa4e2970dec0f7d4b373b5b92a126..68c85fb29515960e441296748794f63b3f9c53b2 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 6c2243628daa2edcd938972c466a8883e28f1379..7aac407e3ceb6e67bdc94e0375b6c8c947a1b5a9 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 422ab0fb18f12f0ed665accca0daaf879f49a992..b2b3b46581aa3a3af9271fa6f0df0e0bc7c8b67b 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/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index fb6d03c6e85a604ed075d61d97cd3d661af0a81b..ed87428f98dfabef73ae7401eb3bcdf62e64c994 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -49,6 +49,9 @@ stdenv.mkDerivation { ln -s ${gcc.cc}/bin/$executable $out/bin/$executable fi done + for file in $(ls ${gcc.cc} | grep -vw bin); do + ln -s ${gcc.cc}/$file $out/$file + done ''); }; diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix index 0f2bc98b01732e787c92ef448d7de4b2d2493f6e..547f7a81ab6cbf2186c276b4ca6dbad54ae8b88b 100644 --- a/pkgs/development/tools/misc/gdb/default.nix +++ b/pkgs/development/tools/misc/gdb/default.nix @@ -10,7 +10,7 @@ let - basename = "gdb-7.10"; + basename = "gdb-7.10.1"; # Whether (cross-)building for GNU/Hurd. This is an approximation since # having `stdenv ? cross' doesn't tell us if we're building `crossDrv' and @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnu/gdb/${basename}.tar.xz"; - sha256 = "1a08c9svaihqmz2mm44il1gwa810gmwkckns8b0y0v3qz52amgby"; + sha256 = "1mfnjcwnwm5cg4rc9pncs9v356a0bz6ymjyac56mbj6784yjzir5"; }; nativeBuildInputs = [ pkgconfig texinfo perl ] diff --git a/pkgs/development/tools/misc/intel-gpu-tools/default.nix b/pkgs/development/tools/misc/intel-gpu-tools/default.nix index caed095d151d6db15e06ad04ba2ee760337d97c3..28deca284cedd04e4a092d7305e43bf1017da8f0 100644 --- a/pkgs/development/tools/misc/intel-gpu-tools/default.nix +++ b/pkgs/development/tools/misc/intel-gpu-tools/default.nix @@ -2,11 +2,11 @@ , libX11, libXext, libXv, libXrandr, glib, bison, libunwind }: stdenv.mkDerivation rec { - name = "intel-gpu-tools-1.12"; + name = "intel-gpu-tools-1.13"; src = fetchurl { url = "http://xorg.freedesktop.org/archive/individual/app/${name}.tar.bz2"; - sha256 = "1qwbwgvsqxba0adzlwxqmdw1asykx0pmk9ra0ff0nmjj9apf0gql"; + sha256 = "0d5ff9l12zw9mdsjwbwn6y9k1gz6xlzsx5k87apz9vq6q625irn6"; }; buildInputs = [ pkgconfig libdrm libpciaccess cairo dri2proto udev libX11 diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index 461e3c25a36ac4a18d22ffdd2aca8adfbd086c86..0232342bf843319d7ef91001815dffa6a6255f7a 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, perl, libunwind }: stdenv.mkDerivation rec { - name = "strace-4.10"; + name = "strace-4.11"; src = fetchurl { url = "mirror://sourceforge/strace/${name}.tar.xz"; - sha256 = "1qhfwijxvblwdvvm70f8bhzs4fpbzqmwwbkfp636brzrds30s676"; + sha256 = "0ll1rpjs441jac2689nga74qb49x1zkg8a2b7rzzchgrv1n5ysp8"; }; nativeBuildInputs = [ perl ]; @@ -17,6 +17,6 @@ stdenv.mkDerivation rec { description = "A system call tracer for Linux"; license = licenses.bsd3; platforms = platforms.linux; - maintainers = with maintainers; [ mornfall jgeerds ]; + maintainers = with maintainers; [ mornfall jgeerds globin ]; }; } diff --git a/pkgs/development/tools/misc/texinfo/5.2.nix b/pkgs/development/tools/misc/texinfo/5.2.nix index a9edccbd200dd633d1090cd79b14fb3edb8e80c9..d01a2f9cdd066dbd61b726bf20d593e79495b9ad 100644 --- a/pkgs/development/tools/misc/texinfo/5.2.nix +++ b/pkgs/development/tools/misc/texinfo/5.2.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, xz, ncurses, perl, interactive ? false }: +{ stdenv, fetchurl, ncurses, perl, xz, procps, interactive ? false }: + +with stdenv.lib; stdenv.mkDerivation rec { name = "texinfo-5.2"; @@ -9,7 +11,8 @@ stdenv.mkDerivation rec { }; buildInputs = [ perl xz.bin ] - ++ stdenv.lib.optional interactive ncurses; + ++ optional interactive ncurses + ++ optional doCheck procps; # for tests preInstall = '' installFlags="TEXMF=$out/texmf-dist"; @@ -21,8 +24,8 @@ stdenv.mkDerivation rec { meta = { homepage = "http://www.gnu.org/software/texinfo/"; description = "The GNU documentation system"; - license = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; longDescription = '' Texinfo is the official documentation format of the GNU project. diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix index 11e822291e8d2d6393c85622de0f2f2722a65c06..507ca22cd1ae2873d62b8c7d0ffd54666ae0d3a8 100644 --- a/pkgs/development/tools/misc/texinfo/6.0.nix +++ b/pkgs/development/tools/misc/texinfo/6.0.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchurl, ncurses, perl, xz, libiconv, gawk, interactive ? false }: +{ stdenv, fetchurl, ncurses, perl, xz, libiconv, gawk, procps, interactive ? false }: + +with stdenv.lib; stdenv.mkDerivation rec { name = "texinfo-6.0"; @@ -9,23 +11,25 @@ stdenv.mkDerivation rec { }; buildInputs = [ perl xz ] - ++ stdenv.lib.optionals stdenv.isSunOS [ libiconv gawk ] - ++ stdenv.lib.optional interactive ncurses; + ++ optionals stdenv.isSunOS [ libiconv gawk ] + ++ optional interactive ncurses + ++ optional doCheck procps; # for tests - configureFlags = stdenv.lib.optionalString stdenv.isSunOS "AWK=${gawk}/bin/awk"; + configureFlags = stdenv.lib.optional stdenv.isSunOS "AWK=${gawk}/bin/awk"; preInstall = '' installFlags="TEXMF=$out/texmf-dist"; installTargets="install install-tex"; ''; - doCheck = !stdenv.isDarwin && !interactive && !stdenv.isSunOS/*flaky*/; + 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 = stdenv.lib.licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + platforms = platforms.all; longDescription = '' Texinfo is the official documentation format of the GNU project. @@ -42,6 +46,5 @@ stdenv.mkDerivation rec { need revise only that one document. The Texinfo system is well-integrated with GNU Emacs. ''; - branch = "5.2"; }; } diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 49a87754e72e029defe83f05de1b2a2559364508..f67b1f00a0f83b4e46e8202a978d4241890c12fd 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -3,15 +3,15 @@ with rustPlatform; buildRustPackage rec { - name = "rustfmt-git-2015-12-08"; + name = "rustfmt-git-2015-12-23"; src = fetchFromGitHub { - owner = "nrc"; + owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "e94bd34a06d878a41bb8be409f173a8824dda63f"; - sha256 = "0f0ixbr5nfla0j0b91plmapw75yl3d3lxwvllj2wx4z94nfxanp6"; + rev = "c0b7de7c521dc65b2ad2b5a3c81fb56030f4af22"; + sha256 = "1axnp8w26c3dwlx7bby3qi6385n301rlk1ndh5yaz7vkbpn4w9km"; }; - depsSha256 = "0vsrpw4icn9jf44sqr5749hbazsxp3hqn1g7gr90fvnfvz4s5f07"; + depsSha256 = "1s2as7qc7jbksc16gj5cxxm52zw8h4nfgka66dmwwjlv9679wj9f"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines"; diff --git a/pkgs/development/tools/sassc/default.nix b/pkgs/development/tools/sassc/default.nix index 256bd93f1ab3f4e43ae7f5c8b02273205ebaede3..1e990b0e2e9041d5a52178ff8eef4f1263b2ea2b 100644 --- a/pkgs/development/tools/sassc/default.nix +++ b/pkgs/development/tools/sassc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "sassc-${version}"; - version = "3.2.4"; + version = "3.3.2"; src = fetchurl { url = "https://github.com/sass/sassc/archive/${version}.tar.gz"; - sha256 = "0ksdfv9ff5smba4vbwr1wqf3bp908rnprkp6lfssj85h9ciqq896"; + sha256 = "15a2b2698639dfdc7bd6a5ba7a9ecdaf8ebb9f15503fb04dea1be3133308e41d"; }; patchPhase = '' diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 7d98028762949bbf4f71478168775206b0b6a538..3ea072f7282165b0ab08f2d0adb065669edf66fa 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, dpkg, curl, libarchive, openssl, ruby, buildRubyGem, libiconv -, libxml2, libxslt }: +, libxml2, libxslt, makeWrapper }: 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; { @@ -35,6 +35,8 @@ stdenv.mkDerivation rec { platforms = platforms.linux; }; + buildInputs = [ makeWrapper ]; + unpackPhase = '' ${dpkg}/bin/dpkg-deb -x ${src} . ''; @@ -46,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}/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} @@ -60,8 +63,8 @@ stdenv.mkDerivation rec { ln -s ${openssl.bin}/bin/c_rehash opt/vagrant/embedded/bin ln -s ${openssl.bin}/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 @@ -69,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 @@ -89,16 +91,17 @@ stdenv.mkDerivation rec { mkdir -p "$out" cp -r opt "$out" cp -r usr/bin "$out" + wrapProgram $out/bin/vagrant --prefix LD_LIBRARY_PATH : $out/opt/vagrant/embedded/lib ''; 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 735d260560d4cafc10afa5113945aac5b92adb9c..ca18ca194da1853c67b16fa47c8d18b94e7981aa 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -1,5 +1,5 @@ -{ stdenv, lib, fetchurl, lame, mplayer, libpulseaudio, portaudio -, python, pyqt4, pythonPackages +{ stdenv, lib, fetchurl, substituteAll, lame, mplayer +, libpulseaudio, python, pyqt4, qt4, pythonPackages # This little flag adds a huge number of dependencies, but we assume that # everyone wants Anki to draw plots with statistics by default. , plotsSupport ? true }: @@ -18,33 +18,59 @@ stdenv.mkDerivation rec { sha256 = "1d5rf5gcw98m38wam6wh3hyh7qd78ws7zipm67xg744flqsjrzmr"; }; - pythonPath = [ pyqt4 py.pysqlite py.sqlalchemy9 py.pyaudio ] + pythonPath = [ pyqt4 py.pysqlite py.sqlalchemy9 py.pyaudio py.beautifulsoup py.httplib2 ] ++ lib.optional plotsSupport py.matplotlib; buildInputs = [ python py.wrapPython lame mplayer libpulseaudio ]; - preConfigure = '' - substituteInPlace anki/anki \ - --replace /usr/share/ $out/share/ + phases = [ "unpackPhase" "patchPhase" "installPhase" ]; - substituteInPlace Makefile \ - --replace PREFIX=/usr PREFIX=$out \ - --replace /local/bin/ /bin/ + patches = [ + (substituteAll { + src = ./fix-paths.patch; + inherit lame mplayer qt4; + qt4name = qt4.name; + }) + ]; - sed -i '/xdg-mime/ d' Makefile + postPatch = '' + substituteInPlace oldanki/lang.py --subst-var-by anki $out + substituteInPlace anki/lang.py --subst-var-by anki $out + + # Remove unused starter. We'll create our own, minimalistic, + # starter. + rm anki/anki + + # Remove QT translation files. We'll use the standard QT ones. + rm "locale/"*.qm ''; - preInstall = '' + installPhase = '' + pp=$out/lib/${python.libPrefix}/site-packages + mkdir -p $out/bin - mkdir -p $out/share/pixmaps mkdir -p $out/share/applications + mkdir -p $out/share/doc/anki mkdir -p $out/share/man/man1 - ''; + mkdir -p $out/share/mime/packages + mkdir -p $out/share/pixmaps + mkdir -p $pp + + cat > $out/bin/anki <> $out/bin/sauerbraten_server - echo 'cd "'"$out"'/share/sauerbraten/build-dir"' >> $out/bin/sauerbraten_server - echo './bin_unix/native_server "$@"' >> $out/bin/sauerbraten_server - echo '#! /bin/sh' >> $out/bin/sauerbraten_client - echo 'cd "'"$out"'/share/sauerbraten/build-dir"' >> $out/bin/sauerbraten_client - echo './bin_unix/native_client "$@"' >> $out/bin/sauerbraten_client + installPhase = '' + popd + mkdir -p $out/bin $out/share/sauerbraten $out/share/doc/sauerbraten + cp -rv "docs/"* $out/share/doc/sauerbraten/ + cp -v src/sauer_client src/sauer_server $out/share/sauerbraten/ + cp -rv packages $out/share/sauerbraten/ + cp -rv data $out/share/sauerbraten/ + cat > $out/bin/sauerbraten_server < $out/bin/sauerbraten_client <> "$out/bin/tbe" - echo "$out/share/tbe/build-dir/tbe \"\$@\"" >> "$out/bin/tbe" - chmod a+x "$out/bin/tbe" - '' ["minInit" "doMake" "defEnsureDir"]; - - meta = { + meta = with stdenv.lib; { description = "A physics-based game vaguely similar to Incredible Machine"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; - license = a.stdenv.lib.licenses.gpl2; - }; - passthru = { - inherit srcDrv; - updateInfo = { - downloadPage = "http://sourceforge.net/projects/tbe/files/"; - }; + homepage = http://the-butterfly-effect.org/; + maintainers = [ maintainers.raskin ]; + platforms = platforms.linux; + license = licenses.gpl2; }; -}) x +} diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix index 7b7b0808aa9982c52b966694d5150baaa1748983..8ad0f7723c0fc405ca703710b98c4e81b419e000 100644 --- a/pkgs/games/tome4/default.nix +++ b/pkgs/games/tome4/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, openal, libvorbis, mesa_glu, premake4, SDL2, SDL2_image, SDL2_ttf}: stdenv.mkDerivation rec { - version = "1.3.1"; + version = "1.3.3"; name = "tome4-${version}"; src = fetchurl { - url = "http://te4.org/dl/t-engine/t-engine4-src-1.3.1.tar.bz2"; - sha256 = "9b6658e29ad3be9f8469a61e724350f4dfec676777e471f633d616443dfbc7e7"; + url = "http://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2"; + sha256 = "d4c6d6aa0cb73b28172cebf89e4271b0a51c6e7dea744ce9c6d6042dd076e9cd"; }; buildInputs = [ mesa_glu openal libvorbis SDL2 SDL2_ttf SDL2_image premake4 ]; preConfigure = '' diff --git a/pkgs/games/zandronum/bin.nix b/pkgs/games/zandronum/bin.nix index 453f7dc1c1db799c3a2df31cd4d9e05a1d4f06e6..cf46877ef7135b0f3a99f2b766463a6aa5f2c211 100644 --- a/pkgs/games/zandronum/bin.nix +++ b/pkgs/games/zandronum/bin.nix @@ -18,10 +18,9 @@ , zlib }: -assert stdenv.system == "x86_64-linux"; - stdenv.mkDerivation rec { name = "zandronum-2.1.2"; + src = fetchurl { url = "http://zandronum.com/downloads/zandronum2.1.2-linux-x86_64.tar.bz2"; sha256 = "1f5aw2m8c0bl3lrvi2k3rrzq3q9x1ikxnxxjgh3k9qvanfn7ykbk"; @@ -49,38 +48,30 @@ stdenv.mkDerivation rec { phases = [ "unpackPhase" "installPhase" ]; - unpackPhase = '' - tar xf $src - ''; + sourceRoot = "."; installPhase = '' mkdir -p $out/bin - mkdir -p $out/share - cp * $out/share - - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $out/share/zandronum - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $out/share/zandronum-server + mkdir -p $out/share/zandronum + cp *.so *.pk3 zandronum zandronum-server $out/share/zandronum - cat > $out/bin/zandronum << EOF - #!/bin/sh + patchelf \ + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ + --set-rpath $libPath:$out/share/zandronum \ + $out/share/zandronum/zandronum + patchelf \ + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ + --set-rpath $libPath \ + $out/share/zandronum/zandronum-server - LD_LIBRARY_PATH=$libPath:$out/share $out/share/zandronum "\$@" - EOF - - cat > $out/bin/zandronum-server << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$libPath:$out/share $out/share/zandronum-server "\$@" - EOF - - chmod +x "$out/bin/zandronum" - chmod +x "$out/bin/zandronum-server" + ln -s $out/share/zandronum/zandronum $out/bin/zandronum + ln -s $out/share/zandronum/zandronum-server $out/bin/zandronum-server ''; meta = { homepage = http://zandronum.com/; description = "multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software. Binary version for online play."; maintainer = [ stdenv.lib.maintainers.lassulus ]; + platforms = [ "x86_64-linux" ]; }; } - diff --git a/pkgs/games/zandronum/default.nix b/pkgs/games/zandronum/default.nix index b92551a78bfd318d428b6ef97d727ae59a3b03ac..ecdf8cfdbd22717a45a05188af0d26e722801c53 100644 --- a/pkgs/games/zandronum/default.nix +++ b/pkgs/games/zandronum/default.nix @@ -1,43 +1,61 @@ -{ stdenv, fetchhg, cmake, SDL, mesa, fmod42416, openssl, sqlite, sqlite-amalgamation }: +{ stdenv, lib, fetchhg, cmake, pkgconfig, makeWrapper +, SDL, mesa, bzip2, zlib, fmod, libjpeg, fluidsynth, openssl, sqlite-amalgamation +, serverOnly ? false +}: + +let suffix = lib.optionalString serverOnly "-server"; + +# FIXME: drop binary package when upstream fixes their protocol versioning +in stdenv.mkDerivation { + name = "zandronum${suffix}-2.1.2"; -stdenv.mkDerivation { - name = "zandronum-2.1.2"; src = fetchhg { url = "https://bitbucket.org/Torr_Samaho/zandronum-stable"; rev = "a3663b0061d5"; sha256 = "0qwsnbwhcldwrirfk6hpiklmcj3a7dzh6pn36nizci6pcza07p56"; }; - phases = [ "unpackPhase" "configurePhase" "buildPhase" "installPhase" ]; + # I have no idea why would SDL and libjpeg be needed for the server part! + # But they are. + buildInputs = [ openssl bzip2 zlib SDL libjpeg ] + ++ lib.optionals (!serverOnly) [ mesa fmod fluidsynth ]; - buildInputs = [ cmake SDL mesa fmod42416 openssl sqlite sqlite-amalgamation ]; + nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; preConfigure = '' - cp ${sqlite-amalgamation}/* sqlite/ + ln -s ${sqlite-amalgamation}/* sqlite/ ''; - cmakeFlags = [ - "-DFMOD_LIBRARY=${fmod42416}/lib/libfmodex.so" - ]; + cmakeFlags = + lib.optional (!serverOnly) "-DFMOD_LIBRARY=${fmod}/lib/libfmodex.so" + ++ lib.optional serverOnly "-DSERVERONLY=ON" + ; + + enableParallelBuilding = true; installPhase = '' mkdir -p $out/bin - mkdir -p $out/share - cp zandronum zandronum.pk3 skulltag_actors.pk3 liboutput_sdl.so $out/share - - cat > $out/bin/zandronum << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$out/share $out/share/zandronum "\$@" - EOF + mkdir -p $out/share/zandronum + cp zandronum${suffix} \ + zandronum.pk3 \ + skulltag_actors.pk3 \ + ${lib.optionalString (!serverOnly) "liboutput_sdl.so"} \ + $out/share/zandronum + + # For some reason, while symlinks work for binary version, they don't for source one. + makeWrapper $out/share/zandronum/zandronum${suffix} $out/bin/zandronum${suffix} + ''; - chmod +x "$out/bin/zandronum" + postFixup = lib.optionalString (!serverOnly) '' + patchelf --set-rpath $(patchelf --print-rpath $out/share/zandronum/zandronum):$out/share/zandronum \ + $out/share/zandronum/zandronum ''; - meta = { + meta = with stdenv.lib; { homepage = http://zandronum.com/; description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software."; - maintainer = [ stdenv.lib.maintainers.lassulus ]; + maintainer = with maintainers; [ lassulus ]; + platforms = platforms.linux; + license = licenses.bsdOriginal; }; } - diff --git a/pkgs/games/zandronum/server.nix b/pkgs/games/zandronum/server.nix deleted file mode 100644 index eec2c3acc9c1a4de43f17c784053c7855298856b..0000000000000000000000000000000000000000 --- a/pkgs/games/zandronum/server.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ stdenv, fetchhg, cmake, openssl, sqlite, sqlite-amalgamation, SDL }: - -stdenv.mkDerivation { - name = "zandronum-server-2.1.2"; - src = fetchhg { - url = "https://bitbucket.org/Torr_Samaho/zandronum-stable"; - rev = "a3663b0061d5"; - sha256 = "0qwsnbwhcldwrirfk6hpiklmcj3a7dzh6pn36nizci6pcza07p56"; - }; - - phases = [ "unpackPhase" "configurePhase" "buildPhase" "installPhase" ]; - - buildInputs = [ cmake openssl sqlite sqlite-amalgamation SDL ]; - - preConfigure = '' - cp ${sqlite-amalgamation}/* sqlite/ - ''; - - cmakeFlags = [ - "-DSERVERONLY=ON" - ]; - - installPhase = '' - find - mkdir -p $out/bin - mkdir -p $out/share - cp zandronum-server zandronum.pk3 skulltag_actors.pk3 $out/share - - cat > $out/bin/zandronum-server << EOF - #!/bin/sh - - LD_LIBRARY_PATH=$out/share $out/share/zandronum-server "\$@" - EOF - - chmod +x "$out/bin/zandronum-server" - ''; - - meta = { - homepage = http://zandronum.com/; - description = "Server of the multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software"; - maintainer = [ stdenv.lib.maintainers.lassulus ]; - }; -} - diff --git a/pkgs/misc/drivers/sundtek/default.nix b/pkgs/misc/drivers/sundtek/default.nix index b3a3252a4a2c1c4f7e958729f442f9472437716c..2587765da688c025789acff61f86e9a7925382bb 100644 --- a/pkgs/misc/drivers/sundtek/default.nix +++ b/pkgs/misc/drivers/sundtek/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; let - version = "2015-09-07"; + version = "2015-12-12"; rpath = makeLibraryPath [ "$out/lib" "$out/bin" ]; platform = with stdenv; if isx86_64 then "64bit" @@ -15,7 +15,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://www.sundtek.de/media/netinst/${platform}/installer.tar.gz"; - sha256 = "159221lxxs5a37akamp8jc3b5ny36451mgjljajvck0c6qb6fkpr"; + sha256 = "0pjg4xww25z36dp64az4gdc0fxhz51f5kb8zvj03hqc774fxzpbq"; }; name = "sundtek-${version}"; 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 0000000000000000000000000000000000000000..78f4a248c5fda638d879a82b6fe69aeacc52c416 --- /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 95793de98845f0f86705202df08a6b57f70016f1..5d48f38abd82352ea85010cc353a9533418dafe5 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 = "0yc5gwg6dq9iwi2qk3g66wn8j2l55nhdb0311jzmdsh86zcrpvqh"; 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 = "096"; 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 82f1068894813e6dedd5ec91ce70ded7a1481cae..ea11e3a33e2b2ab21d9007facfa7aeb48a138aba 100644 --- a/pkgs/misc/emulators/mgba/default.nix +++ b/pkgs/misc/emulators/mgba/default.nix @@ -1,24 +1,41 @@ -{ stdenv, fetchurl, cmake, ffmpeg, imagemagick, libzip, pkgconfig, qt5, SDL2 }: +{ stdenv, fetchurl, pkgconfig, cmake, ffmpeg, imagemagick, libzip, SDL2 +, qtbase, qtmultimedia }: stdenv.mkDerivation rec { - name = "mgba-0.3.0"; + name = "mgba-${meta.version}"; src = fetchurl { - url = https://github.com/mgba-emu/mgba/archive/0.3.0.tar.gz; - sha256 = "02zz6bdcwr1fx7i7dacff0s8mwp0pvabycp282qvhhx44x44q7fm"; + url = "https://github.com/mgba-emu/mgba/archive/${meta.version}.tar.gz"; + sha256 = "0z52w4dkgjjviwi6w13gls082zclljgx1sa8nlyb1xcnnrn6980l"; }; buildInputs = [ - cmake ffmpeg imagemagick libzip pkgconfig qt5.base qt5.multimedia - SDL2 + pkgconfig cmake ffmpeg imagemagick libzip SDL2 + qtbase qtmultimedia ]; enableParallelBuilding = true; - meta = { - homepage = https://endrist.com/mgba/; + meta = with stdenv.lib; { + version = "0.3.1"; + homepage = https://mgba.io; description = "A modern GBA emulator with a focus on accuracy"; - license = stdenv.lib.licenses.mpl20; - maintainers = with stdenv.lib.maintainers; [ MP2E ]; + longDescription = '' + mGBA is a new Game Boy Advance emulator written in C. + + The project started in April 2013 with the goal of being fast + enough to run on lower end hardware than other emulators + support, without sacrificing accuracy or portability. Even in + the initial version, games generally play without problems. It + is loosely based on the previous GBA.js emulator, although very + little of GBA.js can still be seen in mGBA. + + Other goals include accurate enough emulation to provide a + development environment for homebrew software, a good workflow + for tool-assist runners, and a modern feature set for emulators + that older emulators may not support. + ''; + license = licenses.mpl20; + maintainers = with maintainers; [ MP2E AndersonTorres ]; }; } diff --git a/pkgs/misc/emulators/wine/versions.nix b/pkgs/misc/emulators/wine/versions.nix index bfdbd0177da6f7673b590dccaa2270a6ce56e2c2..057f5214aa2e5d25825b5d5d90079e4139ec763c 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/jackaudio/default.nix b/pkgs/misc/jackaudio/default.nix index 25fd1a5cbbf740944cef48eeda1158c50c1d4551..b5748c0f8328b5276ad86aa13504ad3550813007 100644 --- a/pkgs/misc/jackaudio/default.nix +++ b/pkgs/misc/jackaudio/default.nix @@ -51,7 +51,6 @@ stdenv.mkDerivation rec { python waf configure --prefix=$out \ ${optionalString (optDbus != null) "--dbus"} \ --classic \ - --profile \ ${optionalString (optLibffado != null) "--firewire"} \ ${optionalString (optAlsaLib != null) "--alsa"} \ --autostart=${if (optDbus != null) then "dbus" else "classic"} \ diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 21df615d661643265bab4d3c23698c9fe8a61868..8b2be0914e3e8b952b18274369c5aab1e4dadd03 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -25,6 +25,11 @@ stdenv.mkDerivation rec{ preConfigure='' sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl + + # At some point our fontforge had path 2n…-fontforge-2015… and it + # confused the version detection… + sed -re 's%("[$]exe" --version .*)([|\\] *$)%\1 | sed -re "s@/nix/store/[a-z0-9]{32}-@@" \2%' \ + -i configure ''; postInstall = '' diff --git a/pkgs/misc/screensavers/light-locker/default.nix b/pkgs/misc/screensavers/light-locker/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..48b30bccbdd854dfb4cdec6ee04c633f082db7b7 --- /dev/null +++ b/pkgs/misc/screensavers/light-locker/default.nix @@ -0,0 +1,43 @@ +{ stdenv +, fetchFromGitHub +, which +, xfce +, glib +, pkgconfig +, libX11 +, gtk3 +, dbus_glib +, systemd +, wrapGAppsHook +}: + +stdenv.mkDerivation rec { + name = "${basename}-${version}"; + basename = "light-locker"; + version = "1.7.0"; + + src = fetchFromGitHub { + owner = "the-cavalry"; + repo = basename; + rev = "v${version}"; + sha256 = "0ygkp5vgkx2nfhfql6j2jsfay394gda23ir3sx4f72j4agsirjvj"; + }; + + buildInputs = [ which xfce.xfce4_dev_tools glib pkgconfig libX11 gtk3 dbus_glib systemd wrapGAppsHook ]; + + preConfigure = '' + ./autogen.sh + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/the-cavalry/light-locker; + description = "light-locker is a simple locker"; + longDescription = '' + light-locker is a simple locker (forked from gnome-screensaver) that aims to have simple, sane, secure defaults and be well integrated with the desktop while not carrying any desktop-specific dependencies. + It relies on lightdm for locking and unlocking your session via ConsoleKit/UPower or logind/systemd. + ''; + license = licenses.gpl2; + maintainers = with maintainers; [ obadz ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index fe393753f24f8eb0c133e52cbba3f1c6d2920848..603e4db4ac6ed2351182acbe2302aba6ac90afa3 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -110,22 +110,22 @@ rec { }; Gist = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Gist-2015-08-13"; + name = "Gist-2015-10-25"; src = fetchgit { url = "git://github.com/mattn/gist-vim"; - rev = "ea7dc962c5c2ac2a1c4adc94d54cac190d713648"; - sha256 = "0b96a572018de25120fe91eea17b8ee2844881c88ab63e03d999c22fc292f11e"; + rev = "88c331e2e07765090112a396e5e119b39b5aa754"; + sha256 = "0da7e356b4a50921c1a67edcf066785ed637750094f42ac1bc61ae82a2f7f9c5"; }; dependencies = []; }; Hoogle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Hoogle-2013-11-26"; + name = "Hoogle-2015-11-27"; src = fetchgit { url = "git://github.com/Twinside/vim-hoogle"; - rev = "81f28318b0d4174984c33df99db7752891c5c4e9"; - sha256 = "0f96f3badb6218cac87d0f7027ff032ecc74f08ad3ada542898278ce11cbd5a0"; + rev = "f0deb22baad592329b158217143f8b324548b4bd"; + sha256 = "e98b9b729b8c7dfcf34ccd36940e4d855975580864cf36f5e4bb88336fd1e263"; }; dependencies = []; @@ -154,11 +154,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2015-10-02"; + name = "Syntastic-2015-12-10"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "7e26d3589ab414155dff2c362a07e9e8bb970823"; - sha256 = "3878a0d2664eac37c033985d725c8606bb6c1796cf94d36ffe85197bf1df8b24"; + rev = "48736aa376341518d7bedf3a39daf0ae9e1dcdc0"; + sha256 = "2a523c7d54b5afee1eda6073c71ffcea7ba60e5240d91ea235f007ad89fb8e55"; }; dependencies = []; @@ -187,33 +187,33 @@ rec { }; The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "The_NERD_Commenter-2015-07-26"; + name = "The_NERD_Commenter-2015-10-29"; src = fetchgit { url = "git://github.com/scrooloose/nerdcommenter"; - rev = "5cc672a4f2adb734ac671499476034f0cd1d3d72"; - sha256 = "a8ab1f90044bf96e9c105c4a3ff6bbd9aaa20bddbaca1d82d7ca15d2cc3c2654"; + rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe"; + sha256 = "4ef10aafc54bcb3e119cac7f4b0065d8dc09d43d92dc069a499e96e935afb83d"; }; dependencies = []; }; The_NERD_tree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "The_NERD_tree-2015-09-18"; + name = "The_NERD_tree-2015-12-02"; src = fetchgit { url = "git://github.com/scrooloose/nerdtree"; - rev = "0b44415a3302030b56755cc1135ca9ca57dc1ada"; - sha256 = "7841683821e41b65e4aff9222639a43f05d7b24c874b309f1cc3e6407e09343f"; + rev = "4ebbb533c3faf2c480211db2b547972bb3b60f2b"; + sha256 = "f730aa7347d6e710451514137985265338f8f60c4ab7f98e2a0eed65071e08ed"; }; dependencies = []; }; UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "UltiSnips-2015-09-20"; + name = "UltiSnips-2015-12-09"; src = fetchgit { - url = "git://github.com/sirver/ultisnips"; - rev = "e1e005a810edc7b1c13b5095fe3ab7ce2600b0cb"; - sha256 = "de2fd5d654fc48021325f5373ca5be741d105a191ba47ad1c5333046a615b745"; + url = "git://github.com/SirVer/ultisnips"; + rev = "5a2dcc5cbfa4c1e4a981d57544eb51fc5baeecea"; + sha256 = "dd9b087b7a08b75a60f104cf734b604f8823a219b76531694b4957fce6a2a8d5"; }; dependencies = []; @@ -231,11 +231,11 @@ rec { }; WebAPI = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "WebAPI-2015-09-14"; + name = "WebAPI-2015-10-05"; src = fetchgit { url = "git://github.com/mattn/webapi-vim"; - rev = "575859ae34175a3bb88371dd65b266d7e8044140"; - sha256 = "bee247bd833db32386313b8966ba7ae36623606c3e3712d4660de671b626b958"; + rev = "dfc60635e610f9200646a84d11887af9e3d50b10"; + sha256 = "7bc85fe344854e02377f4ac931a015ef1ffd6de14f1d0d8fca04785beabe584b"; }; dependencies = []; @@ -280,11 +280,11 @@ rec { }; ctrlp-z = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-z-2013-05-08"; + name = "ctrlp-z-2015-10-17"; src = fetchgit { url = "git://github.com/amiorin/ctrlp-z"; - rev = "7845735a3d63a68ed63aa3a5363b178c48f199bf"; - sha256 = "14c5240e6ab373cbd04d105a46808aed4a324472ddfd67b993534bf5d726e93f"; + rev = "d1a69ec623ce24b9a30fc8fe3cd468c322b03026"; + sha256 = "d40ba49edba53805779706633ec3ee0056dd88835cc6b2e88fbe628a5e90da9a"; }; dependencies = []; @@ -302,22 +302,22 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2015-10-02"; + name = "fugitive-2015-12-15"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "0b43b51d7785aeb4002b45ca49cea5aef0d2e988"; - sha256 = "8b6002169ec54487951680c67e618b2bfdf04cc0d430eb1149917f82277fc20f"; + rev = "8851b8fe643517af160f59dfc3d88a0c4eed1fa5"; + sha256 = "bba527606ab63cc6cce24ca1b44226aa37aced7f1aac4c352a6b83ce522c4b5f"; }; dependencies = []; }; ghcmod = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ghcmod-2015-09-17"; + name = "ghcmod-2015-12-10"; src = fetchgit { url = "git://github.com/eagletmt/ghcmod-vim"; - rev = "3e012a5b0b904c5c32eeea39071534d492a64a0f"; - sha256 = "e35c4528d08efb85c68fd4faa19283d67f936d915cae780de0cae0cc53131500"; + rev = "1cab59653ef0fba71574c7f64e60a27df2bc38fc"; + sha256 = "34556e0d4d7059fb6842eabfc4e9d0065e69b0e45b54e224b684e562f2917556"; }; dependencies = []; @@ -335,11 +335,11 @@ rec { }; vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-nix-2015-05-10"; + name = "vim-nix-2015-12-10"; src = fetchgit { url = "git://github.com/LnL7/vim-nix"; - rev = "39f5eb681f2ed2282ed562af2d6a2e40712d8429"; - sha256 = "6f109b6949f773b2d7f06adeb45334fa61479c95750666b450265851cb24c761"; + rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12"; + sha256 = "52dbdd4d5bc12988eb62d9022109dbd8b1c5716c27753ce187db6c2fb6737664"; }; dependencies = []; @@ -357,11 +357,11 @@ rec { }; neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neomake-2015-09-29"; + name = "neomake-2015-12-11"; src = fetchgit { url = "git://github.com/benekastah/neomake"; - rev = "dc65a7a5d85670c84fc0055d19fa6901ae96ef93"; - sha256 = "967559156af1f06e345c04a4df9e3ab6a0e913e56ff2a66189a91a5c57c4f668"; + rev = "d4c0a6f062a0d098126e87bb718b92fe7b79fd97"; + sha256 = "1b2f1e024ffdfe0613c0aeb4c6fc64d64c6a25a00841538b7a371efd34cb8615"; }; dependencies = []; @@ -379,44 +379,44 @@ rec { }; vim-tmux-navigator = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-tmux-navigator-2015-05-29"; + name = "vim-tmux-navigator-2015-12-05"; src = fetchgit { url = "git://github.com/christoomey/vim-tmux-navigator"; - rev = "176452ead44118174ddad3502709a247d9c24bb4"; - sha256 = "789c8b24b971a3b307ac296234230f1048ff2928c89302700bd4e5fc2edd2d8a"; + rev = "1298b71c420f1d0abceba3f35cc710131f84d73b"; + sha256 = "bde962fe1441cd6f030d9704e6e71117fb43d827b8952d3e1d44009c297b4eb5"; }; dependencies = []; }; ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-vim-2015-09-15"; + name = "ctrlp-vim-2015-11-30"; src = fetchgit { url = "git://github.com/ctrlpvim/ctrlp.vim"; - rev = "58247bdf8550879e183c13860eefa03983959e4a"; - sha256 = "1d4cf293a1e48564a491e00077794e23f5360827a72c2618fd3e99ee153ea6a8"; + rev = "7a80267ed061f3dc30bb319f438bdadfd8c7b1fd"; + sha256 = "ae29eb79ca32ca0edd32602cf6b1e1276ccd4f5086ac4297a7f0dea2dd2e1f1b"; }; dependencies = []; }; vim-jade = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-jade-2015-07-06"; + name = "vim-jade-2015-11-23"; src = fetchgit { url = "git://github.com/digitaltoad/vim-jade"; - rev = "fb47bb8303e81fc17b4340ccd01a462332f7d90a"; - sha256 = "c3dde95c01d9e174a9143103e76796d2da40ddb68de9f321fce3f88df312e15a"; + rev = "f760e239386df055eb1892243624fdf7f7c58392"; + sha256 = "812e65090e6a1c31f433878fd1012673a8244d8b6974b1c2ffd1558c30c716cc"; }; dependencies = []; }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2015-10-03"; + name = "neco-ghc-2015-11-20"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "0550fea80e9c958a479067805bcf98e294bb2e32"; - sha256 = "061fadcae3122f4d2bb86e0a238f8980884080427bbc3f0fe7e2e9c9efe6c5eb"; + rev = "53a3d63bc4ecc10d8506a40a0472987f262050da"; + sha256 = "85ff5e1564a7fd81bbfcec1f4d16e675c2dd1fba38223dbae134f665f03985a8"; }; dependencies = []; @@ -434,22 +434,33 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2015-10-03"; + name = "vim-go-2015-12-15"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "1792ee374ba8d384cd547506cbf8f43690d1d55f"; - sha256 = "cbcac7b9ee8fccf89fc7b5adfb9a7ca7cda2e15447093a9fc886c2fd5b0063e0"; + rev = "70c363044df808e34d947815d01a37d4e7564421"; + sha256 = "9f1764a5e8c7450c4af9fc64b3170e10d89c4d6b4ad69a758878bed16362cf09"; + }; + dependencies = []; + + }; + + vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-colorschemes-2015-07-25"; + src = fetchgit { + url = "git://github.com/flazz/vim-colorschemes"; + rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; + sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5"; }; dependencies = []; }; idris-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "idris-vim-2015-08-14"; + name = "idris-vim-2015-12-08"; src = fetchgit { url = "git://github.com/idris-hackers/idris-vim"; - rev = "45680a3c412f2cc8d40aff512e5e9ace44002922"; - sha256 = "e053a37cb14228a49be265c5fa1af96d3bae1a5a5ceffdd21e3c4547a79656b1"; + rev = "1f9bad6bc1d05b44e7555fe80472fbb7a542f47a"; + sha256 = "50cfb5a58a6c203c5f3695de61e9bc743e5dca71427e00c5cae86b4409debd3c"; }; dependencies = []; @@ -500,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 = []; @@ -532,6 +543,17 @@ rec { }; + vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-colorstepper-2015-08-04"; + src = fetchgit { + url = "git://github.com/jonbri/vim-colorstepper"; + rev = "5783c2567a193e7604780353d6f8ce445b2ab191"; + sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59"; + }; + dependencies = []; + + }; + vim-xdebug = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-xdebug-2012-08-15"; src = fetchgit { @@ -566,11 +588,11 @@ rec { }; vim-eighties = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-eighties-2015-06-15"; + name = "vim-eighties-2015-11-02"; src = fetchgit { url = "git://github.com/justincampbell/vim-eighties"; - rev = "68dc644664bf569e96ac91f79fdf828e89d70e02"; - sha256 = "d6600665179395141d660c65dad3e03c13aeba164a6c1e6fabfc9e2499588132"; + rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5"; + sha256 = "b3386d1c40650e5c0ebda2105d1404cfb2aab74153e13bace4a73bc667d91e81"; }; dependencies = []; @@ -599,22 +621,22 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2015-10-04"; + name = "vimtex-2015-12-16"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "db92be5756239c31eed521f2131eac3ca997c0cc"; - sha256 = "67597a04c0c92199d0499607982a202247ef879768445eb0c7a21d27357845fc"; + rev = "e982722e89462716e2ecdb6ce7aa9baea6dc8c98"; + sha256 = "4c0e8399b97cbd24b0131c3e22fc8873d04576e21156b80e5c678b4ce3d19fe0"; }; dependencies = []; }; vim-easymotion = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easymotion-2015-08-06"; + name = "vim-easymotion-2015-10-27"; src = fetchgit { url = "git://github.com/lokaltog/vim-easymotion"; - rev = "0806257ca6432ac7beb75c4319dadf7f3ba9907b"; - sha256 = "529f836da3a546c507ec99f7c827902a75472fefe570a93258360bfa4c253909"; + rev = "a21d4474f0e9df7a721246e0a3b386068901965f"; + sha256 = "96bb705e9ff626b139a7f92906468eda63d743b8457a1dc1e4de9c3cf9486525"; }; dependencies = []; @@ -636,11 +658,11 @@ rec { }; vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-startify-2015-08-20"; + name = "vim-startify-2015-12-11"; src = fetchgit { url = "git://github.com/mhinz/vim-startify"; - rev = "6f886cdc48cf34c50eb723abca2f813a5de2c11b"; - sha256 = "2614bee6a0cdb1a80aa6d3cfeba9e7521ac0be21d15ca4512a413cf192d93fd8"; + rev = "295fe7a09a881448eea1aa71d26f53dcda3c499b"; + sha256 = "a561488ae8870364f822a93ef18d35511b4dd7e779fd18e365851e8d216df61e"; }; dependencies = []; @@ -691,11 +713,11 @@ rec { }; racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "racer-2015-09-18"; + name = "racer-2015-12-11"; src = fetchgit { url = "git://github.com/phildawes/racer"; - rev = "b9750c373adf75fc28700bce382761ad85a8a2bd"; - sha256 = "a2f2ca5106a0c30ee8e724291559f0f26729ede545ac7b9be3ee973face24444"; + rev = "ce1915a6fd76f76433f30cfaf1fe1b2a8e21cdd4"; + sha256 = "24d48cbf6d69e397cd7a9925c42e2a10fb8c9dc4a0ef8b9122894847224fd735"; }; dependencies = []; buildPhase = '' @@ -705,55 +727,55 @@ rec { }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2015-10-03"; + name = "neocomplete-vim-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "d2a78075207b97c105041927a125e2cf0b2b0ca5"; - sha256 = "6a64c6bd90a53f7f3636177cb1c507229d51b7dbb6a5dde8f3c4aad4cbe176d7"; + rev = "d1cb4c57e5eb8b453b63432dcbcb45a15c0fd07e"; + sha256 = "a704696e66101875e98a1b2b6815acad647b87a07a3842fd6f9f91b8a70411e5"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2015-09-07"; + name = "neosnippet-snippets-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "7bc1674170670a4c43f7f4fc65e0e396759512ea"; - sha256 = "87a0c603517ab740b774245ca224235ff03abd1480855f4c2bedccd9acb95d53"; + rev = "ec9267240ecb855657de830c9c68e5f6e34cfe65"; + sha256 = "319a7ac504b462f7e466c9e02ff6e54b8374e5970f148552986c83136c423854"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2015-10-03"; + name = "neosnippet-vim-2015-12-16"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "7c07c4d8a2228c77ae4d519c936811db662ecd4a"; - sha256 = "c967ad2b7a70bfa273e9a802b3b6603f85bcb5dcdae8749019ce43de7dfde85c"; + rev = "cfc99eedb5caf3d6baf867db5220a891b4686699"; + sha256 = "aa34c6e28eb281bec6e617f03eb5e094cd2cfe18951f9e4823dda0ccdabaffad"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2015-10-02"; + name = "unite-vim-2015-12-13"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "c57bed02229a80d050c2411dff5f0943e6edf08a"; - sha256 = "3486c584a023b31257e3c67ad86557d62577aa9a5ee19b79736844f1a114179f"; + rev = "aefd6c32ef8dc5b357efe7d8e5cd3dd4aa785d5c"; + sha256 = "83562a15afc1c41a5d407fd0eb7d26beec216a9431dd80992bcd615afd595e5e"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2015-10-03"; + name = "vimproc-vim-2015-12-11"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "3134f1258de30a4eb7a3b1aeee90628a7f0c3a2a"; - sha256 = "8993f0ac8d768f3e99fa05fca61434eeb5dc34b337db42b0524f60827be41b79"; + rev = "f96e476e41ab4cdb9c37242c8cf76f1e5aa5b91d"; + sha256 = "da5de329b567d72fec8dc49d13006f19eca09282c57304dfa8d22bfbf8a9ace4"; }; dependencies = []; buildInputs = [ which ]; @@ -768,21 +790,21 @@ rec { }; vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimshell-vim-2015-08-28"; + name = "vimshell-vim-2015-11-24"; src = fetchgit { url = "git://github.com/shougo/vimshell.vim"; - rev = "a1f9a2010bea4b109341f1e2411a32839a8547b3"; - sha256 = "bd2419b50b981e62e25afaa9c5206b818098cd7663cac8566f1d654fbea56ca6"; + rev = "7931e3bf9fbba738b26bb76143dfc1df17f7a99b"; + sha256 = "f51ee4e8b16460226ce74d87236834f13008dca16dbc9090d89576a545f573bc"; }; dependencies = [ "vimproc-vim" ]; }; gundo-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "gundo-vim-2013-07-10"; + name = "gundo-vim-2015-12-07"; src = fetchgit { url = "git://github.com/sjl/gundo.vim"; - rev = "3975ac871565115e3769dc69c06bc88ddc1369af"; - sha256 = "f66ed79d88171a4d57ee64eaf21035291518d8c64b607bd420c3ee85fa14afe5"; + rev = "dd5ab1e930deb8c74ea9046654dd0587df0cf459"; + sha256 = "6fe21b7398d8eb9b18f2015f64b7d40768123c2dbbde829d654d3dbf1ffb8070"; }; dependencies = []; @@ -800,22 +822,22 @@ rec { }; vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-quickrun-2015-10-02"; + name = "vim-quickrun-2015-12-17"; src = fetchgit { url = "git://github.com/thinca/vim-quickrun"; - rev = "9fff9e5f12fcea45637821e30e6dbee05e748854"; - sha256 = "ca7376c6eafc1397c0a92c2ace7141daeeb881aaeabdc3168d4a0b598fd25caa"; + rev = "97e1c8f6674d3ccce4730510d67c4e15894adcdc"; + sha256 = "c61167569d5b05767fdaffc1b09aab729c777d01afaff8c0efd641a61ebe758c"; }; dependencies = []; }; molokai = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "molokai-2014-04-11"; + name = "molokai-2015-11-11"; src = fetchgit { url = "git://github.com/tomasr/molokai"; - rev = "db8ce13b3737d3ddea8368498183d7c204a762eb"; - sha256 = "34587133f0f17b8950ed0428b3deeacc2f15933ede8bfdd000593098ed6d903a"; + rev = "c67bdfcdb31415aa0ade7f8c003261700a885476"; + sha256 = "3a0cd4eef9b4e3a4fd826c66a8edec44a087d04f500217981a84fb59b2fc3ade"; }; dependencies = []; @@ -855,11 +877,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2015-09-25"; + name = "youcompleteme-2015-12-13"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "5a186275a581b04bbdb7001475d946e30d0f80b4"; - sha256 = "6794aaa55ad55db1972260fe02099c8c05961c5ac9151776c88a2cdf3fcd92fd"; + rev = "93c2a8644bcfc84590bea5e19eab350fe245e504"; + sha256 = "32aaa99c5398d65875c1fdf5ed22f58aeeb267a2840930479523815b94b4111c"; }; dependencies = []; buildInputs = [ @@ -901,22 +923,22 @@ rec { }; vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-2015-08-13"; + name = "vim-pandoc-2015-10-20"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc"; - rev = "ead1f177b2c894d60e01d3f16227e2e6e06c85a7"; - sha256 = "44fa5d236f7ae2e98bd3e1575b79265be812b4a49488d001f9f37e9b2b8cd3f8"; + rev = "7d7fdeabb83808f669f4cab37d7950b1bed8adbe"; + sha256 = "451e520ca62cf1207da0f22c2c23f4502f81c0b5a662cd9bfb898e1f53301c41"; }; dependencies = []; }; vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-syntax-2015-09-25"; + name = "vim-pandoc-syntax-2015-11-05"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc-syntax"; - rev = "dd71d6fc53e22e2bc84790e0b60f9827957e1ea7"; - sha256 = "60787f9ced453f335c0fe02f3e727bc9d4f4ab2e40a42a881b3b6f3b20798e37"; + rev = "40c65141bc8c771f270ce8251a99ccdda1ab102c"; + sha256 = "c1be96f358b211d8a5126fdb541a6500c9016e829527d57766b1ec18a4d8ad0e"; }; dependencies = []; @@ -1000,11 +1022,11 @@ rec { }; vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-wakatime-2015-10-01"; + name = "vim-wakatime-2015-12-01"; src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; - rev = "9fd813c489958f98f5e8b215ab8b91b47f86fb5a"; - sha256 = "d55ee76845eda96d1864f73d6927f8c20a2df21bd25dae03ede732d2610d9a32"; + rev = "2b758403d8637cacbab1de603258c611408b9fa7"; + sha256 = "e3a3da2dd40c4098b18815ca12d83ad1789f5342a8d822669a29e9900600e6ff"; }; dependencies = []; buildInputs = [ python ]; @@ -1028,11 +1050,11 @@ rec { }; goyo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "goyo-2015-08-08"; + name = "goyo-2015-11-15"; src = fetchgit { url = "git://github.com/junegunn/goyo.vim"; - rev = "c1293a91a3a04bcb82421b2ee711c49f83a418ae"; - sha256 = "258b23f4f043569e6e0458c8035d5b00be6031b02e460136f7783da1bbadcc49"; + rev = "630f5d80861beb36ae2dfa0c587ec6b51982cff5"; + sha256 = "28e74ab067ce55d0dd964b5214601e851046149ccf98b377861c56225f36dc44"; }; dependencies = []; @@ -1105,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 = []; @@ -1127,11 +1149,11 @@ rec { }; snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "snipmate-2015-09-18"; + name = "snipmate-2015-10-27"; src = fetchgit { url = "git://github.com/garbas/vim-snipmate"; - rev = "e2d294b3962acbe7d8333bade2ebdb0ccde06740"; - sha256 = "856149bc5121845e3f3cd24f74d59e9af722a6ebdc0e050a90639704bfe14ee9"; + rev = "7f91de39088138491e40a35a855adb70677b02d3"; + sha256 = "e8c70bbad496fc1306814fbb078736a93d4f418d16f7692f4e37dbcc00ec6633"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1160,11 +1182,11 @@ rec { }; table-mode = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "table-mode-2015-06-05"; + name = "table-mode-2015-12-03"; src = fetchgit { url = "git://github.com/dhruvasagar/vim-table-mode"; - rev = "5395c9f52b91ae6083fd7b26577b8f926da6871e"; - sha256 = "784e51f7144790fcfad83c2dc5c7f250608826ce48706b80c41f88fa04914ae2"; + rev = "2ab64777a5b81e240810999eb6e7dc65e1de5461"; + sha256 = "64aff63c0aeb696f087cf41021867e1576e4fe8d392d36ec2ca46ddec104a8e1"; }; dependencies = []; @@ -1192,22 +1214,22 @@ rec { }; tlib = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "tlib-2015-08-05"; + name = "tlib-2015-12-12"; src = fetchgit { url = "git://github.com/tomtom/tlib_vim"; - rev = "4c128ee2fee6d97cc5c6089e7797b4ad536de2a4"; - sha256 = "9cd0fc23bb332d5ae939019929d989b636b891c894f350c38234eaf084e0656c"; + rev = "599934acbbcf1637616878fc6e8f5aba1b301a29"; + sha256 = "2401a623363bf31fa9f152faae90268d06ed5cef8352163c19b0c7b013e5c0b7"; }; dependencies = []; }; undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "undotree-2015-08-19"; + name = "undotree-2015-12-16"; src = fetchgit { url = "git://github.com/mbbill/undotree"; - rev = "8ff701a5bdb8d382431eb042e4faf3320883b020"; - sha256 = "9c166cb812be486350a3e71eed273a630545d91e3198a214e3dce13b131aeb1d"; + rev = "39e5cf0fc241c64e920f91d52299b444475d54df"; + sha256 = "767c84917392d1b370ef542c218c0f7bd642e59a7176735bbdd80c8a8f8b04ca"; }; dependencies = []; @@ -1235,6 +1257,17 @@ rec { }; + vim-addon-background-cmd = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-background-cmd-2015-12-11"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-background-cmd"; + rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a"; + sha256 = "06223ebaa157e17434cc09dae474324c105374e4e05d85695a05c7d0a2761c20"; + }; + dependencies = ["vim-addon-mw-utils"]; + + }; + vim-addon-commenting = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-commenting-2013-06-10"; src = fetchgit { @@ -1356,6 +1389,17 @@ rec { }; + vim-addon-signs = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-addon-signs-2013-04-19"; + src = fetchgit { + url = "git://github.com/MarcWeber/vim-addon-signs"; + rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae"; + sha256 = "a9c03a32e758d51106741605188cb7f00db314c73a26cae75c0c9843509a8fb8"; + }; + dependencies = []; + + }; + vim-addon-sql = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-addon-sql-2014-01-18"; src = fetchgit { @@ -1401,11 +1445,11 @@ rec { }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2015-10-05"; + name = "vim-airline-2015-10-18"; src = fetchgit { url = "git://github.com/bling/vim-airline"; - rev = "543438e482763f64985a3fcab38a1936242a8087"; - sha256 = "2e21b2658a941fd15b8db59220b50b3090a44e8852b42d0538d7217f12cbc77c"; + rev = "14d14cf951c08fc88ca6c3e6f28fe47b99421e23"; + sha256 = "cfc686cad3749e3bd933b5ae3ea35c4a9c02765be9223e6b30e7d801a9174aa7"; }; dependencies = []; @@ -1423,11 +1467,11 @@ rec { }; vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easy-align-2015-10-01"; + name = "vim-easy-align-2015-10-09"; src = fetchgit { url = "git://github.com/junegunn/vim-easy-align"; - rev = "0db4ea6132110631ec678a99a82aa49a0686ae65"; - sha256 = "c70440c3d0afdda630422819ca66ccf483035af86903d8725be5ca43a0940937"; + rev = "7cb559eb70600bbd81afbb2d7f60d98334f631e2"; + sha256 = "2ea40064f64a8a4f0f1e405ea5db5a3e79424cdec44d033c3d65cc40a2a19b18"; }; dependencies = []; @@ -1445,11 +1489,11 @@ rec { }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2015-08-26"; + name = "vim-gitgutter-2015-12-16"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "1067294cdc379be1deb56074a093b49a8303308f"; - sha256 = "cb9f44e41fbf565eb07968270289bb4988a84f30f03d11f2919c0423c5ee278c"; + rev = "f52f875fc7b25b601366bd6c0d67c53ad84f9559"; + sha256 = "43e36cff7c12115f05dc3dc5225f38e6c084bf37f8a43a600ad54861392eadf7"; }; dependencies = []; @@ -1478,55 +1522,55 @@ rec { }; vim-multiple-cursors = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-multiple-cursors-2015-08-27"; + name = "vim-multiple-cursors-2015-10-30"; src = fetchgit { url = "git://github.com/terryma/vim-multiple-cursors"; - rev = "146fe47ee6b2faf90d6dc1232ef1858883d798bb"; - sha256 = "916659142dc0abb3a390b56b6ec3c69e489cbbab582e09af8b9aae5b9a792727"; + rev = "73a78c926ad208bd1984e575ceece276d61a1404"; + sha256 = "74f51c7c6a903621ee3fc5e78fbce4853b5da086463d015c652808d155cbc7e6"; }; dependencies = []; }; vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signature-2015-07-08"; + name = "vim-signature-2015-11-11"; src = fetchgit { url = "git://github.com/kshenoy/vim-signature"; - rev = "0a31fb0c4c62705b4b894e150330857170080b96"; - sha256 = "945cc02d15bf7e71a87d6b1ec0ae24e6f145bff0f76586f6d8f6bba38a303a4a"; + rev = "7cabfb5a3d3b45e739eb1d7e198782fb4a5a23da"; + sha256 = "18a8ab7ba9e74d2f65c64c0c316ef824e48f21196520dfd292522c1eb8c87cb3"; }; dependencies = []; }; vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signify-2015-08-13"; + name = "vim-signify-2015-12-09"; src = fetchgit { url = "git://github.com/mhinz/vim-signify"; - rev = "d08f17873e3187da3f9998ddb81d81626ffb9ecf"; - sha256 = "7fffc5fbd21dd4f3ea81131ccb52d992d95a73be72288457b2ec3a0fa53ce3b2"; + rev = "ecb796139eb0fc9b79fdc28e9b610fa1a2c5f589"; + sha256 = "6086fb614a0da7f676f2f567b5dfc6ddd765167141f629dc8dbb02862e7db34c"; }; dependencies = []; }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2015-10-05"; + name = "vim-snippets-2015-12-17"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "eb17eb104bf39812658db504cb9bd13106a17dee"; - sha256 = "8000dde268d95ddf504bbd54f4e03ec72cf8547b03966f0bdf46ca0becf1a684"; + rev = "d5153d63b16e956e892f039ac5982963660a1c68"; + sha256 = "c79fc743ec1e565111876357136cee1a04ed6b3f58d1586df322a38b026f8a49"; }; dependencies = []; }; vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-webdevicons-2015-09-14"; + name = "vim-webdevicons-2015-12-01"; src = fetchgit { url = "git://github.com/ryanoasis/vim-devicons"; - rev = "fec56878c734b608c1fa79952579aa976da2c98b"; - sha256 = "ecbe3c62c06aaf0c7d3104210f95e95db529368fd58533360ea5041acb3bcdf1"; + rev = "0e1b7864cfee4b0585daa277bedd992f858e1e75"; + sha256 = "e265c6c0906d0427409a98458192a4eb94afe671f26fc8de8890dae0e66f7764"; }; dependencies = []; @@ -1544,46 +1588,25 @@ rec { }; vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimwiki-2014-02-21"; + name = "vimwiki-2015-12-10"; src = fetchgit { url = "git://github.com/vimwiki/vimwiki"; - rev = "2c03d82a0e4662adf1e347487d73a9bf4bf6fdac"; - sha256 = "8f94fe1204ae3770b114370382f9c616f971eb9b940d8d08ca96ac83405a0cdf"; + rev = "3bd3d9b86036b21aecd69f0a1e572643d626c280"; + sha256 = "7a10ae3881af0d17a041ffd766680ceedf706411abbbedccf64e9e777fabd5c8"; }; dependencies = []; }; vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vundle-2015-08-10"; + name = "vundle-2015-11-04"; src = fetchgit { url = "git://github.com/gmarik/vundle"; - rev = "0ee36b26e127cda512a8f2852a59e5a5f374c87f"; - sha256 = "62fc2b756bd2a8bc9452c61de5babbb1f02de6e8122424a60862be61b8f80af1"; + rev = "5f70ae6025e951f0154e3940d123138adffa4c88"; + sha256 = "c063cabca479449a3330c14e879536473d4fdb0ca4b384c9c8be18c198a929fa"; }; dependencies = []; }; - vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorschemes-2015-07-25"; - src = fetchgit { - url = "git://github.com/flazz/vim-colorschemes"; - rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; - sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5"; - }; - dependencies = []; - - }; - - vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorstepper-2015-08-04"; - src = fetchgit { - url = "git://github.com/jonbri/vim-colorstepper"; - rev = "5783c2567a193e7604780353d6f8ce445b2ab191"; - sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59"; - }; - dependencies = []; - - }; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix index a0261875c1024af489677200a47c8281da9755dd..d72afac88feea43656d8b89448a7b3594a65a853 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/adv_cmds/default.nix @@ -19,7 +19,7 @@ in appleDerivation { buildInputs = [ bsdmake perl yacc flex ]; patchPhase = '' - substituteInPlace BSDMakefile \ + substituteInPlace BSDmakefile \ --replace chgrp true \ --replace /Developer/Makefiles/bin/compress-man-pages.pl true \ --replace "ps.tproj" "" --replace "gencat.tproj" "" --replace "md.tproj" "" \ diff --git a/pkgs/os-specific/linux/alsa-utils/default.nix b/pkgs/os-specific/linux/alsa-utils/default.nix index 9f6fc98b5cf3114d308deb49d9632dbda971a86c..bcac888d4712d1cf8305d7b979da8205519d5e10 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/conky/default.nix b/pkgs/os-specific/linux/conky/default.nix index 46b749f55e8709f89d267ce97d1b7b60ec3cbaab..97eab37e4e1ed1cada29cd5faa52da223363ca37 100644 --- a/pkgs/os-specific/linux/conky/default.nix +++ b/pkgs/os-specific/linux/conky/default.nix @@ -122,5 +122,6 @@ stdenv.mkDerivation rec { description = "Advanced, highly configurable system monitor based on torsmo"; maintainers = [ maintainers.guibert ]; license = licenses.gpl3Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/crda/default.nix b/pkgs/os-specific/linux/crda/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..488a6ce1a0faaa2a09ef1096eb872840e89a5df8 --- /dev/null +++ b/pkgs/os-specific/linux/crda/default.nix @@ -0,0 +1,51 @@ +{ stdenv, fetchurl, libgcrypt, libnl, pkgconfig, pythonPackages, wireless-regdb }: + +let version = "3.18"; in +stdenv.mkDerivation { + name = "crda-${version}"; + + src = fetchurl { + sha256 = "1gydiqgb08d9gbx4l6gv98zg3pljc984m50hmn3ysxcbkxkvkz23"; + url = "http://kernel.org/pub/software/network/crda/crda-${version}.tar.xz"; + }; + + buildInputs = [ libgcrypt libnl ]; + nativeBuildInputs = [ + pkgconfig pythonPackages.m2crypto pythonPackages.python + ]; + + postPatch = '' + patchShebangs utils/ + substituteInPlace Makefile --replace ldconfig true + sed -i crda.c \ + -e "/\/usr\/.*\/regulatory.bin/d" \ + -e "s|/lib/crda|${wireless-regdb}/lib/crda|g" + ''; + + makeFlags = [ + "PREFIX=$(out)" + "SBINDIR=$(out)/bin/" + "UDEV_RULE_DIR=$(out)/lib/udev/rules.d/" + "REG_BIN=${wireless-regdb}/lib/crda/regulatory.bin" + ]; + + buildFlags = [ "all_noverify" ]; + enableParallelBuilding = true; + + doCheck = true; + checkTarget = "verify"; + + meta = with stdenv.lib; { + inherit version; + description = "Linux wireless Central Regulatory Domain Agent"; + longDescription = '' + CRDA acts as the udev helper for communication between the kernel and + userspace for regulatory compliance. It relies on nl80211 for communication. + CRDA is intended to be run only through udev communication from the kernel. + ''; + homepage = http://drvbp1.linux-foundation.org/~mcgrof/rel-html/crda/; + license = licenses.free; # "copyleft-next 0.3.0", as yet without a web site + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; + }; +} diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index 544cd4e897f72465ed0dc8762ed38c0638ce6f4e..24a568f5feb14886d7e2fd25a9172f7ba42ebe5b 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.24"; + version = "3.18.25"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "06wcgzhbiddzrabfd3z0zsb9qwa2phva5cq7gg0mzff67a6cym7d"; + sha256 = "14pz8mvk48i2y1ffkhczjcm2icpb2g9xlpzyrvvis42n5178fjf6"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-4.3.nix b/pkgs/os-specific/linux/kernel/linux-4.3.nix index 7248641a5b85d2ad1c55912194867f41cddee5c5..00d46761b2afbd30208dfb5cefd0cbf60939f412 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.3.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.3.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.3"; - modDirVersion = "4.3.0"; + version = "4.3.2"; + extraMeta.branch = "4.3"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1bpkr45i4yzp32p0vpnz8mlv9lk4q2q9awf1kg9khg4a9g42qqja"; + sha256 = "27689c993943f21b4a34d45889fbd02daa7edabf00561eebee1ca0670e31ae9d"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 54ad21833820370e0a54622f62e0ae83def447de..43070f3306db92c8d582ec2ba849bc50c21abf7a 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-rc4"; - modDirVersion = "4.4.0-rc4"; + 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 = "040ddm61rifscssnycd1lq9bfni3yrsdrrgg172rb9h5d7ya6981"; + sha256 = "1brb1v6185pf8gnff753hvpdsbdmjr5nsbvj0s4ljlpcgljrn6cb"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix index c35b6bb90e89151cd413c699f74efa48799ab5fb..43a77f4c828159c8b0483dfe5d5d385c6c093c77 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/numad/default.nix b/pkgs/os-specific/linux/numad/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..2e88e2c794e76eb9f13ca486d791c8d81dc08898 --- /dev/null +++ b/pkgs/os-specific/linux/numad/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "numad-0.5"; + + src = fetchurl { + url = "https://git.fedorahosted.org/cgit/numad.git/snapshot/${name}.tar.xz"; + sha256 = "08zd1yc3w00yv4mvvz5sq1gf91f6p2s9ljcd72m33xgnkglj60v4"; + }; + + patches = [ + ./numad-linker-flags.patch + ]; + postPatch = '' + substituteInPlace Makefile --replace "install -m" "install -Dm" + ''; + + makeFlags = "prefix=$(out)"; + + meta = with stdenv.lib; { + description = "A user-level daemon that monitors NUMA topology and processes resource consumption to facilitate good NUMA resource access"; + homepage = https://fedoraproject.org/wiki/Features/numad; + license = licenses.lgpl21; + platforms = platforms.linux; + maintainers = with maintainers; [ iElectric ]; + }; +} diff --git a/pkgs/os-specific/linux/numad/numad-linker-flags.patch b/pkgs/os-specific/linux/numad/numad-linker-flags.patch new file mode 100644 index 0000000000000000000000000000000000000000..97f3dc8b6cf7fff9a53945b5081a4cf541fb7300 --- /dev/null +++ b/pkgs/os-specific/linux/numad/numad-linker-flags.patch @@ -0,0 +1,33 @@ +From 9eb3cc5c51d846c8c8b750a4eb55545d7b5fea6c Mon Sep 17 00:00:00 2001 +From: Mike Frysinger +Date: Wed, 23 Apr 2014 15:41:26 -0400 +Subject: [PATCH] use LDLIBS for linker flags + +When you put -lfoo into the dependency line of make, it forces it to +search /lib and /usr/lib for files to link against. This can cause +problems when trying to cross-compile or build for different ABIs. +Use the standard LDLIBS variable instead. + +URL: https://bugs.gentoo.org/505760 +Reported-by: Georgi Georgiev +Signed-off-by: Mike Frysinger +--- + Makefile | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/Makefile b/Makefile +index f3838b4..f2e9a6e 100644 +--- a/Makefile ++++ b/Makefile +@@ -31,7 +31,8 @@ docdir := ${prefix}/share/doc + + all: numad + +-numad: numad.o -lpthread ++LDLIBS := -lpthread ++numad: numad.o + + AR ?= ar + RANLIB ?= ranlib +-- +1.9.2 diff --git a/pkgs/os-specific/linux/phc-intel/default.nix b/pkgs/os-specific/linux/phc-intel/default.nix index dd5a2741267b188c991a60b8b9fec3a8df81cdb5..4eed41254f9161ba39bba49454e8a4b27e1297c6 100644 --- a/pkgs/os-specific/linux/phc-intel/default.nix +++ b/pkgs/os-specific/linux/phc-intel/default.nix @@ -2,20 +2,20 @@ assert stdenv.isLinux; # Don't bother with older versions, though some would probably work: -assert stdenv.lib.versionAtLeast kernel.version "4.2"; +assert stdenv.lib.versionAtLeast kernel.version "4.3"; # Disable on grsecurity kernels, which break module building: assert !kernel.features ? grsecurity; let release = "0.4.0"; - revbump = "rev18"; # don't forget to change forum download id... + revbump = "rev19"; # don't forget to change forum download id... version = "${release}-${revbump}"; in stdenv.mkDerivation { name = "linux-phc-intel-${version}-${kernel.version}"; src = fetchurl { - sha256 = "1480y75yid4nw7dhzm97yb10dykinzjz34abvavsrqpq7qclhv27"; - url = "http://www.linux-phc.org/forum/download/file.php?id=167"; + sha256 = "1apvjp2rpaf3acjvsxgk6xiwrx4n9p565gxvra05pvicwikfiqa8"; + url = "http://www.linux-phc.org/forum/download/file.php?id=168"; name = "phc-intel-pack-${revbump}.tar.bz2"; }; @@ -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/sysdig/default.nix b/pkgs/os-specific/linux/sysdig/default.nix index e2758e7c2b61ac73e4c6a0887e85a28b1f15ce13..5c15ba1a9ce4c1912a33e72b4474382c6310164a 100644 --- a/pkgs/os-specific/linux/sysdig/default.nix +++ b/pkgs/os-specific/linux/sysdig/default.nix @@ -1,15 +1,15 @@ -{stdenv, fetchurl, cmake, luajit, kernel, zlib, ncurses}: +{stdenv, fetchurl, cmake, luajit, kernel, zlib, ncurses, perl, jsoncpp, libb64, openssl, curl}: let inherit (stdenv.lib) optional optionalString; s = rec { baseName="sysdig"; - version = "0.1.102"; + version = "0.5.1"; name="${baseName}-${version}"; url="https://github.com/draios/sysdig/archive/${version}.tar.gz"; - sha256 = "0mrz14wvcb8m8idr4iqbr3jmxfs7dlmh06n0q9fcfph75wkc5fp0"; + sha256 = "08wnk0593ljdq466hk0npsjc0gbm37nsjm1x2ilsf58n1xl8dmfs"; }; buildInputs = [ - cmake zlib luajit ncurses + cmake zlib luajit ncurses perl jsoncpp libb64 openssl curl ]; in stdenv.mkDerivation { @@ -20,9 +20,7 @@ stdenv.mkDerivation { }; cmakeFlags = [ - "-DUSE_BUNDLED_LUAJIT=OFF" - "-DUSE_BUNDLED_ZLIB=OFF" - "-DUSE_BUNDLED_NCURSES=OFF" + "-DUSE_BUNDLED_DEPS=OFF" ] ++ optional (kernel == null) "-DBUILD_DRIVER=OFF"; preConfigure = '' export INSTALL_MOD_PATH="$out" diff --git a/pkgs/os-specific/linux/syslinux/default.nix b/pkgs/os-specific/linux/syslinux/default.nix index 5ebcef39e4735719783222241de1e0cdf5021337..c051aac43126530103e9315f4c9b95bd5ecd4dec 100644 --- a/pkgs/os-specific/linux/syslinux/default.nix +++ b/pkgs/os-specific/linux/syslinux/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, nasm, perl, python, libuuid }: +{ stdenv, fetchFromGitHub, nasm, perl, python, libuuid, mtools, makeWrapper }: stdenv.mkDerivation rec { name = "syslinux-2015-11-09"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { patches = [ ./perl-deps.patch ]; nativeBuildInputs = [ nasm perl python ]; - buildInputs = [ libuuid ]; + buildInputs = [ libuuid makeWrapper ]; enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...' @@ -36,6 +36,11 @@ stdenv.mkDerivation rec { "bios" ]; + postInstall = '' + wrapProgram $out/bin/syslinux \ + --prefix PATH : "${mtools}/bin" + ''; + meta = with stdenv.lib; { homepage = http://www.syslinux.org/; description = "A lightweight bootloader"; diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 4ca3f978798af75c5c065fa3a5b64311ba47d206..0e94b4ec13064cb1045ea744108c95dc05d67614 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 = "17c30663f79499ad0163c7ffe2c79e5c28525a6f"; - sha256 = "0jyqwqyh7l2qp7k4h83gzzp9bgijz0bx02jhd0063jcl1s2amlnh"; + rev = "b737c07cc0234acfa87282786025d556bca91c3f"; + sha256 = "0wca8zkn39914c232andvf3v0ni6ylv154kz3s9fcvg47rhpd5n1"; }; patches = [ ./hwdb-location.diff ]; @@ -40,7 +37,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 = diff --git a/pkgs/os-specific/linux/udisks/2-default.nix b/pkgs/os-specific/linux/udisks/2-default.nix index 060d9ad1dd3261f8b9158cb50ba75b6bab6710cd..35873b3a062f4e37d9bae3eaf816338144ac3126 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 0000000000000000000000000000000000000000..eeb5440f5104823a1d92b3fae984cbe9cba2051c --- /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/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix index d75410d74d5021d1ee1cd1395bbe55f9eeb28466..0edd2d6e0f45d8fcb384279e482ddb2e91e71085 100644 --- a/pkgs/os-specific/linux/wpa_supplicant/default.nix +++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix @@ -79,6 +79,7 @@ stdenv.mkDerivation rec { patches = [ ./build-fix.patch + ./libressl.patch ]; postInstall = '' diff --git a/pkgs/os-specific/linux/wpa_supplicant/libressl.patch b/pkgs/os-specific/linux/wpa_supplicant/libressl.patch new file mode 100644 index 0000000000000000000000000000000000000000..0de3810daccd2698658ad38127ff540da9e6c19b --- /dev/null +++ b/pkgs/os-specific/linux/wpa_supplicant/libressl.patch @@ -0,0 +1,69 @@ +$OpenBSD: patch-src_crypto_tls_openssl_c,v 1.3 2015/09/29 11:57:54 dcoppa Exp $ + +Compatibility fixes for LibreSSL + +--- a/src/crypto/tls_openssl.c Sun Sep 27 21:02:05 2015 ++++ b/src/crypto/tls_openssl.c Mon Sep 28 13:43:46 2015 +@@ -2229,7 +2229,7 @@ static int tls_parse_pkcs12(struct tls_data *data, SSL + } + + if (certs) { +-#if OPENSSL_VERSION_NUMBER >= 0x10002000L ++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER) + SSL_clear_chain_certs(ssl); + while ((cert = sk_X509_pop(certs)) != NULL) { + X509_NAME_oneline(X509_get_subject_name(cert), buf, +@@ -2247,7 +2247,7 @@ static int tls_parse_pkcs12(struct tls_data *data, SSL + /* Try to continue anyway */ + } + sk_X509_free(certs); +-#ifndef OPENSSL_IS_BORINGSSL ++#if !defined(OPENSSL_IS_BORINGSSL) && !defined(LIBRESSL_VERSION_NUMBER) + res = SSL_build_cert_chain(ssl, + SSL_BUILD_CHAIN_FLAG_CHECK | + SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR); +@@ -2812,7 +2812,7 @@ int tls_connection_get_random(void *ssl_ctx, struct tl + if (conn == NULL || keys == NULL) + return -1; + ssl = conn->ssl; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + if (ssl == NULL || ssl->s3 == NULL || ssl->session == NULL) + return -1; + +@@ -2841,7 +2841,7 @@ int tls_connection_get_random(void *ssl_ctx, struct tl + #ifndef CONFIG_FIPS + static int openssl_get_keyblock_size(SSL *ssl) + { +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + const EVP_CIPHER *c; + const EVP_MD *h; + int md_size; +@@ -2911,7 +2911,7 @@ static int openssl_tls_prf(struct tls_connection *conn + "mode"); + return -1; + #else /* CONFIG_FIPS */ +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + SSL *ssl; + u8 *rnd; + int ret = -1; +@@ -3394,7 +3394,7 @@ int tls_connection_set_cipher_list(void *tls_ctx, stru + + wpa_printf(MSG_DEBUG, "OpenSSL: cipher suites: %s", buf + 1); + +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + #if defined(EAP_FAST) || defined(EAP_FAST_DYNAMIC) || defined(EAP_SERVER_FAST) + if (os_strstr(buf, ":ADH-")) { + /* +@@ -3977,7 +3977,7 @@ static int tls_sess_sec_cb(SSL *s, void *secret, int * + struct tls_connection *conn = arg; + int ret; + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + if (conn == NULL || conn->session_ticket_cb == NULL) + return 0; + diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix index a1a1a2ea1f2df56540517de699055757903fc7e1..6df27eaf328f8f84ffe1f3f5848509df2a04d7b2 100644 --- a/pkgs/servers/computing/slurm/default.nix +++ b/pkgs/servers/computing/slurm/default.nix @@ -1,22 +1,21 @@ -{ 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}"; - version = "14.11.5"; + version = "15-08-5-1"; src = fetchurl { - url = "http://www.schedmd.com/download/latest/slurm-${version}.tar.bz2"; - sha256 = "0xx1q9ximsyyipl0xbj8r7ajsz4xrxik8xmhcb1z9nv0aza1rff2"; + url = "https://github.com/SchedMD/slurm/archive/slurm-${version}.tar.gz"; + 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/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index c44f507f2ead1774badb024b5b8a975c563335f6..a6933653e6055b860b446678a7bf4c29f1ca69b9 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -10,9 +10,7 @@ stdenv.mkDerivation rec { sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws"; }; - patchPhase = '' - sed -i 's/^\t.*run/\t/' Makefile.in - ''; + patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; buildInputs = [ openssl libtool perl libxml2 ]; diff --git a/pkgs/servers/dns/bind/libressl.patch b/pkgs/servers/dns/bind/libressl.patch new file mode 100644 index 0000000000000000000000000000000000000000..b77f24ee429a83df398a1a0fceedfbdb9e431a1d --- /dev/null +++ b/pkgs/servers/dns/bind/libressl.patch @@ -0,0 +1,102 @@ +$OpenBSD: patch-lib_dns_openssl_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ +--- a/lib/dns/openssl_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/openssl_link.c Wed Sep 16 14:01:46 2015 +@@ -88,7 +88,7 @@ entropy_getpseudo(unsigned char *buf, int num) { + return (result == ISC_R_SUCCESS ? 1 : -1); + } + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + static void + entropy_add(const void *buf, int num, double entropy) { + /* +@@ -121,7 +121,7 @@ lock_callback(int mode, int type, const char *file, in + UNLOCK(&locks[type]); + } + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + static unsigned long + id_callback(void) { + return ((unsigned long)isc_thread_self()); +@@ -187,7 +187,7 @@ dst__openssl_init(const char *engine) { + if (result != ISC_R_SUCCESS) + goto cleanup_mutexalloc; + CRYPTO_set_locking_callback(lock_callback); +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + CRYPTO_set_id_callback(id_callback); + #endif + +@@ -287,7 +287,7 @@ dst__openssl_destroy(void) { + CRYPTO_cleanup_all_ex_data(); + #endif + ERR_clear_error(); +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + ERR_remove_state(0); + #endif + ERR_free_strings(); +--- a/lib/dns/dst_openssl.h Wed Sep 16 14:00:47 2015 ++++ b/lib/dns/dst_openssl.h Wed Sep 16 14:02:42 2015 +@@ -36,7 +36,7 @@ + #define USE_ENGINE 1 + #endif + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + /* + * These are new in OpenSSL 1.1.0. BN_GENCB _cb needs to be declared in + * the function like this before the BN_GENCB_new call: +--- a/lib/dns/openssldh_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/openssldh_link.c Wed Sep 16 14:02:06 2015 +@@ -173,7 +173,7 @@ openssldh_generate(dst_key_t *key, int generator, void + DH *dh = NULL; + #if OPENSSL_VERSION_NUMBER > 0x00908000L + BN_GENCB *cb; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BN_GENCB _cb; + #endif + union { +@@ -210,7 +210,7 @@ openssldh_generate(dst_key_t *key, int generator, void + if (dh == NULL) + return (dst__openssl_toresult(ISC_R_NOMEMORY)); + cb = BN_GENCB_new(); +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + if (cb == NULL) { + DH_free(dh); + return (dst__openssl_toresult(ISC_R_NOMEMORY)); +--- a/lib/dns/openssldsa_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/openssldsa_link.c Wed Sep 16 14:02:22 2015 +@@ -359,7 +359,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( + isc_result_t result; + #if OPENSSL_VERSION_NUMBER > 0x00908000L + BN_GENCB *cb; +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BN_GENCB _cb; + #endif + union { +@@ -383,7 +383,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( + if (dsa == NULL) + return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); + cb = BN_GENCB_new(); +-#if OPENSSL_VERSION_NUMBER >= 0x10100000L ++#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + if (cb == NULL) { + DSA_free(dsa); + return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); +$OpenBSD: patch-lib_dns_opensslrsa_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ +--- a/lib/dns/opensslrsa_link.c Wed Sep 16 14:01:23 2015 ++++ b/lib/dns/opensslrsa_link.c Wed Sep 16 14:02:31 2015 +@@ -771,7 +771,7 @@ opensslrsa_generate(dst_key_t *key, int exp, void (*ca + } u; + RSA *rsa = RSA_new(); + BIGNUM *e = BN_new(); +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + BN_GENCB _cb; + #endif + BN_GENCB *cb = BN_GENCB_new(); diff --git a/pkgs/servers/dns/bind/remove-mkdir-var.patch b/pkgs/servers/dns/bind/remove-mkdir-var.patch new file mode 100644 index 0000000000000000000000000000000000000000..d0dcd580c20a52b4e5d79587f17fd470618761dc --- /dev/null +++ b/pkgs/servers/dns/bind/remove-mkdir-var.patch @@ -0,0 +1,12 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -53,8 +53,7 @@ docclean manclean maintainer-clean:: + doc man:: ${MANOBJS} + + installdirs: +- $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \ +- ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir} ++ $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} ${DESTDIR}${sysconfdir} + $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1 + + install:: isc-config.sh installdirs diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index fe60fe2c87dc2134aa0aa1e35d2143dd9934e627..9b2d86715bf780f283cc56b8b36849aeb435cc25 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -14,12 +14,12 @@ assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; stdenv.mkDerivation rec { - version = "2.4.17"; + version = "2.4.18"; name = "apache-httpd-${version}"; src = fetchurl { url = "mirror://apache/httpd/httpd-${version}.tar.bz2"; - sha256 = "165p5qgwyk1dwjypgcx5vb47xadiszs3dw28n2axplw1xifh67ik"; + sha256 = "0k7xm6ldzvakzq39nw6b39190ihlkc28all2gkvckxa1vr8b0i06"; }; # FIXME: -dev depends on -doc diff --git a/pkgs/servers/mail/archiveopteryx/default.nix b/pkgs/servers/mail/archiveopteryx/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..966f90c40f135add2964e8a9e819476c5539b522 --- /dev/null +++ b/pkgs/servers/mail/archiveopteryx/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, openssl, perl, zlib, jam }: +stdenv.mkDerivation rec { + version = "3.2.0"; + name = "archiveopteryx-${version}"; + + src = fetchurl { + url = "http://archiveopteryx.org/download/${name}.tar.bz2"; + sha256 = "0i0zg8di8nbh96qnyyr156ikwcsq1w9b2291bazm5whb351flmqx"; + }; + + nativeBuildInputs = [ jam ]; + buildInputs = [ openssl perl zlib ]; + + preConfigure = ''export PREFIX="$out" ''; + buildPhase = ''jam "-j$NIX_BUILD_CORES" ''; + installPhase = '' + jam install + mkdir -p "$out/share/doc/archiveopteryx" + mv -t "$out/share/doc/archiveopteryx/" "$out"/{bsd.txt,COPYING,README} + ''; + + meta = with stdenv.lib; { + homepage = http://archiveopteryx.org/; + description = "An advanced PostgreSQL-based IMAP/POP server"; + license = licenses.postgresql; + maintainers = [ maintainers.phunehehe ]; + }; +} diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index 9e3b6a749c5b3b2d3e91dddedfa20d86d8af7b1c..816ac1bdb25e2cbfae05e4d15226a8c52c684be0 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 e682ebb1c8175d3b0da2454de5f3628fe4f0c5a5..b300ad5b806d04335ca50f893f4489cb4bfa176e 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/nosql/riak/1.3.1.nix b/pkgs/servers/nosql/riak/1.3.1.nix index e773f6ddcc361a03e597edd91843b715739c30f4..df85044b8d1a7c81b8363a9df9ea7818a5ffec4c 100644 --- a/pkgs/servers/nosql/riak/1.3.1.nix +++ b/pkgs/servers/nosql/riak/1.3.1.nix @@ -1,14 +1,16 @@ -{ stdenv, fetchurl, unzip, erlangR15}: +{ stdenv, fetchurl, fetchFromGitHub, unzip, erlangR15}: let srcs = { - riak = fetchurl { + riak = fetchurl { url = "http://s3.amazonaws.com/downloads.basho.com/riak/1.3/1.3.1/riak-1.3.1.tar.gz"; sha256 = "a69093fc5df1b79f58645048b9571c755e00c3ca14dfd27f9f1cae2c6e628f01"; }; - leveldb = fetchurl { - url = "https://github.com/basho/leveldb/archive/1.3.1.zip"; - sha256 = "dc48ba2b44fca11888ea90695d385c494e1a3abd84a6b266b07fdc160ab2ef64"; + leveldb = fetchFromGitHub { + owner = "basho"; + repo = "leveldb"; + rev = "1.3.1"; + sha256 = "1jvv260ic38657y4lwwcvzmhah8xai594xy19r28gkzlpra1lnbb"; }; }; in @@ -22,11 +24,10 @@ stdenv.mkDerivation rec { patches = [ ./riak-1.3.1.patch ./riak-admin-1.3.1.patch ]; postUnpack = '' - ln -sv ${srcs.leveldb} $sourceRoot/deps/eleveldb/c_src/leveldb.zip - pushd $sourceRoot/deps/eleveldb/c_src/ - unzip leveldb.zip - mv leveldb-* leveldb - cd ../../ + mkdir -p $sourceRoot/deps/eleveldb/c_src/leveldb + cp -r ${srcs.leveldb}/* $sourceRoot/deps/eleveldb/c_src/leveldb + chmod 755 -R $sourceRoot/deps/eleveldb/c_src/leveldb + pushd $sourceRoot/deps/ mkdir riaknostic/deps cp -R lager riaknostic/deps cp -R getopt riaknostic/deps diff --git a/pkgs/servers/sabnzbd/builder.sh b/pkgs/servers/sabnzbd/builder.sh index 3a5c8adb421ee94a8a58f8fb7b12dcb81dad475d..c446891d8dc30582eb2f8cdac25dfe3de7c4f5ca 100644 --- a/pkgs/servers/sabnzbd/builder.sh +++ b/pkgs/servers/sabnzbd/builder.sh @@ -3,14 +3,11 @@ source $stdenv/setup tar xvfz $src mv SABnzbd-* $out -# Create a start script and let wrapProgram with toPythonPath wrap it so that python is started with cheetahTemplate in its importpath (classpath) mkdir $out/bin echo "$python/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd chmod +x $out/bin/sabnzbd -for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i --prefix PYTHONPATH : "$(toPythonPath $python):$(toPythonPath $out):$(toPythonPath $cheetahTemplate):$(toPythonPath $sqlite3)" \ - --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin" -done +wrapPythonProgramsIn $out/bin "$pythonPath" +wrapProgram $out/bin/.sabnzbd-wrapped --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin" echo $out diff --git a/pkgs/servers/sabnzbd/default.nix b/pkgs/servers/sabnzbd/default.nix index 09c0de9c74f1f346720a58f693e7abff3076df64..ee2176ae49a1e31a94f7233c32d5f60244438191 100644 --- a/pkgs/servers/sabnzbd/default.nix +++ b/pkgs/servers/sabnzbd/default.nix @@ -1,20 +1,24 @@ -{stdenv, fetchurl, python, pythonPackages, cheetahTemplate, makeWrapper, par2cmdline, unzip, unrar}: +{stdenv, fetchurl, python, pythonPackages, par2cmdline, unzip, unrar}: stdenv.mkDerivation rec { - name = "sabnzbd-0.7.17"; - + version = "0.7.20"; + name = "sabnzbd-${version}"; + src = fetchurl { - url = mirror://sourceforge/sabnzbdplus/SABnzbd-0.7.17-src.tar.gz; - sha256 = "02gbh3q3qnbwy4xn1hw4i4fyw4j5nkrqy4ak46mxwqgip9ym20d5"; + url = "mirror://sourceforge/sabnzbdplus/SABnzbd-${version}-src.tar.gz"; + sha256 = "0hl7mwgyvm4d68346s7vlv0qlibfh2p2idpyzpjfvk8f79hs9cr0"; }; - buildInputs = [makeWrapper python sqlite3 cheetahTemplate]; - inherit stdenv python cheetahTemplate par2cmdline unzip unrar; - inherit (pythonPackages) sqlite3; + pythonPath = with pythonPackages; [ pyopenssl sqlite3 cheetah ]; + buildInputs = with pythonPackages; [wrapPython]; + inherit python par2cmdline unzip unrar; builder = ./builder.sh; - - meta = { + + meta = with stdenv.lib; { description = "Usenet NZB downloader, par2 repairer and auto extracting server"; + homepage = http://sabnzbd.org; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix index 569eecd4f6e9cf7bb9f86240fea6954d7e255822..ee51ace4b687a9ed88558b7cc8b6b376e07543cd 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/unifi/default.nix b/pkgs/servers/unifi/default.nix index 8fab18c434e4ad2189935ffa41bdfe598f86fc1c..5e647f90de19e01161af5788ffa89435e3b6a0c6 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "4.7.6"; src = fetchurl { - url = "http://dl.ubnt.com/unifi/${version}/UniFi.unix.zip"; + url = "https://www.ubnt.com/downloads/unifi/${version}/UniFi.unix.zip"; sha256 = "0xinrxcbd5gb2jgcvrx3jcslad0f19qrbjzkiir9zjq59sn68gfn"; }; diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix index 89260109e2698718fdcc3a859c5276a090725e47..abcbaa04b8c0f34d07e8f58799be4d2cca247fe7 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/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index b03edff3fa7f12e18400137e04975ac55c3d48cc..e8da348a46103927b47a018403a6a760608bb255 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -434,16 +434,12 @@ in # Patches can be pulled from the server-*-apple branches of: # http://cgit.freedesktop.org/~jeremyhu/xserver/ patches = commonPatches ++ [ - ./darwin/0001-XQuartz-GLX-Use-__glXEnableExtension-to-build-extens.patch ./darwin/0002-sdksyms.sh-Use-CPPFLAGS-not-CFLAGS.patch - ./darwin/0003-Workaround-the-GC-clipping-problem-in-miPaintWindow-.patch ./darwin/0004-Use-old-miTrapezoids-and-miTriangles-routines.patch - ./darwin/0005-fb-Revert-fb-changes-that-broke-XQuartz.patch ./darwin/0006-fb-Revert-fb-changes-that-broke-XQuartz.patch ./darwin/private-extern.patch ./darwin/bundle_main.patch ./darwin/stub.patch - ./darwin/function-pointer-test.patch ]; configureFlags = [ # note: --enable-xquartz is auto @@ -454,9 +450,6 @@ in "--with-bundle-id-prefix=org.nixos.xquartz" "--with-sha1=CommonCrypto" ]; - __impureHostDeps = ["/System/Library" "/usr"]; - NIX_CFLAGS_COMPILE = "-F/System/Library/Frameworks -I/usr/include"; - NIX_CFLAGS_LINK = "-L/usr/lib"; preConfigure = '' ensureDir $out/Applications export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Wno-error" diff --git a/pkgs/shells/bash/bash-4.3-patches.nix b/pkgs/shells/bash/bash-4.3-patches.nix index c994ed636a96e1f42c024010f1c8fe2fb3767883..f84ac836e941917f264bc7f6f4830f465577af09 100644 --- a/pkgs/shells/bash/bash-4.3-patches.nix +++ b/pkgs/shells/bash/bash-4.3-patches.nix @@ -42,5 +42,5 @@ patch: [ (patch "039" "1v3l3vkc3g2b6fjycqwlakr8xhiw6bmw6q0zd6bi0m0m4bnxr55b") (patch "040" "0sypv66vsldmc95gwvf7ylz1k7y37vnvdsjg8ajjr6b2j9mkkfw4") (patch "041" "06ic2gdpbi1afik3wqf9d4vh95if4bz8bmhcgr555621dsb35i2f") -(patch "042" "1bwhssay66n75fy0pxcrwbm032s6fvfg7dblzbrzzn5k38a56nmp") +(patch "042" "06a90k0p6bqc4wk2dsmapna69124an76xvlnlj3xm497vci968dc") ] diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index c4386b1a9fb8ff10a8277cc28b19f4e122c09279..ef3794d5144ce8df379d8c5750e2ee616a705520 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -23,7 +23,6 @@ stdenv.mkDerivation rec { -i "$out/share/fish/functions/seq.fish" \ "$out/share/fish/functions/math.fish" sed -i "s|which |${which}/bin/which |" "$out/share/fish/functions/type.fish" - sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish" sed -i "s|nroff |${groff}/bin/nroff |" "$out/share/fish/functions/__fish_print_help.fish" sed -e "s|gettext |${gettext}/bin/gettext |" \ -e "s|which |${which}/bin/which |" \ @@ -31,6 +30,7 @@ stdenv.mkDerivation rec { substituteInPlace "$out/share/fish/functions/fish_default_key_bindings.fish" \ --replace "clear;" "${ncurses}/bin/clear;" '' + stdenv.lib.optionalString (!stdenv.isDarwin) '' + sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish" sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py" '' + '' sed -i "s|/sbin /usr/sbin||" \ diff --git a/pkgs/shells/grml-zsh-config/default.nix b/pkgs/shells/grml-zsh-config/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..5da96adaabdb83abdae02f63a6fb13bacf4f94bb --- /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/shells/mksh/default.nix b/pkgs/shells/mksh/default.nix index 397b38180ebc4abdd54015573b6f260c1fd2f833..4e1570a3838c3bd0a7a208a10e32da297122c5a9 100644 --- a/pkgs/shells/mksh/default.nix +++ b/pkgs/shells/mksh/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, groff }: -let version = "51"; in +let version = "52"; in stdenv.mkDerivation { name = "mksh-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { "http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" "http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" ]; - sha256 = "1pyscl3w4aw067a5hb8mczy3z545jz1dwx9n2b09k09xydgsmvlz"; + sha256 = "13vnncwfx4zq3yi7llw3p6miw0px1bm5rrps3y1nlfn6sb6zbhj5"; }; buildInputs = [ groff ]; @@ -41,7 +41,7 @@ stdenv.mkDerivation { ''; homepage = "https://www.mirbsd.org/mksh.htm"; license = licenses.free; - maintainers = [ maintainers.AndersonTorres ]; + maintainers = with maintainers; [ AndersonTorres nckx ]; platforms = platforms.unix; }; } diff --git a/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix b/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix index 8168994828731c9ce00b6cc5d30d876a39251460..0d4e656893ff142206a10df913ae4669af1dddd4 100644 --- a/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix @@ -68,7 +68,7 @@ rec { # Copy what we need of clang cp -d ${llvmPackages.clang-unwrapped}/bin/clang $out/bin cp -d ${llvmPackages.clang-unwrapped}/bin/clang++ $out/bin - cp -d ${llvmPackages.clang-unwrapped}/bin/clang-3.6 $out/bin + cp -d ${llvmPackages.clang-unwrapped}/bin/clang-[0-9].[0-9] $out/bin cp -rL ${llvmPackages.clang-unwrapped}/lib/clang $out/lib @@ -150,6 +150,10 @@ rec { ''; allowedReferences = []; + + meta = { + maintainers = [ stdenv.lib.maintainers.copumpkin ]; + }; }; dist = stdenv.mkDerivation { diff --git a/pkgs/tools/X11/xprintidle-ng/default.nix b/pkgs/tools/X11/xprintidle-ng/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..7ddab964436bd97f895ad1feb506224e87dce3e2 --- /dev/null +++ b/pkgs/tools/X11/xprintidle-ng/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, libX11, libXScrnSaver, libXext, gnulib + , autoconf, automake, libtool, gettext, pkgconfig + , git, perl, texinfo, help2man +}: +stdenv.mkDerivation rec { + version = "git-2015-09-01"; + name = "${baseName}-${version}"; + baseName = "xprintidle-ng"; + + buildInputs = [ + libX11 libXScrnSaver libXext gnulib + autoconf automake libtool gettext pkgconfig git perl + texinfo help2man + ]; + src = fetchFromGitHub { + owner = "taktoa"; + repo = "${baseName}"; + rev = "9083ba284d9222541ce7da8dc87d5a27ef5cc592"; + sha256 = "0a5024vimpfrpj6w60j1ad8qvjkrmxiy8w1yijxfwk917ag9rkpq"; + }; + + configurePhase = '' + cp -r "${gnulib}" gnulib + chmod a+rX,u+w -R gnulib + ./bootstrap --gnulib-srcdir=gnulib + ./configure --prefix="$out" + ''; + + meta = { + inherit version; + description = ''A command-line tool to print idle time from libXss''; + license = stdenv.lib.licenses.gpl2 ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix index 5f945309aac0ec175d5ca3154be2174b0be81241..43e361ba6471b6a853ea29d1270565f53e808aa3 100644 --- a/pkgs/tools/admin/simp_le/default.nix +++ b/pkgs/tools/admin/simp_le/default.nix @@ -1,16 +1,16 @@ { stdenv, fetchFromGitHub, pythonPackages }: pythonPackages.buildPythonPackage rec { - name = "simp_le-20151205"; + name = "simp_le-20151207"; src = fetchFromGitHub { owner = "kuba"; repo = "simp_le"; - rev = "976a33830759e66610970f92f6ec1a656a2c8335"; - sha256 = "0bfa5081rmjjg9sii6pn2dskd1wh0dgrf9ic9hpisawrk0y0739i"; + rev = "ac836bc0af988cb14dc0a83dc2039e7fa541b677"; + sha256 = "0r07mlis81n0pmj74wjcvjpi6i3lkzs6hz8iighhk8yymn1a8rbn"; }; - propagatedBuildInputs = with pythonPackages; [ acme cryptography pytz requests2 ]; + propagatedBuildInputs = with pythonPackages; [ acme ]; meta = with stdenv.lib; { homepage = https://github.com/kuba/simp_le; diff --git a/pkgs/tools/archivers/runzip/default.nix b/pkgs/tools/archivers/runzip/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..9b2fd0eda5942d838168833239543a0f6c8ae8f5 --- /dev/null +++ b/pkgs/tools/archivers/runzip/default.nix @@ -0,0 +1,23 @@ +{stdenv, fetchFromGitHub, libzip, autoconf, automake, libtool, m4}: +stdenv.mkDerivation rec { + baseName = "runzip"; + version = "1.4"; + name = "${baseName}-${version}"; + buildInputs = [libzip autoconf automake libtool m4]; + src = fetchFromGitHub { + owner = "vlm"; + repo = "zip-fix-filename-encoding"; + rev = "v${version}"; + sha256 = "0l5zbb5hswxczigvyal877j0aiq3fc01j3gv88bvy7ikyvw3lc07"; + }; + preConfigure = '' + autoreconf -iv + ''; + meta = { + inherit version; + description = ''A tool to convert filename encoding inside a ZIP archive''; + license = stdenv.lib.licenses.bsd2 ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/archivers/zip/default.nix b/pkgs/tools/archivers/zip/default.nix index e4da0236cdfe9a5a5f8983105ca3d72c92ae4de8..585bc72ad967e776a9dd90720db33a28326ba201 100644 --- a/pkgs/tools/archivers/zip/default.nix +++ b/pkgs/tools/archivers/zip/default.nix @@ -13,11 +13,9 @@ stdenv.mkDerivation { sha256 = "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h"; }; - # should be makeFlags on all archs, not changed yet to prevent rebuild - buildFlags="-f unix/Makefile generic"; - makeFlags = if stdenv.isCygwin then "-f unix/Makefile ${if stdenv.isCygwin then "cygwin" else "generic"}" else null; - - installFlags="-f unix/Makefile prefix=$(out) INSTALL=cp"; + makefile = "unix/Makefile"; + buildFlags = if stdenv.isCygwin then "cygwin" else "generic"; + installFlags = "prefix=$(out) INSTALL=cp"; patches = if (enableNLS && !stdenv.isCygwin) then [ ./natspec-gentoo.patch.bz2 ] else []; diff --git a/pkgs/tools/audio/beets/alternatives-plugin.nix b/pkgs/tools/audio/beets/alternatives-plugin.nix new file mode 100644 index 0000000000000000000000000000000000000000..1b0c9b3992b97db2436c45fed99c7e25bde5d1a1 --- /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 123b183f2d30ba20e30eb293ebf4b934bff41025..35a69262acdefc9eb95e7f6200f874c85de594aa 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 d852ea6fecaa7b713c0bd20abb054ed83db5fbe6..538f9e9330398cf93f524a088a80cfffb66c925b 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/cd-dvd/brasero/default.nix b/pkgs/tools/cd-dvd/brasero/default.nix index d7773b0ba0cceabfaaa100fc8385704ddcd09fd8..3185242f5ce4d6790460a6defac4f330bceb383a 100644 --- a/pkgs/tools/cd-dvd/brasero/default.nix +++ b/pkgs/tools/cd-dvd/brasero/default.nix @@ -1,15 +1,11 @@ { stdenv, fetchurl, pkgconfig, gtk3, itstool, gst_all_1, libxml2, libnotify -, libcanberra_gtk3, intltool, gnome3, makeWrapper, dvdauthor, cdrdao -, dvdplusrwtools, cdrtools, libdvdcss }: +, libcanberra_gtk3, intltool, makeWrapper, dvdauthor, cdrdao +, dvdplusrwtools, cdrtools, libdvdcss, wrapGAppsHook }: let major = "3.12"; minor = "0"; - GST_PLUGIN_PATH = stdenv.lib.makeSearchPath "lib/gstreamer-1.0" [ - gst_all_1.gst-plugins-base - gst_all_1.gst-plugins-good - gst_all_1.gst-plugins-bad - gst_all_1.gst-libav ]; + binpath = stdenv.lib.makeSearchPath "bin" [ dvdauthor cdrdao dvdplusrwtools cdrtools ]; in stdenv.mkDerivation rec { version = "${major}.${minor}"; @@ -20,13 +16,12 @@ in stdenv.mkDerivation rec { sha256 = "68fef2699b772fa262d855dac682100dbfea05563a7e4056eff8fe6447aec2fc"; }; - propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard dvdauthor - cdrdao dvdplusrwtools cdrtools ]; + nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook ]; - buildInputs = [ pkgconfig gtk3 itstool libxml2 libnotify libcanberra_gtk3 - intltool gnome3.gsettings_desktop_schemas makeWrapper libdvdcss - gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.dconf - gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad ]; + buildInputs = [ gtk3 libxml2 libnotify libcanberra_gtk3 libdvdcss + gst_all_1.gstreamer gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad + gst_all_1.gst-plugins-ugly gst_all_1.gst-libav ]; # brasero checks that the applications it uses aren't symlinks, but this # will obviously not work on nix @@ -36,16 +31,10 @@ in stdenv.mkDerivation rec { "--with-girdir=$out/share/gir-1.0" "--with-typelibdir=$out/lib/girepository-1.0" ]; + NIX_CFLAGS_LINK = [ "-ldvdcss" ]; + preFixup = '' - for f in $out/bin/* $out/libexec/*; do - wrapProgram "$f" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ - --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ - --prefix GST_PLUGIN_PATH : "${GST_PLUGIN_PATH}" \ - --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" \ - --prefix LD_LIBRARY_PATH : ${libdvdcss}/lib - done - rm $out/share/icons/hicolor/icon-theme.cache + gappsWrapperArgs+=(--prefix PATH : "${binpath}") ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix index 101d69c0903b51af74eb7df794aa20c6b8d775d1..a98ce2088bd0efb6ff35990f76633f75e5455ebc 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/default.nix +++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix @@ -1,16 +1,20 @@ -{ stdenv, fetchurl, pkgconfig, which, gettext, intltool +{ stdenv, fetchurl, pkgconfig, gettext, which , glib, gtk2 , enableSoftening ? true }: +let version = "0.79.5"; in stdenv.mkDerivation rec { - name = "dvdisaster-0.72.6"; + name = "dvdisaster-${version}"; src = fetchurl { url = "http://dvdisaster.net/downloads/${name}.tar.bz2"; - sha256 = "e9787dea39aeafa38b26604752561bc895083c17b588489d857ac05c58be196b"; + sha256 = "0f8gjnia2fxcbmhl8b3qkr5b7idl8m855dw7xw2fnmbqwvcm6k4w"; }; + nativeBuildInputs = [ gettext pkgconfig which ]; + buildInputs = [ glib gtk2 ]; + patches = stdenv.lib.optional enableSoftening [ ./encryption.patch ./dvdrom.patch @@ -21,13 +25,38 @@ stdenv.mkDerivation rec { sed -i 's/dvdisaster48.png/dvdisaster/' contrib/dvdisaster.desktop ''; - # Explicit --docdir= is required for on-line help to work: - configureFlags = [ "--docdir=$out/share/doc" ]; + configureFlags = [ + # Explicit --docdir= is required for on-line help to work: + "--docdir=$out/share/doc" + "--with-nls=yes" + "--with-embedded-src-path=no" + ] ++ stdenv.lib.optional (builtins.elem stdenv.system + stdenv.lib.platforms.x86_64) "--with-sse2=yes"; - buildInputs = [ - pkgconfig which gettext intltool - glib gtk2 - ]; + enableParallelBuilding = true; + + doCheck = true; + checkPhase = '' + pushd regtest + + mkdir -p "$TMP"/{log,regtest} + substituteInPlace common.bash \ + --replace /dev/shm "$TMP/log" \ + --replace /var/tmp "$TMP" + + for test in *.bash; do + case "$test" in + common.bash) + echo "Skipping $test" + continue ;; + *) + echo "Running $test" + ./"$test" + esac + done + + popd + ''; postInstall = '' mkdir -pv $out/share/applications @@ -35,11 +64,13 @@ stdenv.mkDerivation rec { for size in 16 24 32 48 64; do mkdir -pv $out/share/icons/hicolor/"$size"x"$size"/apps/ - cp contrib/dvdisaster"$size".png $out/share/icons/hicolor/"$size"x"$size"/apps/dvdisaster.png + cp contrib/dvdisaster"$size".png \ + $out/share/icons/hicolor/"$size"x"$size"/apps/dvdisaster.png done ''; meta = with stdenv.lib; { + inherit version; homepage = http://dvdisaster.net/; description = "Data loss/scratch/aging protection for CD/DVD media"; longDescription = '' @@ -48,8 +79,8 @@ stdenv.mkDerivation rec { data which is used to recover unreadable sectors if the disc becomes damaged at a later time. ''; - license = licenses.gpl2; + license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ jgeerds ]; + maintainers = with maintainers; [ jgeerds nckx ]; }; } diff --git a/pkgs/tools/cd-dvd/dvdisaster/encryption.patch b/pkgs/tools/cd-dvd/dvdisaster/encryption.patch index a9383cb13cfe47352899b73aa8dff1302ec7761f..21e35889382dc742b78b347a80a9563e73cff586 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/encryption.patch +++ b/pkgs/tools/cd-dvd/dvdisaster/encryption.patch @@ -1,21 +1,19 @@ Author: n/a Description: Disables to skip on encrypted disks (e.g. DVD with CSS-Encryption). -Index: dvdisaster/scsi-layer.c -=================================================================== ---- dvdisaster.orig/scsi-layer.c 2012-04-08 21:51:10.995588783 +0900 -+++ dvdisaster/scsi-layer.c 2012-04-08 21:51:29.259678075 +0900 -@@ -2693,11 +2693,12 @@ - return NULL; +diff -Naur dvdisaster-0.79.5.orig/scsi-layer.c dvdisaster-0.79.5/scsi-layer.c +--- dvdisaster-0.79.5.orig/scsi-layer.c 2015-10-28 21:56:57.000000000 +0100 ++++ dvdisaster-0.79.5/scsi-layer.c 2015-12-27 06:19:32.012253661 +0100 +@@ -2712,12 +2712,6 @@ } } -- -+/* - if(dh->mainType == DVD && query_copyright(dh)) - { CloseDevice(dh); - Stop(_("This software does not support encrypted media.\n")); - } -+*/ +- if(dh->mainType == DVD && query_copyright(dh)) +- { CloseImage(image); +- Stop(_("This software does not support encrypted media.\n")); +- return NULL; +- } +- /* Create the bitmap of simulated defects */ + if(Closure->simulateDefects) diff --git a/pkgs/tools/cd-dvd/xorriso/default.nix b/pkgs/tools/cd-dvd/xorriso/default.nix index 29d483f725faefc9a3b5d23019cb94848114c546..8dd4c709b016d1ccc5b80c2a4cb9b020a577024b 100644 --- a/pkgs/tools/cd-dvd/xorriso/default.nix +++ b/pkgs/tools/cd-dvd/xorriso/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }: stdenv.mkDerivation rec { - name = "xorriso-1.4.0"; + name = "xorriso-1.4.2"; src = fetchurl { url = "mirror://gnu/xorriso/${name}.tar.gz"; - sha256 = "0mhfxn2idkrw1i65a5y4gnb1fig85zpnszb9ax7w4a2v062y1l8b"; + sha256 = "1cq4a0904lnz6nygbgarnlq49cz4qnfdyvz90s3nfk5as7gbwhr8"; }; doCheck = true; diff --git a/pkgs/tools/compression/pixz/default.nix b/pkgs/tools/compression/pixz/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..8572221572c1b71eb68b25b9bad7515c2abd4594 --- /dev/null +++ b/pkgs/tools/compression/pixz/default.nix @@ -0,0 +1,36 @@ +{ + stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig + , asciidoc, libxslt, libxml2, docbook_xml_dtd_45, docbook_xml_xslt + , libarchive, lzma +}: +stdenv.mkDerivation rec { + baseName = "pixz"; + version = "1.0.6"; + name = "${baseName}-${version}"; + + buildInputs = [ + autoconf automake libtool pkgconfig asciidoc libxslt libxml2 + docbook_xml_dtd_45 docbook_xml_xslt + libarchive lzma + ]; + preBuild = '' + echo "XML_CATALOG_FILES='$XML_CATALOG_FILES'" + ''; + src = fetchFromGitHub { + owner = "vasi"; + repo = baseName; + rev = "v${version}"; + sha256 = "0q61wqg2yxrgd4nc7256mf7izp92is29ll3rax1cxr6fj9jrd8b7"; + }; + preConfigure = '' + ./autogen.sh + ''; + + meta = { + inherit version; + description = ''A parallel compressor/decompressor for xz format''; + license = stdenv.lib.licenses.bsd2; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/tools/filesystems/9pfs/default.nix b/pkgs/tools/filesystems/9pfs/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..c75cc45170af1a8b147b8493abd0360bef8c595d --- /dev/null +++ b/pkgs/tools/filesystems/9pfs/default.nix @@ -0,0 +1,30 @@ +{ lib, stdenv, fetchFromGitHub, fuse }: + +stdenv.mkDerivation rec { + name = "9pfs"; + + src = fetchFromGitHub { + owner = "spewspew"; + repo = "9pfs"; + rev = "7f4ca4cd750d650c1215b92ac3cc2a28041960e4"; + sha256 = "007s2idsn6bspmfxv1qabj39ggkgvn6gwdbhczwn04lb4c6gh3xc"; + }; + + preConfigure = + '' + substituteInPlace Makefile --replace '-g bin' "" + installFlagsArray+=(BIN=$out/bin MAN=$out/share/man/man1) + mkdir -p $out/bin $out/share/man/man1 + ''; + + buildInputs = [ fuse ]; + + enableParallelBuilding = true; + + meta = { + homepage = https://github.com/spewspew/9pfs; + description = "FUSE-based client of the 9P network filesystem protocol"; + maintainers = [ lib.maintainers.eelco ]; + platforms = lib.platforms.linux; + }; +} diff --git a/pkgs/tools/filesystems/duperemove/default.nix b/pkgs/tools/filesystems/duperemove/default.nix index 4836e39d43938021c41ac82a2035ddc7393803f8..146414a47e10830c24d2177820bb853f9dc0f157 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 f8a0d09bc52a8eabb87049c49e2c7f94687db4ed..507c5e7a6c0ec068f74ca0353b512ca526396e29 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/filesystems/ntfs-3g/default.nix b/pkgs/tools/filesystems/ntfs-3g/default.nix index f10e05ac48618790a7fd3e1caa44d3e12b3b1ce0..fd714b8905468476c48694be23ce6842a6e54249 100644 --- a/pkgs/tools/filesystems/ntfs-3g/default.nix +++ b/pkgs/tools/filesystems/ntfs-3g/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = http://www.tuxera.com/community/; - description = "FUSE-base NTFS driver with full write support"; + description = "FUSE-based NTFS driver with full write support"; maintainers = [ maintainers.urkud ]; platforms = platforms.linux; license = licenses.gpl2Plus; # and (lib)fuse-lite under LGPL2+ diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix index 08799d3e712b0bde12a5aeab181912f14059b4f9..2b78f1fba40565cfd58507864839b3f7685bfd43 100644 --- a/pkgs/tools/graphics/gnuplot/default.nix +++ b/pkgs/tools/graphics/gnuplot/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline -, withTeXLive ? false, texLive +, withTeXLive ? false, texlive , withLua ? false, lua , emacs ? null , libX11 ? null @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ] - ++ lib.optional withTeXLive texLive + ++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; }) ++ lib.optional withLua lua ++ lib.optionals withX [ libX11 libXpm libXt libXaw ] ++ lib.optional withQt [ qt ] diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix index ee44ff975bb3de22baf443eb143c70ba86569d91..470a2efdf6bac46d4330cd0d7746b6674a6d026a 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 01fb5d8299479754d49f48218b3cda7aaa5367b0..9b983450f4804c17a6e5f9dcf5477d34cd37dc6d 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 10309d208d8193a358e5c51ab31718f9e512cc00..52ca99b976455f46e09c50bb4e679402162c8c33 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/graphics/vips/default.nix b/pkgs/tools/graphics/vips/default.nix index a411080c3908b357031f8b922f6513255deb0fc2..153611e0587476affb9f3dae3bf9e2816a1398b1 100644 --- a/pkgs/tools/graphics/vips/default.nix +++ b/pkgs/tools/graphics/vips/default.nix @@ -4,11 +4,11 @@ }: stdenv.mkDerivation rec { - name = "vips-8.0.2"; + name = "vips-8.1.1"; src = fetchurl { url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz"; - sha256 = "0fpshv71sxbkbycxgd2hvwn7fyq9rm0rsgq0b1zld1an88mi0v8y"; + sha256 = "014sgpqj832vl5k212jv25sjakrsifnspjfclywpmn7cwaqwjlvx"; }; buildInputs = diff --git a/pkgs/tools/misc/antimicro/default.nix b/pkgs/tools/misc/antimicro/default.nix index a2eed9139306458853e605e3a18765a3ca320c60..1d7984ac11da49720f76dcfe3020e5894a66e498 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/bdf2psf/default.nix b/pkgs/tools/misc/bdf2psf/default.nix index 342c014faaaef1f47c4d7ee9a4cf75df46bdfcfd..192aed7489d3ef95c7b5f2c914d425ee984fa68f 100644 --- a/pkgs/tools/misc/bdf2psf/default.nix +++ b/pkgs/tools/misc/bdf2psf/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "bdf2psf-${version}"; - version = "1.132"; + version = "1.134"; src = fetchurl { url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; - sha256 = "01r8v6qi6klsgi66ld86c78cdz308mywrm9j101d73nsxgx6qhzz"; + sha256 = "1am5ka5qrbh60jjihzqac03ii3ydprvqm3w54dc55a0zwl61njsz"; }; buildInputs = [ dpkg ]; @@ -21,12 +21,14 @@ stdenv.mkDerivation rec { cp -r . $out "; - meta = { + meta = with stdenv.lib; { description = "BDF to PSF converter"; homepage = https://packages.debian.org/sid/bdf2psf; longDescription = '' Font converter to generate console fonts from BDF source fonts ''; - license = stdenv.lib.licenses.gpl2; + license = licenses.gpl2; + maintainers = with maintainers; [ rnhmjoj ]; + platforms = platforms.unix; }; -} \ No newline at end of file +} diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index e2b8c70c6e278fe25b813330dface422733624f4..ab00d52c7779ba941084f6de4e954d07e6416550 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/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index e6c672d83441d7258b8d320614f923a709d942f5..7fe21e8b3474b4790ba36838625c92c96d08d31c 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -1,37 +1,34 @@ { stdenv, fetchgit, pythonPackages, docutils -, acl, binutils, bzip2, cdrkit, cpio, diffutils, e2fsprogs, file, gettext -, gnupg, gzip, pdftk, poppler_utils, rpm, sqlite, squashfsTools, unzip, vim, xz +, acl, binutils, bzip2, cbfstool, cdrkit, cpio, diffutils, e2fsprogs, file, fpc, gettext, ghc, gnupg1 +, gzip, jdk, libcaca, mono, pdftk, poppler_utils, rpm, sng, sqlite, squashfsTools, unzip, vim, xz }: pythonPackages.buildPythonPackage rec { name = "diffoscope-${version}"; - version = "29"; + version = "44"; namePrefix = ""; src = fetchgit { url = "git://anonscm.debian.org/reproducible/diffoscope.git"; rev = "refs/tags/${version}"; - sha256 = "0q7hx2wm9gvzl1f7iilr9pjwpv8i2anscqan7cgk80v90s2pakrf"; + sha256 = "1sisdmh1bl62b16yfjy9mxxdfzhskrabp0l3pl1kxn7db0c4vpac"; }; postPatch = '' - # Different pkg name in debian - sed -i setup.py -e "s@'magic'@'Magic-file-extensions'@" - # Upstream doesn't provide a PKG-INFO file - sed -i setup.py -e "/'rpm',/d" + sed -i setup.py -e "/'rpm-python',/d" ''; - # Still missing these tools: ghc javap showttf sng - propagatedBuildInputs = (with pythonPackages; [ debian libarchive-c magic ssdeep ]) ++ - [ acl binutils bzip2 cdrkit cpio diffutils e2fsprogs file gettext gnupg - gzip pdftk poppler_utils rpm sqlite squashfsTools unzip vim xz ]; + # Still missing these tools: enjarify otool(maybe OS X only) showttf + # Also these libraries: python3-guestfs + propagatedBuildInputs = (with pythonPackages; [ debian libarchive-c python_magic tlsh ]) ++ + [ acl binutils bzip2 cbfstool cdrkit cpio diffutils e2fsprogs file fpc gettext ghc gnupg1 + gzip jdk libcaca mono pdftk poppler_utils rpm sng sqlite squashfsTools unzip vim xz ]; doCheck = false; # Calls 'mknod' in squashfs tests, which needs root postInstall = '' - mv $out/bin/diffoscope.py $out/bin/diffoscope mkdir -p $out/share/man/man1 ${docutils}/bin/rst2man.py debian/diffoscope.1.rst $out/share/man/man1/diffoscope.1 ''; diff --git a/pkgs/tools/misc/dynamic-colors/default.nix b/pkgs/tools/misc/dynamic-colors/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..b587afb645c22fcd1d0ed707bf0130f86060bb1c --- /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 0000000000000000000000000000000000000000..7462ed0e3afad6ca2a72c8e7f47f2fec1cf8838c --- /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/fontforge/default.nix b/pkgs/tools/misc/fontforge/default.nix index 3ecb886419f2806db2adba7ce8b65aad27f34ffe..9ee3eb23e0e95295b22cafdf44e133345f7b8fac 100644 --- a/pkgs/tools/misc/fontforge/default.nix +++ b/pkgs/tools/misc/fontforge/default.nix @@ -29,10 +29,9 @@ stdenv.mkDerivation { buildInputs = [ git autoconf automake gnum4 libtool perl pkgconfig gettext uthash python freetype zlib glib libungif libpng libjpeg libtiff libxml2 + pango ] - ++ lib.optionals withGTK [ gtk2 ] - # I'm not sure why pango doesn't seem necessary on Linux - ++ lib.optionals stdenv.isDarwin [ pango ]; + ++ lib.optionals withGTK [ gtk2 ]; configureFlags = lib.optionals (!withPython) [ "--disable-python-scripting" "--disable-python-extension" ] diff --git a/pkgs/tools/misc/gibo/default.nix b/pkgs/tools/misc/gibo/default.nix new file mode 100644 index 0000000000000000000000000000000000000000..67c8449469203e4291e4015e4800143388b8e0fb --- /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|\ %p", result); + return result; + } ++#endif + ++#ifdef HAVE_SSLv3_server_method + const SSL_METHOD *sycSSLv3_server_method(void) { + const SSL_METHOD *result; + Debug("SSLv3_server_method()"); +@@ -70,6 +73,7 @@ const SSL_METHOD *sycSSLv3_server_method(void) { + Debug1("SSLv3_server_method() -> %p", result); + return result; + } ++#endif + + const SSL_METHOD *sycSSLv23_client_method(void) { + const SSL_METHOD *result; +@@ -331,14 +335,6 @@ void sycSSL_free(SSL *ssl) { + return; + } + +-int sycRAND_egd(const char *path) { +- int result; +- Debug1("RAND_egd(\"%s\")", path); +- result = RAND_egd(path); +- Debug1("RAND_egd() -> %d", result); +- return result; +-} +- + DH *sycPEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u) { + DH *result; + Debug4("PEM_read_bio_DHparams(%p, %p, %p, %p)", +@@ -375,7 +371,7 @@ int sycFIPS_mode_set(int onoff) { + } + #endif /* WITH_FIPS */ + +-#if OPENSSL_VERSION_NUMBER >= 0x00908000L ++#if (OPENSSL_VERSION_NUMBER >= 0x00908000L) && !defined(OPENSSL_NO_COMP) + const COMP_METHOD *sycSSL_get_current_compression(SSL *ssl) { + const COMP_METHOD *result; + Debug1("SSL_get_current_compression(%p)", ssl); +--- a/sslcls.h Sat Jan 24 11:15:22 2015 ++++ b/sslcls.h Mon Apr 13 15:06:25 2015 +@@ -47,7 +47,6 @@ X509 *sycSSL_get_peer_certificate(SSL *ssl); + int sycSSL_shutdown(SSL *ssl); + void sycSSL_CTX_free(SSL_CTX *ctx); + void sycSSL_free(SSL *ssl); +-int sycRAND_egd(const char *path); + + DH *sycPEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u); + +@@ -55,7 +54,7 @@ BIO *sycBIO_new_file(const char *filename, const char + + int sycFIPS_mode_set(int onoff); + +-#if OPENSSL_VERSION_NUMBER >= 0x00908000L ++#if (OPENSSL_VERSION_NUMBER >= 0x00908000L) && !defined(OPENSSL_NO_COMP) + const COMP_METHOD *sycSSL_get_current_compression(SSL *ssl); + const COMP_METHOD *sycSSL_get_current_expansion(SSL *ssl); + const char *sycSSL_COMP_get_name(const COMP_METHOD *comp); +@@ -98,7 +97,6 @@ const char *sycSSL_COMP_get_name(const COMP_METHOD *co + #define sycSSL_shutdown(s) SSL_shutdown(s) + #define sycSSL_CTX_free(c) SSL_CTX_free(c) + #define sycSSL_free(s) SSL_free(s) +-#define sycRAND_egd(p) RAND_egd(p) + + #define sycPEM_read_bio_DHparams(b,x,p,u) PEM_read_bio_DHparams(b,x,p,u) + +--- a/xio-openssl.c Sat Jan 24 15:33:42 2015 ++++ b/xio-openssl.c Mon Apr 13 14:59:12 2015 +@@ -108,7 +108,6 @@ const struct optdesc opt_openssl_key = { "open + const struct optdesc opt_openssl_dhparam = { "openssl-dhparam", "dh", OPT_OPENSSL_DHPARAM, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; + const struct optdesc opt_openssl_cafile = { "openssl-cafile", "cafile", OPT_OPENSSL_CAFILE, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; + const struct optdesc opt_openssl_capath = { "openssl-capath", "capath", OPT_OPENSSL_CAPATH, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; +-const struct optdesc opt_openssl_egd = { "openssl-egd", "egd", OPT_OPENSSL_EGD, GROUP_OPENSSL, PH_SPEC, TYPE_FILENAME, OFUNC_SPEC }; + const struct optdesc opt_openssl_pseudo = { "openssl-pseudo", "pseudo", OPT_OPENSSL_PSEUDO, GROUP_OPENSSL, PH_SPEC, TYPE_BOOL, OFUNC_SPEC }; + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + const struct optdesc opt_openssl_compress = { "openssl-compress", "compress", OPT_OPENSSL_COMPRESS, GROUP_OPENSSL, PH_SPEC, TYPE_STRING, OFUNC_SPEC }; +@@ -147,7 +146,7 @@ int xio_reset_fips_mode(void) { + static void openssl_conn_loginfo(SSL *ssl) { + Notice1("SSL connection using %s", SSL_get_cipher(ssl)); + +-#if OPENSSL_VERSION_NUMBER >= 0x00908000L ++#if (OPENSSL_VERSION_NUMBER >= 0x00908000L) && !defined(OPENSSL_NO_COMP) + { + const COMP_METHOD *comp, *expansion; + +@@ -722,7 +721,6 @@ int + char *opt_dhparam = NULL; /* file name of DH params */ + char *opt_cafile = NULL; /* certificate authority file */ + char *opt_capath = NULL; /* certificate authority directory */ +- char *opt_egd = NULL; /* entropy gathering daemon socket path */ + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + char *opt_compress = NULL; /* compression method */ + #endif +@@ -741,7 +739,6 @@ int + retropt_string(opts, OPT_OPENSSL_CAPATH, &opt_capath); + retropt_string(opts, OPT_OPENSSL_KEY, &opt_key); + retropt_string(opts, OPT_OPENSSL_DHPARAM, &opt_dhparam); +- retropt_string(opts, OPT_OPENSSL_EGD, &opt_egd); + retropt_bool(opts,OPT_OPENSSL_PSEUDO, &opt_pseudo); + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + retropt_string(opts, OPT_OPENSSL_COMPRESS, &opt_compress); +@@ -877,10 +874,6 @@ int + } + } + +- if (opt_egd) { +- sycRAND_egd(opt_egd); +- } +- + if (opt_pseudo) { + long int randdata; + /* initialize libc random from actual microseconds */ +@@ -1098,7 +1091,7 @@ static int openssl_SSL_ERROR_SSL(int level, const char + if (e == ((ERR_LIB_RAND<<24)| + (RAND_F_SSLEAY_RAND_BYTES<<12)| + (RAND_R_PRNG_NOT_SEEDED)) /*0x24064064*/) { +- Error("too few entropy; use options \"egd\" or \"pseudo\""); ++ Error("too few entropy; use option \"pseudo\""); + stat = STAT_NORETRY; + } else { + Msg2(level, "%s(): %s", funcname, ERR_error_string(e, buf)); +--- a/xio-openssl.h Sun Jun 23 07:16:48 2013 ++++ b/xio-openssl.h Sat Apr 19 15:58:21 2014 +@@ -21,7 +21,6 @@ extern const struct optdesc opt_openssl_key; + extern const struct optdesc opt_openssl_dhparam; + extern const struct optdesc opt_openssl_cafile; + extern const struct optdesc opt_openssl_capath; +-extern const struct optdesc opt_openssl_egd; + extern const struct optdesc opt_openssl_pseudo; + #if OPENSSL_VERSION_NUMBER >= 0x00908000L + extern const struct optdesc opt_openssl_compress; +--- a/xioopts.c Sat Jan 24 11:15:22 2015 ++++ b/xioopts.c Mon Apr 13 15:06:25 2015 +@@ -412,7 +412,6 @@ const struct optname optionnames[] = { + #ifdef ECHOPRT + IF_TERMIOS("echoprt", &opt_echoprt) + #endif +- IF_OPENSSL("egd", &opt_openssl_egd) + IF_ANY ("end-close", &opt_end_close) + IF_TERMIOS("eof", &opt_veof) + IF_TERMIOS("eol", &opt_veol) +@@ -1102,7 +1101,6 @@ const struct optname optionnames[] = { + IF_OPENSSL("openssl-compress", &opt_openssl_compress) + #endif + IF_OPENSSL("openssl-dhparam", &opt_openssl_dhparam) +- IF_OPENSSL("openssl-egd", &opt_openssl_egd) + #if WITH_FIPS + IF_OPENSSL("openssl-fips", &opt_openssl_fips) + #endif +--- a/xioopts.h Sat Jan 24 11:15:22 2015 ++++ b/xioopts.h Mon Apr 13 15:06:25 2015 +@@ -478,7 +478,6 @@ enum e_optcode { + OPT_OPENSSL_COMPRESS, + #endif + OPT_OPENSSL_DHPARAM, +- OPT_OPENSSL_EGD, + OPT_OPENSSL_FIPS, + OPT_OPENSSL_KEY, + OPT_OPENSSL_METHOD, diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix index 941acbc016ff8514109cb0ddd95d9fd79d9310d9..b9e8a5f4a75dea572becbe1c0385842c43f8cd6f 100644 --- a/pkgs/tools/networking/wget/default.nix +++ b/pkgs/tools/networking/wget/default.nix @@ -3,11 +3,11 @@ , libiconv, libpsl, openssl ? null }: stdenv.mkDerivation rec { - name = "wget-1.17"; + name = "wget-1.17.1"; src = fetchurl { url = "mirror://gnu/wget/${name}.tar.xz"; - sha256 = "11xvs919a8xr595hs6hk323rkk7yshyfdfyfdhlahagkrcxdcsdx"; + sha256 = "1jcpvl5sxb2ag8yahpy370c5jlfb097a21k2mhsidh4wxdhrnmgy"; }; patches = [ ./remove-runtime-dep-on-openssl-headers.patch ]; diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 9006785c3fcc591dd8069d1eaf5df19b4094f2c3..0bbb70bef116d3d5d62ff7493fb503e0687623f9 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -97,10 +97,10 @@ in rec { }; nixUnstable = lib.lowPrio (common rec { - name = "nix-1.11pre4334_7431932"; + name = "nix-1.11pre4345_b8258a4"; src = fetchurl { - url = "http://hydra.nixos.org/build/28747184/download/4/${name}.tar.xz"; - sha256 = "ccb0c5be03b9af1bf89e79758868b0cd62c79fd7a0f0791cdb99df86e4240fc4"; + url = "http://hydra.nixos.org/build/29615957/download/4/${name}.tar.xz"; + sha256 = "06944da78e46d8f2cbeeb02c1ab3127a06935e984bcf7a972041c7d91814f0f2"; }; }); diff --git a/pkgs/tools/package-management/nixops/default.nix b/pkgs/tools/package-management/nixops/default.nix index 12e1989525d9a8f6dfbe19172cec840ce46635d0..4388cbc5b3da63ef90630cd81c102194935dc9b6 100644 --- a/pkgs/tools/package-management/nixops/default.nix +++ b/pkgs/tools/package-management/nixops/default.nix @@ -1,43 +1,9 @@ -{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh }: - -pythonPackages.buildPythonPackage rec { - name = "nixops-1.3"; - namePrefix = ""; +{ callPackage, fetchurl }: +callPackage ./generic.nix (rec { + version = "1.3"; src = fetchurl { - url = "http://nixos.org/releases/nixops/${name}/${name}.tar.bz2"; + url = "http://nixos.org/releases/nixops/nixops/nixops-${version}.tar.bz2"; sha256 = "d80b0fe3bb31bb84a8545f9ea804ec8137172c8df44f03326ed7639e5a4bad55"; }; - - buildInputs = [ libxslt ]; - - pythonPath = - [ pythonPackages.prettytable - pythonPackages.boto - pythonPackages.sqlite3 - pythonPackages.hetzner - pythonPackages.libcloud - ]; - - doCheck = false; - - postInstall = - '' - make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \ - docdir=$out/share/doc/nixops mandir=$out/share/man - - mkdir -p $out/share/nix/nixops - cp -av "nix/"* $out/share/nix/nixops - - # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL - # the version of openssh is causing errors when have big networks (40+) - wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin" - ''; - - meta = { - homepage = https://github.com/NixOS/nixops; - description = "NixOS cloud provisioning and deployment tool"; - maintainers = [ lib.maintainers.eelco lib.maintainers.rob ]; - platforms = lib.platforms.unix; - }; -} +}) diff --git a/pkgs/tools/package-management/nixops/generic.nix b/pkgs/tools/package-management/nixops/generic.nix new file mode 100644 index 0000000000000000000000000000000000000000..b9b9eee8d16047b03afa7a6e20ec93258bdef863 --- /dev/null +++ b/pkgs/tools/package-management/nixops/generic.nix @@ -0,0 +1,43 @@ +{ lib, pythonPackages, fetchurl, libxslt, docbook5_xsl, openssh +# version args +, src, version +}: + +pythonPackages.buildPythonPackage { + name = "nixops-${version}"; + namePrefix = ""; + + src = src; + + buildInputs = [ libxslt ]; + + pythonPath = + [ pythonPackages.prettytable + pythonPackages.boto + pythonPackages.sqlite3 + pythonPackages.hetzner + pythonPackages.libcloud + ]; + + doCheck = false; + + postInstall = + '' + make -C doc/manual install nixops.1 docbookxsl=${docbook5_xsl}/xml/xsl/docbook \ + docdir=$out/share/doc/nixops mandir=$out/share/man + + mkdir -p $out/share/nix/nixops + cp -av "nix/"* $out/share/nix/nixops + + # Add openssh to nixops' PATH. On some platforms, e.g. CentOS and RHEL + # the version of openssh is causing errors when have big networks (40+) + wrapProgram $out/bin/nixops --prefix PATH : "${openssh}/bin" + ''; + + meta = { + homepage = https://github.com/NixOS/nixops; + description = "NixOS cloud provisioning and deployment tool"; + maintainers = [ lib.maintainers.eelco lib.maintainers.rob ]; + platforms = lib.platforms.unix; + }; +} diff --git a/pkgs/tools/package-management/nixops/unstable.nix b/pkgs/tools/package-management/nixops/unstable.nix new file mode 100644 index 0000000000000000000000000000000000000000..40d56518b3dce9d6995f6c3570467d1986a75dca --- /dev/null +++ b/pkgs/tools/package-management/nixops/unstable.nix @@ -0,0 +1,9 @@ +{ callPackage, fetchurl }: + +callPackage ./generic.nix (rec { + version = "2015-12-18"; + src = fetchurl { + url = "http://hydra.nixos.org/build/29118371/download/2/nixops-1.3.1pre1673_a0d5681.tar.bz2"; + sha256 = "177lnlfz32crcc0gjmh1gn5y2xs142kmb4b68k4raxcxxw118kw9"; + }; +}) diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index 0397723a2252de38a810c29904ac5a46c02cd996..24346fb0eb70a8c08680970b03857f672cf0a1c6 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -16,6 +16,11 @@ stdenv.mkDerivation rec { NIX_CFLAGS_LINK = "-L${elfutils}/lib"; + postPatch = '' + # For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here + substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable} + ''; + configureFlags = "--with-external-db --without-lua --enable-python"; meta = with stdenv.lib; { diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index 7823a9e0307a548231701f1c5943680ccc4aab66..eba1bef18704e745db8735b7f132f8529dbc893a 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk3, nssTools, pcsclite , pkgconfig }: -let version = "4.1.9"; in +let version = "4.1.11"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "03hf3bkawhr4kpjcv71xhja3d947qvxmjf0lkyjmv7i3fw3j8jqs"; + sha256 = "09rp4x1vg0j4rb2dl74f8a7szqx73saacjz09jkih1sz6vwi0j0w"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; diff --git a/pkgs/tools/security/eid-viewer/default.nix b/pkgs/tools/security/eid-viewer/default.nix index c96632537615fc9a8efc36d67b2fee440fb9370f..ac6dee4beaa356936a18f3ea8244bda16cf34ede 100644 --- a/pkgs/tools/security/eid-viewer/default.nix +++ b/pkgs/tools/security/eid-viewer/default.nix @@ -1,16 +1,12 @@ -{ stdenv, fetchurl, jre, makeWrapper, pcsclite }: - -let - # TODO: find out what the version components actually mean, if anything: - major = "4.1.4-v4.1.4"; - minor = "tcm406-270732"; - version = "${major}-${minor}"; -in stdenv.mkDerivation rec { +{ stdenv, fetchurl, makeWrapper, jre, pcsclite }: + +let version = "4.1.9"; in +stdenv.mkDerivation rec { name = "eid-viewer-${version}"; src = fetchurl { - url = "http://eid.belgium.be/en/binaries/eid-viewer-${major}.src.tar_${minor}.gz"; - sha256 = "06kda45y7c3wvvqby153zcasgz4jibjypv8gvfwvrwvn4ag2z934"; + url = "https://downloads.services.belgium.be/eid/eid-viewer-${version}-v${version}.src.tar.gz"; + sha256 = "0bq9jl4kl97j0dfhz4crcb1wqhn420z5vpg510zadvrmqjhy1x4g"; }; buildInputs = [ jre pcsclite ]; diff --git a/pkgs/tools/security/fail2ban/default.nix b/pkgs/tools/security/fail2ban/default.nix index 184f8a59d28c85ad34d217e179df9e8766dc7366..667157978a38ddf42e1b22ca218f4ba657f5f933 100644 --- a/pkgs/tools/security/fail2ban/default.nix +++ b/pkgs/tools/security/fail2ban/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchzip, python, pythonPackages, unzip, systemd, gamin }: +{ stdenv, fetchzip, python, pythonPackages, unzip, gamin }: -let version = "0.9.1"; in +let version = "0.9.3"; in pythonPackages.buildPythonPackage { name = "fail2ban-${version}"; @@ -9,23 +9,15 @@ pythonPackages.buildPythonPackage { src = fetchzip { name = "fail2ban-${version}-src"; url = "https://github.com/fail2ban/fail2ban/archive/${version}.tar.gz"; - sha256 = "111xvy2gxwn868kn0zy2fmdfa423z6fk57i7wsfrc0l74p1cdvs5"; + sha256 = "1pwgr56i6l6wh2ap8b5vknxgsscfzjqy2nmd1c3vzdii5kf72j0f"; }; buildInputs = [ unzip ]; - pythonPath = (stdenv.lib.optional stdenv.isLinux systemd) - ++ [ python.modules.sqlite3 gamin ]; + propagatedBuildInputs = [ python.modules.sqlite3 gamin ] + ++ (stdenv.lib.optional stdenv.isLinux pythonPackages.systemd); preConfigure = '' - substituteInPlace setup.cfg \ - --replace /usr $out - - substituteInPlace setup.py \ - --replace /usr $out \ - --replace /etc $out/etc \ - --replace /var $TMPDIR/var \ - for i in fail2ban-client fail2ban-regex fail2ban-server; do substituteInPlace $i \ --replace /usr/share/fail2ban $out/share/fail2ban @@ -40,6 +32,18 @@ pythonPackages.buildPythonPackage { doCheck = false; + preInstall = '' + # see https://github.com/NixOS/nixpkgs/issues/4968 + ${python}/bin/${python.executable} setup.py install_data --install-dir=$out --root=$out + ''; + + postInstall = let + sitePackages = "$out/lib/${python.libPrefix}/site-packages"; + in '' + # see https://github.com/NixOS/nixpkgs/issues/4968 + rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var; + ''; + meta = with stdenv.lib; { homepage = http://www.fail2ban.org/; description = "A program that scans log files for repeated failing login attempts and bans IP addresses"; diff --git a/pkgs/tools/security/gnupg/1.nix b/pkgs/tools/security/gnupg/1.nix index d5045806e0c9178d332ec6e090299251bff803a8..8593fe69733acae931aa523c2f54aeb631370a7f 100644 --- a/pkgs/tools/security/gnupg/1.nix +++ b/pkgs/tools/security/gnupg/1.nix @@ -1,15 +1,13 @@ { stdenv, fetchurl, readline, bzip2 }: stdenv.mkDerivation rec { - name = "gnupg-1.4.19"; + name = "gnupg-1.4.20"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86"; + sha256 = "1k7d6zi0zznqsmcjic0yrgfhqklqz3qgd3yac7wxsa7s6088p604"; }; - patches = [ ./remove-debug-message.patch ]; - buildInputs = [ readline bzip2 ]; doCheck = true; diff --git a/pkgs/tools/security/gnupg/20.nix b/pkgs/tools/security/gnupg/20.nix index 36c877620f19dec3d242f8670a6f8951f4415a38..117fc41c1abea2c93b0c7a5580c9aed8af023c54 100644 --- a/pkgs/tools/security/gnupg/20.nix +++ b/pkgs/tools/security/gnupg/20.nix @@ -23,7 +23,9 @@ stdenv.mkDerivation rec { = [ readline zlib libgpgerror libgcrypt libassuan libksba pth openldap bzip2 libusb curl libiconv ]; - patchPhase = '' + patches = [ ./gpgkey2ssh-20.patch ]; + + prePatch = '' find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i '' + stdenv.lib.optionalString stdenv.isLinux '' sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c @@ -35,6 +37,8 @@ stdenv.mkDerivation rec { configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry"; + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; + checkPhase="GNUPGHOME=`pwd` ./agent/gpg-agent --daemon make check"; doCheck = true; diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index 9390207e14ade62da0486e3d11a81b6d9bdd56d9..bafcd88f1b90c4a525eb4f84cbb0d9c2f9a9cb05 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -20,10 +20,14 @@ stdenv.mkDerivation rec { sha256 = "1ybcsazjm21i2ys1wh49cz4azmqz7ghx5rb6hm4gm93i2zc5igck"; }; + patches = [ ./gpgkey2ssh-21.patch ]; + postPatch = stdenv.lib.optionalString stdenv.isLinux '' sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c ''; #" fix Emacs syntax highlighting :-( + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; + buildInputs = [ pkgconfig libgcrypt libassuan libksba libiconv npth autoreconfHook gettext texinfo diff --git a/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch b/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch new file mode 100644 index 0000000000000000000000000000000000000000..b536a4fe50e3ac7eda053772ea0df477de16773b --- /dev/null +++ b/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch @@ -0,0 +1,14 @@ +diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c +index 903fb5b..d5611dc 100644 +--- a/tools/gpgkey2ssh.c ++++ b/tools/gpgkey2ssh.c +@@ -266,7 +266,7 @@ main (int argc, char **argv) + keyid = argv[1]; + + ret = asprintf (&command, +- "gpg --list-keys --with-colons --with-key-data '%s'", ++ "@out@/bin/gpg2 --list-keys --with-colons --with-key-data '%s'", + keyid); + assert (ret > 0); + + diff --git a/pkgs/tools/security/gnupg/gpgkey2ssh-21.patch b/pkgs/tools/security/gnupg/gpgkey2ssh-21.patch new file mode 100644 index 0000000000000000000000000000000000000000..198869423e5cb5b9b3265a98038ee262a370c533 --- /dev/null +++ b/pkgs/tools/security/gnupg/gpgkey2ssh-21.patch @@ -0,0 +1,13 @@ +diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c +index f12c5f4..2e3f2ac 100644 +--- a/tools/gpgkey2ssh.c ++++ b/tools/gpgkey2ssh.c +@@ -281,7 +281,7 @@ main (int argc, char **argv) + keyid = argv[1]; + + asprintf (&command, +- "gpg2 --list-keys --with-colons --with-key-data '%s'", ++ "@out@/bin/gpg2 --list-keys --with-colons --with-key-data '%s'", + keyid); + if (! command) + { diff --git a/pkgs/tools/security/gnupg/remove-debug-message.patch b/pkgs/tools/security/gnupg/remove-debug-message.patch deleted file mode 100644 index 92fc6f2cfcacceb5ef3eb8fd32d5b15b4caa0634..0000000000000000000000000000000000000000 --- a/pkgs/tools/security/gnupg/remove-debug-message.patch +++ /dev/null @@ -1,22 +0,0 @@ -commit 936416690e6c889505d84fe96983a66983beae5e -Author: Werner Koch -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 92c7a027d69ffc2e7d1a0ad55c6351866d639309..01495156810b7578d7e69ab9271ba81fcac252a5 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/security/logkeys/default.nix b/pkgs/tools/security/logkeys/default.nix index ba875c04e2ba646055fd02b77d21695ac4e1cb5e..b856308712f811c97e9cab77f9b486e40ec01364 100644 --- a/pkgs/tools/security/logkeys/default.nix +++ b/pkgs/tools/security/logkeys/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "logkeys-${version}"; - version = "5ef6b0dcb9e3"; + version = "2015-11-10"; src = fetchgit { url = https://github.com/kernc/logkeys; - rev = "5ef6b0dcb9e38e6137ad1579d624ec12107c56c3"; - sha256 = "02p0l92l0fq069g31ks6xbqavzxa9njj9460vw2jsa7livcn2z9d"; + rev = "78321c6e70f61c1e7e672fa82daa664017c9e69d"; + sha256 = "1b1fa1rblyfsg6avqyls03y0rq0favipn5fha770rsirzg4r637q"; }; buildInputs = [ which procps kbd ]; diff --git a/pkgs/tools/security/nmap/default.nix b/pkgs/tools/security/nmap/default.nix index c7d927bdb4486ee1c23b383237b508c3f52f70b6..351654b60326a171b226cb9d150b92a4c9796e8a 100644 --- a/pkgs/tools/security/nmap/default.nix +++ b/pkgs/tools/security/nmap/default.nix @@ -13,11 +13,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "nmap${optionalString graphicalSupport "-graphical"}-${version}"; - version = "7.00"; + version = "7.01"; src = fetchurl { url = "http://nmap.org/dist/nmap-${version}.tar.bz2"; - sha256 = "1bh25200jidhb2ig206ibiwv1ngyrl2ka743hnihiihmqq0j6i4z"; + sha256 = "01bpc820fmjl1vd08a3j9fpa84psaa7c3cxc8wpzabms8ckcs7yg"; }; patches = ./zenmap.patch; diff --git a/pkgs/tools/security/polkit-gnome/default.nix b/pkgs/tools/security/polkit-gnome/default.nix index c06aac204a1c6feecff2b7e1919180cbcf66f45a..38d47e742a2921bfcc3fcdf7069226dab7147978 100644 --- a/pkgs/tools/security/polkit-gnome/default.nix +++ b/pkgs/tools/security/polkit-gnome/default.nix @@ -1,17 +1,20 @@ { stdenv, fetchurl, polkit, gtk3, pkgconfig, intltool }: -stdenv.mkDerivation { - name = "polkit-gnome-0.105"; +let + version = "0.105"; + +in stdenv.mkDerivation rec { + name = "polkit-gnome-${version}"; src = fetchurl { - url = mirror://gnome/sources/polkit-gnome/0.105/polkit-gnome-0.105.tar.xz; + url = "mirror://gnome/sources/polkit-gnome/${version}/${name}.tar.xz"; sha256 = "0sckmcbxyj6sbrnfc5p5lnw27ccghsid6v6wxq09mgxqcd4lk10p"; }; buildInputs = [ polkit gtk3 ]; nativeBuildInputs = [ pkgconfig intltool ]; - configureFlags = "--disable-introspection"; + configureFlags = [ "--disable-introspection" ]; # Desktop file from Debian postInstall = '' @@ -24,5 +27,6 @@ stdenv.mkDerivation { description = "A dbus session bus service that is used to bring up authentication dialogs"; license = stdenv.lib.licenses.gpl2; maintainers = with stdenv.lib.maintainers; [ urkud phreedom ]; + platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/tools/security/signing-party/default.nix b/pkgs/tools/security/signing-party/default.nix index 21e0bb4c4a974b6406607401963490476dc976a1..dfd5cd6c7d7cf1e778c6c414a20ad33f3a9e2d65 100644 --- a/pkgs/tools/security/signing-party/default.nix +++ b/pkgs/tools/security/signing-party/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, gnupg, perl, automake111x, autoconf}: stdenv.mkDerivation rec { - version = "2.0"; + version = "2.1"; basename = "signing-party"; name = "${basename}-${version}"; src = fetchurl { url = "mirror://debian/pool/main/s/${basename}/${basename}_${version}.orig.tar.gz"; - sha256 = "0vn15sb2yyzd57xdblw48p5hi6fnpvgy83mqyz5ygph65y5y88yc"; + sha256 = "0pcni3mf92503bqknwlsvv1f5gz23dmzwas2j8g2fk7afjd891ya"; }; sourceRoot = "."; diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix index 9e73c7d4053f95633189c4deed06b765ddc77a06..7ff1cd9cca5691fa3678257e5753af6109c2b60d 100644 --- a/pkgs/tools/security/tor/default.nix +++ b/pkgs/tools/security/tor/default.nix @@ -1,17 +1,18 @@ { stdenv, fetchurl, libevent, openssl, zlib, torsocks, libseccomp }: stdenv.mkDerivation rec { - name = "tor-0.2.7.5"; + name = "tor-0.2.7.6"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz"; - sha256 = "0pxayvcab4cb107ynbpzx4g0qyr1mjfba2an76wdx6dxn56rwakx"; + sha256 = "0p8hjlfi8dwghlyjif5s0q98cmpgz9kn9jja25430l04z5wqcfj9"; }; # Note: torsocks is specified as a dependency, as the distributed # 'torify' wrapper attempts to use it; although there is no # ./configure time check for any of this. - buildInputs = [ libevent openssl zlib torsocks libseccomp ]; + buildInputs = [ libevent openssl zlib torsocks ] ++ + stdenv.lib.optional stdenv.isLinux libseccomp; NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.cc.isGNU "-lgcc_s"; diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 3ff4ce724b800bbc3f628f7a94136d383c048e10..e6ce333cc91539e387dbe0f5ecc881352dce2437 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.0.4"; + version = "5.0.6"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "03vn1wkkpgr6wzd6iiyqs7zv7yxl9q99j755n8l2579bd10w1xcn" else - "1yc13cykr4fafz6r8hnjccl0s33sk297c779cknbdbhj3z3yn163"; + "1ix05760l9j6bwbswd2fnk4b6nrrzxp3b8abvm4y4979pkkmasfw" else + "1q5mf91xxj1xs4ajj9i6mdhnzqycbdvprkzskx8pl6j9ll2hlsyh"; }; patchPhase = '' diff --git a/pkgs/tools/system/freeipmi/default.nix b/pkgs/tools/system/freeipmi/default.nix index 7e3ec2358c707753002d28c14ce1baef982327c1..3a88267f6c4f03a5c0c9ab5b1c5e61a4cb3f0e82 100644 --- a/pkgs/tools/system/freeipmi/default.nix +++ b/pkgs/tools/system/freeipmi/default.nix @@ -1,12 +1,12 @@ { fetchurl, stdenv, libgcrypt, readline }: stdenv.mkDerivation rec { - version = "1.4.9"; + version = "1.5.1"; name = "freeipmi-${version}"; src = fetchurl { url = "mirror://gnu/freeipmi/${name}.tar.gz"; - sha256 = "0v2xfwik2mv6z8066raiypc4xymjvr8pb0mv3mc3g4ym4km132qp"; + sha256 = "0lhjxlha4j5rx11d81y1rgp9j18rlpxsjc0flsmj6bm60awmm627"; }; buildInputs = [ libgcrypt readline ]; diff --git a/pkgs/tools/text/colordiff/default.nix b/pkgs/tools/text/colordiff/default.nix index 9b041ae4b2bec61dc5ced68e712becc9c477bf2a..53e683561fb82e5fbcec0bf5e653c60c774770f1 100644 --- a/pkgs/tools/text/colordiff/default.nix +++ b/pkgs/tools/text/colordiff/default.nix @@ -4,7 +4,10 @@ stdenv.mkDerivation rec { name = "colordiff-1.0.16"; src = fetchurl { - url = "http://www.colordiff.org/${name}.tar.gz"; + urls = [ + "http://www.colordiff.org/${name}.tar.gz" + "http://www.colordiff.org/archive/${name}.tar.gz" + ]; sha256 = "12qkkw13261dra8pg7mzx4r8p9pb0ajb090bib9j1s6hgphwzwga"; }; diff --git a/pkgs/tools/typesetting/djvu2pdf/default.nix b/pkgs/tools/typesetting/djvu2pdf/default.nix index 5455df5f106e7ea4b9c9e0558c2ec6075fdc7f4f..512efe497fa0f7c30cb49fa81afa6f6b2c8aee99 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/hevea/default.nix b/pkgs/tools/typesetting/hevea/default.nix index 0626ec84fbe54dd8bb7210c4cae1e4e6b1b400e4..3343579bbab2a3f68c5a575fdb062ca27e0904af 100644 --- a/pkgs/tools/typesetting/hevea/default.nix +++ b/pkgs/tools/typesetting/hevea/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ocaml }: stdenv.mkDerivation rec { - name = "hevea-2.25"; + name = "hevea-2.26"; src = fetchurl { url = "http://pauillac.inria.fr/~maranget/hevea/distri/${name}.tar.gz"; - sha256 = "0kn99v92xsfy12r9gfvwgs0xf3s9s6frfg86a8q6damj1dampiz4"; + sha256 = "173v6z2li12pah6315dfpwhqrdljkhsff82gj7sql812zwjkvd2f"; }; buildInputs = [ ocaml ]; diff --git a/pkgs/tools/typesetting/tex/texlive-new/bin.nix b/pkgs/tools/typesetting/tex/texlive-new/bin.nix index 7ed9b58d14d7435726c899ea6efc3f21d2c0d7cd..f833cc2f82b13599c70a80e5416ba4abd82cd867 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}"); @@ -222,5 +224,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 a084c973b780ebdfb2143ecc92cabd8809708567..5fe52ba07baf5dc5c58d8927cb738f2fbc348370 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 22f2a52ea778c3dffea1d4015c4c4428aca84af6..b6c75b8a619468c27fc57acfe981a515776de1ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -372,13 +372,7 @@ let inherit name sha256; url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz"; meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; - }; - - # gitorious example - fetchFromGitorious = { owner, repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; - url = "https://gitorious.org/${owner}/${repo}/archive/${rev}.tar.gz"; - meta.homepage = "https://gitorious.org/${owner}/${repo}/"; + extraPostFetch = ''rm -f "$out"/.hg_archival.txt''; # impure file; see #12002 }; # cgit example, snapshot support is optional in cgit @@ -474,12 +468,16 @@ let ### TOOLS + _9pfs = callPackage ../tools/filesystems/9pfs { }; + "3dfsb" = callPackage ../applications/misc/3dfsb { glibc = glibc.override { debugSymbols = true; }; }; abduco = callPackage ../tools/misc/abduco { }; + acbuild = callPackage ../applications/misc/acbuild { }; + acct = callPackage ../tools/system/acct { }; acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter { @@ -554,7 +552,7 @@ let withGui = false; }; - apitrace = callPackage ../applications/graphics/apitrace {}; + apitrace = qt5.callPackage ../applications/graphics/apitrace {}; argyllcms = callPackage ../tools/graphics/argyllcms {}; @@ -807,7 +805,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; @@ -815,6 +813,11 @@ let dialog = callPackage ../development/tools/misc/dialog { }; + ding = callPackage ../applications/misc/ding { + aspellDicts_de = aspellDicts.de; + aspellDicts_en = aspellDicts.en; + }; + direnv = callPackage ../tools/misc/direnv { }; discount = callPackage ../tools/text/discount { }; @@ -837,6 +840,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 { }; @@ -1020,7 +1025,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 { }; @@ -1070,7 +1075,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 { }; @@ -1152,7 +1157,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; @@ -1286,7 +1291,11 @@ let di = callPackage ../tools/system/di { }; - diffoscope = callPackage ../tools/misc/diffoscope { }; + diffoscope = callPackage ../tools/misc/diffoscope { + jdk = jdk7; + pythonPackages = python3Packages; + rpm = rpm.override { python = python3; }; + }; diffstat = callPackage ../tools/text/diffstat { }; @@ -1430,11 +1439,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 { }; @@ -1602,6 +1607,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 { }; @@ -1653,7 +1660,7 @@ let gnupg20 = callPackage ../tools/security/gnupg/20.nix { }; - gnupg21 = callPackage ../tools/security/gnupg/21.nix { }; + gnupg21 = lowPrio (callPackage ../tools/security/gnupg/21.nix { }); gnupg = gnupg20; @@ -1674,6 +1681,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 { }; @@ -1730,13 +1739,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 @@ -1744,6 +1746,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 { }; @@ -1815,6 +1819,8 @@ let pigz = callPackage ../tools/compression/pigz { }; + pixz = callPackage ../tools/compression/pixz { }; + pxz = callPackage ../tools/compression/pxz { }; hans = callPackage ../tools/networking/hans { }; @@ -2018,7 +2024,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 { }; @@ -2092,7 +2098,7 @@ let else nodejs-4_x; - nodePackages_5_x = recurseIntoAttrs (callPackage ./node-packages.nix { self = nodePackages_5_x; nodejs = nodejs-5_x; }); + nodePackages_5_x = callPackage ./node-packages.nix { self = nodePackages_5_x; nodejs = nodejs-5_x; }; nodePackages_4_x = recurseIntoAttrs (callPackage ./node-packages.nix { self = nodePackages_4_x; nodejs = nodejs-4_x; }); @@ -2264,7 +2270,7 @@ let mfoc = callPackage ../tools/security/mfoc { }; - mgba = callPackage ../misc/emulators/mgba { }; + mgba = qt5.callPackage ../misc/emulators/mgba { }; minissdpd = callPackage ../tools/networking/minissdpd { }; @@ -2315,7 +2321,7 @@ let msf = callPackage ../tools/security/metasploit { }; - mssys = callPackage ../tools/misc/mssys { }; + ms-sys = callPackage ../tools/misc/ms-sys { }; mtdutils = callPackage ../tools/filesystems/mtdutils { }; @@ -2682,6 +2688,8 @@ let pdfjam = callPackage ../tools/typesetting/pdfjam { }; + pdfmod = callPackage ../applications/misc/pdfmod { }; + jbig2enc = callPackage ../tools/graphics/jbig2enc { }; pdfread = callPackage ../tools/graphics/pdfread { @@ -2724,7 +2732,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; }; @@ -2872,6 +2880,8 @@ let read-edid = callPackage ../os-specific/linux/read-edid { }; + redir = callPackage ../tools/networking/redir { }; + redmine = callPackage ../applications/version-management/redmine { }; rtmpdump = callPackage ../tools/video/rtmpdump { }; @@ -2879,6 +2889,8 @@ let reaverwps = callPackage ../tools/networking/reaver-wps {}; + recordmydesktop = callPackage ../applications/video/recordmydesktop { }; + recutils = callPackage ../tools/misc/recutils { }; recoll = callPackage ../applications/search/recoll { }; @@ -2956,6 +2968,8 @@ let rubber = callPackage ../tools/typesetting/rubber { }; + runzip = callPackage ../tools/archivers/runzip { }; + rxp = callPackage ../tools/text/xml/rxp { }; rzip = callPackage ../tools/compression/rzip { }; @@ -2984,12 +2998,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 { }; @@ -3024,7 +3040,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 { }; @@ -3223,7 +3239,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 { }; @@ -3495,6 +3511,8 @@ let xbrightness = callPackage ../tools/X11/xbrightness { }; + xprintidle-ng = callPackage ../tools/X11/xprintidle-ng {}; + xsettingsd = callPackage ../tools/X11/xsettingsd { }; xsensors = callPackage ../os-specific/linux/xsensors { }; @@ -3664,6 +3682,8 @@ let # To expose more packages for Yi, override the extraPackages arg. yi = callPackage ../applications/editors/yi/wrapper.nix { }; + yle-dl = callPackage ../tools/misc/yle-dl {}; + zbackup = callPackage ../tools/backup/zbackup {}; zbar = callPackage ../tools/graphics/zbar { @@ -3738,6 +3758,8 @@ let nix-zsh-completions = callPackage ../shells/nix-zsh-completions { }; + grml-zsh-config = callPackage ../shells/grml-zsh-config { }; + ### DEVELOPMENT / COMPILERS @@ -3814,6 +3836,8 @@ let closurecompiler = callPackage ../development/compilers/closure { }; + cmdstan = callPackage ../development/compilers/cmdstan { }; + cmucl_binary = callPackage_i686 ../development/compilers/cmucl/binary.nix { }; compcert = callPackage ../development/compilers/compcert ( @@ -3827,6 +3851,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 {}; @@ -4104,7 +4130,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; @@ -4514,6 +4540,8 @@ let ipaddr = callPackage ../development/ocaml-modules/ipaddr { }; + iso8601 = callPackage ../development/ocaml-modules/iso8601 { }; + javalib = callPackage ../development/ocaml-modules/javalib { extlib = ocaml_extlib_maximal; }; @@ -4659,6 +4687,8 @@ let re2 = callPackage ../development/ocaml-modules/re2 { }; + tuntap = callPackage ../development/ocaml-modules/tuntap { }; + tyxml = callPackage ../development/ocaml-modules/tyxml { }; ulex = callPackage ../development/ocaml-modules/ulex { }; @@ -5024,6 +5054,10 @@ let erlang_odbc_javac = erlangR18_odbc_javac; rebar = callPackage ../development/tools/build-managers/rebar { }; + rebar3 = callPackage ../development/tools/build-managers/rebar3 { }; + fetchHex = callPackage ../development/tools/build-managers/rebar3/fetch-hex.nix { }; + + erlangPackages = callPackage ../development/erlang-modules { }; elixir = callPackage ../development/interpreters/elixir { }; @@ -5519,6 +5553,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 { }; @@ -5696,7 +5732,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 { }; @@ -5725,7 +5761,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 { }; @@ -5976,7 +6014,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 { @@ -6026,8 +6064,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 { }; @@ -6548,6 +6584,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; }); }); @@ -6617,8 +6655,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 { }; @@ -6641,9 +6677,10 @@ let }; glib = callPackage ../development/libraries/glib { }; - - glib-tested = glib.override { doCheck = true; }; # checked version separate to break cycles - + glib-tested = glib.override { # checked version separate to break cycles + doCheck = true; + libffi = libffi.override { doCheck = true; }; + }; glibmm = callPackage ../development/libraries/glibmm { }; glib_networking = callPackage ../development/libraries/glib-networking {}; @@ -6759,6 +6796,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 { }; @@ -6834,6 +6873,8 @@ let libjson = callPackage ../development/libraries/libjson { }; + libb64 = callPackage ../development/libraries/libb64 { }; + judy = callPackage ../development/libraries/judy { }; keybinder = callPackage ../development/libraries/keybinder { @@ -6845,54 +6886,6 @@ let automake = automake111x; }; - kf515 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.15 { inherit pkgs; }); - kf516 = recurseIntoAttrs (import ../development/libraries/kde-frameworks-5.16 { inherit pkgs; }); - kf5_stable = kf515; - kf5_latest = kf516; - - kf5PackagesFun = self: with self; { - - fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; - - k9copy = callPackage ../applications/video/k9copy {}; - - quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { - monolithic = true; - daemon = false; - client = false; - withKDE = true; - dconf = gnome3.dconf; - tag = "-kf5"; - }; - - quasselClient = quassel.override { - monolithic = false; - client = true; - tag = "-client-kf5"; - }; - - quassel_qt5 = quassel.override { - withKDE = false; - tag = "-qt5"; - }; - - quasselClient_qt5 = quasselClient.override { - withKDE = false; - tag = "-client-qt5"; - }; - - quasselDaemon = quassel.override { - monolithic = false; - daemon = true; - tag = "-daemon-qt5"; - withKDE = false; - }; - - }; - - kf515Packages = lib.makeScope kf515.newScope kf5PackagesFun; - kf5Packages = kf515Packages; - kinetic-cpp-client = callPackage ../development/libraries/kinetic-cpp-client { }; krb5Full = callPackage ../development/libraries/kerberos/krb5.nix { @@ -7058,8 +7051,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; }; @@ -7743,6 +7734,8 @@ let lightning = callPackage ../development/libraries/lightning { }; + lightlocker = callPackage ../misc/screensavers/light-locker { }; + lirc = callPackage ../development/libraries/lirc { }; liquidfun = callPackage ../development/libraries/liquidfun { }; @@ -7851,8 +7844,6 @@ let qt = qt4; }; - mlt-qt5 = callPackage ../development/libraries/mlt/qt-5.4.nix { }; - movit = callPackage ../development/libraries/movit { }; mosquitto = callPackage ../servers/mqtt/mosquitto { }; @@ -8008,16 +7999,21 @@ let ffmpeg = ffmpeg_0; }; - libressl_2_2 = callPackage ../development/libraries/libressl/2.2.nix { }; - libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { }; # 2.3 breaks some backward-compability libressl = libressl_2_2; + libressl_2_2 = callPackage ../development/libraries/libressl/2.2.nix { + fetchurl = fetchurlBoot; + }; + libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { + fetchurl = fetchurlBoot; + }; boringssl = callPackage ../development/libraries/boringssl { }; wolfssl = callPackage ../development/libraries/wolfssl { }; - openssl = callPackage ../development/libraries/openssl { + openssl = openssl_1_0_1; + openssl_1_0_1 = callPackage ../development/libraries/openssl { fetchurl = fetchurlBoot; cryptodevHeaders = linuxPackages.cryptodev.override { fetchurl = fetchurlBoot; @@ -8063,10 +8059,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 { @@ -8092,8 +8084,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; }; @@ -8108,8 +8098,6 @@ let suffix = "qt4"; }; - poppler_qt5 = qt5Libs.popplerQt; - poppler_utils = poppler.override { suffix = "utils"; utils = true; }; popt = callPackage ../development/libraries/popt { }; @@ -8145,18 +8133,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; @@ -8178,8 +8160,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; @@ -8193,21 +8180,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"; @@ -8217,9 +8204,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; @@ -8228,20 +8225,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 { }; @@ -8251,8 +8236,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 {}; @@ -8321,7 +8304,7 @@ let rubberband = callPackage ../development/libraries/rubberband { inherit (vamp) vampSDK; }; - + sad = callPackage ../applications/science/logic/sad { }; sbc = callPackage ../development/libraries/sbc { }; @@ -8391,8 +8374,6 @@ let sfml = callPackage ../development/libraries/sfml { }; - signon = callPackage ../development/libraries/signon/old.nix {}; - skalibs = callPackage ../development/libraries/skalibs { }; slang = callPackage ../development/libraries/slang { }; @@ -8532,9 +8513,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; @@ -9148,6 +9127,8 @@ let apacheHttpdPackages_2_2 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_2 pkgs.apacheHttpdPackages_2_2; apacheHttpdPackages_2_4 = apacheHttpdPackagesFor pkgs.apacheHttpd_2_4 pkgs.apacheHttpdPackages_2_4; + archiveopteryx = callPackage ../servers/mail/archiveopteryx/default.nix { }; + cadvisor = callPackage ../servers/monitoring/cadvisor { }; cassandra_1_2 = callPackage ../servers/nosql/cassandra/1.2.nix { }; @@ -9584,7 +9565,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 { }; @@ -9748,6 +9731,8 @@ let cramfsswap = callPackage ../os-specific/linux/cramfsswap { }; + crda = callPackage ../os-specific/linux/crda { }; + darwin = let cmdline = callPackage ../os-specific/darwin/command-line-tools {}; apple-source-releases = callPackage ../os-specific/darwin/apple-source-releases { }; @@ -10337,13 +10322,15 @@ let numactl = callPackage ../os-specific/linux/numactl { }; + numad = callPackage ../os-specific/linux/numad { }; + open-vm-tools = callPackage ../applications/virtualization/open-vm-tools { inherit (gnome) gtk gtkmm; }; gocode = goPackages.gocode.bin // { outputs = [ "bin" ]; }; - kgocode = callPackage ../applications/misc/kgocode { + kgocode = callPackage ../applications/misc/kgocode { inherit (pkgs.kde4) kdelibs; }; @@ -10585,6 +10572,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 { }; @@ -10811,6 +10800,7 @@ let iosevka = callPackage ../data/fonts/iosevka { }; ipafont = callPackage ../data/fonts/ipafont {}; + ipaexfont = callPackage ../data/fonts/ipaexfont {}; junicode = callPackage ../data/fonts/junicode { }; @@ -10964,8 +10954,12 @@ let unifont_upper = callPackage ../data/fonts/unifont_upper { }; + vanilla-dmz = callPackage ../data/icons/vanilla-dmz { }; + vistafonts = callPackage ../data/fonts/vista-fonts { }; + wireless-regdb = callPackage ../data/misc/wireless-regdb { }; + wqy_microhei = callPackage ../data/fonts/wqy-microhei { }; wqy_zenhei = callPackage ../data/fonts/wqy-zenhei { }; @@ -10976,7 +10970,7 @@ let xlsx2csv = pythonPackages.xlsx2csv; - zeal = callPackage ../data/documentation/zeal { }; + zeal = qt5.callPackage ../data/documentation/zeal { }; ### APPLICATIONS @@ -11046,7 +11040,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 {}; @@ -11122,6 +11116,8 @@ let }; awesome = awesome-3-5; + awesomebump = qt5.callPackage ../applications/graphics/awesomebump { }; + inherit (gnome3) baobab; backintime-common = callPackage ../applications/networking/sync/backintime/common.nix { }; @@ -11201,7 +11197,7 @@ let calcurse = callPackage ../applications/misc/calcurse { }; - calibre = callPackage ../applications/misc/calibre { + calibre = qt5.callPackage ../applications/misc/calibre { inherit (pythonPackages) pyqt5 sip_4_16; }; @@ -11279,7 +11275,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; }; @@ -11299,6 +11295,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; }; @@ -11334,6 +11332,15 @@ let cutecom = callPackage ../tools/misc/cutecom { }; + cutegram = + 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 { + inherit libqtelegram-aseman-edition; + }; + }; + cvs = callPackage ../applications/version-management/cvs { }; cvsps = callPackage ../applications/version-management/cvsps { }; @@ -11375,7 +11382,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; @@ -11485,6 +11492,19 @@ let }); emacs24Macport = self.emacs24Macport_24_5; + emacs25pre = callPackage ../applications/editors/emacs-25 { + # use override to enable additional features + libXaw = xorg.libXaw; + Xaw3d = null; + gconf = null; + alsaLib = null; + imagemagick = null; + acl = null; + gpm = null; + inherit (darwin.apple_sdk.frameworks) AppKit Foundation; + inherit (darwin) libobjc; + }; + emacsPackagesGen = emacs: self: let callPackage = newScope self; in rec { inherit emacs; @@ -11644,10 +11664,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; @@ -11666,12 +11688,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; @@ -11707,6 +11725,8 @@ let keepass = callPackage ../applications/misc/keepass { }; + keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { }; + exrdisplay = callPackage ../applications/graphics/exrdisplay { fltk = fltk20; }; @@ -11721,7 +11741,7 @@ let fluidsynth = callPackage ../applications/audio/fluidsynth { }; - fmit = qt5Libs.callPackage ../applications/audio/fmit { }; + fmit = qt5.callPackage ../applications/audio/fmit { }; focuswriter = callPackage ../applications/editors/focuswriter { }; @@ -11733,7 +11753,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 { }; @@ -11820,7 +11840,7 @@ let inherit (pkgs.gnome) libgnome libgnomeui; }; - firestr = callPackage ../applications/networking/p2p/firestr + firestr = qt5.callPackage ../applications/networking/p2p/firestr { boost = boost155; }; @@ -11940,7 +11960,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 {}; @@ -12033,12 +12053,14 @@ let gosmore = callPackage ../applications/misc/gosmore { }; - gpsbabel = callPackage ../applications/misc/gpsbabel { }; + gpsbabel = qt5.callPackage ../applications/misc/gpsbabel { }; gpscorrelate = callPackage ../applications/misc/gpscorrelate { }; gpsd = callPackage ../servers/gpsd { }; + gpsprune = callPackage ../applications/misc/gpsprune { }; + gtk2fontsel = callPackage ../applications/misc/gtk2fontsel { inherit (gnome2) gtk; }; @@ -12170,7 +12192,10 @@ let lua = lua5; }; - ipe = qt5Libs.callPackage ../applications/graphics/ipe { }; + ipe = qt5.callPackage ../applications/graphics/ipe { + ghostscript = ghostscriptX; + texlive = texlive.combine { inherit (texlive) scheme-small; }; + }; iptraf = callPackage ../applications/networking/iptraf { }; @@ -12209,6 +12234,8 @@ let joe = callPackage ../applications/editors/joe { }; + josm = callPackage ../applications/misc/josm { }; + jbrout = callPackage ../applications/graphics/jbrout { }; jumanji = callPackage ../applications/networking/browsers/jumanji { @@ -12223,20 +12250,15 @@ let boost = boost155; }; - kdeApps_15_08 = recurseIntoAttrs (import ../applications/kde-apps-15.08 { inherit pkgs; }); - kdeApps_15_12 = recurseIntoAttrs (import ../applications/kde-apps-15.12 { inherit pkgs; }); - kdeApps_stable = kdeApps_15_08; - 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 +12389,7 @@ let webkit = webkitgtk2; }; - luminanceHDR = callPackage ../applications/graphics/luminance-hdr { }; + luminanceHDR = qt5.callPackage ../applications/graphics/luminance-hdr { }; lxdvdrip = callPackage ../applications/video/lxdvdrip { }; @@ -12484,12 +12506,22 @@ let mopidy = callPackage ../applications/audio/mopidy { }; + mopidy-gmusic = callPackage ../applications/audio/mopidy-gmusic { }; + mopidy-spotify = callPackage ../applications/audio/mopidy-spotify { }; mopidy-moped = callPackage ../applications/audio/mopidy-moped { }; 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 { }; @@ -12562,7 +12594,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 { @@ -12596,11 +12628,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; }; @@ -12695,7 +12727,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; }; @@ -12764,9 +12796,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 { }; @@ -12894,9 +12926,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 { }; @@ -12914,7 +12946,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; }; @@ -12928,7 +12960,7 @@ let demo = false; }; - rapcad = callPackage ../applications/graphics/rapcad {}; + rapcad = qt5.callPackage ../applications/graphics/rapcad {}; rapidsvn = callPackage ../applications/version-management/rapidsvn { }; @@ -13102,15 +13134,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; }; @@ -13131,9 +13159,7 @@ let printrun = callPackage ../applications/misc/printrun { }; - sddm = qt5Libs.callPackage ../applications/display-managers/sddm { - themes = []; # extra themes, etc. - }; + sddm = kde5.sddm; slim = callPackage ../applications/display-managers/slim { libpng = libpng12; @@ -13153,7 +13179,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; }; @@ -13190,18 +13216,21 @@ let sublime3 = lowPrio (callPackage ../applications/editors/sublime3 { }); - subversion = callPackage ../applications/version-management/subversion/default.nix { - bdbSupport = true; - httpServer = false; - httpSupport = true; - pythonBindings = false; - perlBindings = false; - javahlBindings = false; - saslSupport = false; - sasl = cyrus_sasl; - }; + inherit (callPackages ../applications/version-management/subversion/default.nix { + bdbSupport = true; + httpServer = false; + httpSupport = true; + pythonBindings = false; + perlBindings = false; + javahlBindings = false; + saslSupport = false; + sasl = cyrus_sasl; + }) + subversion18 subversion19; + + subversion = pkgs.subversion19; - subversionClient = appendToName "client" (subversion.override { + subversionClient = appendToName "client" (pkgs.subversion.override { bdbSupport = false; perlBindings = true; pythonBindings = true; @@ -13247,7 +13276,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 { }; @@ -13258,7 +13287,7 @@ let taskserver = callPackage ../servers/misc/taskserver { }; - telegram-cli = callPackage ../applications/networking/instant-messengers/telegram-cli/default.nix { }; + telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli/default.nix { }; telepathy_gabble = callPackage ../applications/networking/instant-messengers/telepathy/gabble { }; @@ -13328,9 +13357,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 { @@ -13364,7 +13395,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 { }; @@ -13454,7 +13485,7 @@ let neovim-pygui = pythonPackages.neovim_gui; - virtviewer = callPackage ../applications/virtualization/virt-viewer { + virt-viewer = callPackage ../applications/virtualization/virt-viewer { gtkvnc = gtkvnc.override { enableGTK3 = true; }; spice_gtk = spice_gtk.override { enableGTK3 = true; }; }; @@ -13506,7 +13537,7 @@ let libva = libva-full; # also wants libva-x11 }; - vlc_qt5 = qt5Libs.vlc; + vlc_qt5 = qt5.vlc; vmpk = callPackage ../applications/audio/vmpk { }; @@ -13982,7 +14013,7 @@ let chocolateDoom = callPackage ../games/chocolate-doom { }; - cockatrice = qt5Libs.callPackage ../games/cockatrice { }; + cockatrice = qt5.callPackage ../games/cockatrice { }; confd = goPackages.confd.bin // { outputs = [ "bin" ]; }; @@ -14050,7 +14081,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 { }; @@ -14125,7 +14156,7 @@ let lincity_ng = callPackage ../games/lincity/ng.nix {}; - liquidwar = builderDefsPackage (callPackage ../games/liquidwar) { + liquidwar = callPackage ../games/liquidwar { guile = guile_1_8; }; @@ -14151,11 +14182,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; }; @@ -14309,6 +14338,8 @@ let tennix = callPackage ../games/tennix { }; + terraria-server = callPackage ../games/terraria-server/default.nix { }; + tibia = callPackage_i686 ../games/tibia { }; tintin = callPackage ../games/tintin { }; @@ -14418,8 +14449,15 @@ let xsokoban = callPackage ../games/xsokoban { }; - zandronum = callPackage ../games/zandronum { }; - zandronum-server = callPackage ../games/zandronum/server.nix { }; + zandronum = callPackage ../games/zandronum { + fmod = fmod42416; + cmake = cmake-2_8; + }; + + zandronum-server = zandronum.override { + serverOnly = true; + }; + zandronum-bin = callPackage ../games/zandronum/bin.nix { }; zangband = builderDefsPackage (callPackage ../games/zangband) {}; @@ -14491,8 +14529,12 @@ let libusb = libusb1; libcanberra = libcanberra_kde; boost = boost155; - kdelibs = kdeApps_15_08.kdelibs; - subversionClient = subversionClient.override { branch = "1.8"; }; + kdelibs = kde5.kdelibs; + subversionClient = pkgs.subversion18.override { + bdbSupport = false; + perlBindings = true; + pythonBindings = true; + }; } ../desktops/kde-4.14; @@ -14712,12 +14754,79 @@ let numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { }; - plasma54 = recurseIntoAttrs (import ../desktops/plasma-5.4 { inherit pkgs; }); - plasma55 = recurseIntoAttrs (import ../desktops/plasma-5.5 { inherit pkgs; }); - plasma5_stable = plasma54; - 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 {}; + + quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { + monolithic = true; + daemon = false; + client = false; + withKDE = true; + dconf = gnome3.dconf; + tag = "-kf5"; + }; + + quasselClient = quassel.override { + monolithic = false; + client = true; + tag = "-client-kf5"; + }; + + quassel_qt5 = quassel.override { + withKDE = false; + tag = "-qt5"; + }; + + quasselClient_qt5 = quasselClient.override { + withKDE = false; + tag = "-client-qt5"; + }; - kde5 = kf5_stable // plasma5_stable // kdeApps_stable; + quasselDaemon = quassel.override { + monolithic = false; + daemon = true; + tag = "-daemon-qt5"; + withKDE = false; + }; + + sddm = callPackage ../applications/display-managers/sddm { + themes = []; # extra themes, etc. + }; + + }; + + kde5 = + 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; }; + named = self: { plasma = plasma self; frameworks = frameworks self; apps = apps self; }; + merged = self: + named self // frameworks self // plasma self // apps self // kde5PackagesFun self; + in + recurseIntoAttrs (lib.makeScope qt55.newScope merged); + + kde5_latest = + 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; }; + named = self: { plasma = plasma self; frameworks = frameworks self; apps = apps self; }; + merged = self: + named self // frameworks self // plasma self // apps self // kde5PackagesFun self; + in + recurseIntoAttrs (lib.makeScope qt55.newScope merged); theme-vertex = callPackage ../misc/themes/vertex { }; @@ -15049,6 +15158,8 @@ let geda = callPackage ../applications/science/electronics/geda { }; + gerbv = callPackage ../applications/science/electronics/gerbv { }; + gtkwave = callPackage ../applications/science/electronics/gtkwave { }; kicad = callPackage ../applications/science/electronics/kicad { @@ -15057,6 +15168,8 @@ let ngspice = callPackage ../applications/science/electronics/ngspice { }; + pcb = callPackage ../applications/science/electronics/pcb { }; + qucs = callPackage ../applications/science/electronics/qucs { }; xoscope = callPackage ../applications/science/electronics/xoscope { }; @@ -15178,7 +15291,7 @@ let ### MISC - antimicro = callPackage ../tools/misc/antimicro { }; + antimicro = qt5.callPackage ../tools/misc/antimicro { }; atari800 = callPackage ../misc/emulators/atari800 { }; @@ -15332,7 +15445,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; }; @@ -15387,7 +15500,7 @@ let inherit (pythonPackages) pexpect paramiko; }; - robomongo = callPackage ../applications/misc/robomongo { }; + robomongo = qt5.callPackage ../applications/misc/robomongo { }; rucksack = callPackage ../development/tools/rucksack { }; @@ -15455,17 +15568,14 @@ let }; }; - saneBackends = callPackage ../applications/graphics/sane/backends.nix { + saneBackends = callPackage ../applications/graphics/sane/backends { gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; - hotplugSupport = config.sane.hotplugSupport or true; - libusb = libusb1; }; - saneBackendsGit = callPackage ../applications/graphics/sane/backends-git.nix { + saneBackendsGit = callPackage ../applications/graphics/sane/backends/git.nix { gt68xxFirmware = config.sane.gt68xxFirmware or null; snapscanFirmware = config.sane.snapscanFirmware or null; - hotplugSupport = config.sane.hotplugSupport or true; }; mkSaneConfig = callPackage ../applications/graphics/sane/config.nix { }; @@ -15702,8 +15812,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 { }; @@ -15722,6 +15832,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 @@ -15735,24 +15846,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 - quassel_qt5 = kf5Packages.quassel_qt5; # added 2015-09-30 - quasselClient_qt5 = kf5Packages.quasselClient_qt5; # added 2015-09-30 - quasselDaemon_qt5 = kf5Packages.quasselDaemon; # added 2015-09-30 - quassel_kf5 = kf5Packages.quassel; # added 2015-09-30 - quasselClient_kf5 = kf5Packages.quasselClient; # added 2015-09-30 + 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 @@ -15761,6 +15883,8 @@ aliases = with self; rec { pidginlatexSF = pidginlatex; # added 2014-11-02 tftp_hpa = tftp-hpa; # added 2015-04-03 manpages = man-pages; # added 2015-12-06 + mssys = ms-sys; # added 2015-12-13 + virtviewer = virt-viewer; # added 2015-12-24 }; tweakAlias = _n: alias: with lib; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 3882153d8e02dc810a2063c50aef57670ecccbfa..17610ddb232b76ccd3d40b61cbcd33ec3055dbb9 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; @@ -392,15 +395,15 @@ let packagesFun = super: self: with self; { circe = melpaBuild rec { pname = "circe"; - version = "1.5"; + version = "2.1"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; + sha256 = "0q3rv6lk37yybkbswmn4pgzca0nfhvf4h3ac395fr16k5ixybc5q"; }; packageRequires = [ lcs lui ]; - fileSpecs = [ "lisp/circe*.el" ]; + fileSpecs = [ "circe*.el" "irc.el" "make-tls-process.el" ]; meta = { description = "IRC client for Emacs"; license = gpl3Plus; @@ -470,28 +473,6 @@ let packagesFun = super: self: with self; { }; }; - deferred = melpaBuild rec { - version = "0.3.2"; - pname = "deferred"; - - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-${pname}"; - rev = "896d4b53210289afe489e1ee7db4e12cb9248109"; - sha256 = "0ysahdyvlg240dynwn23kk2d9kb432zh2skr1gydm3rxwn6f18r0"; - }; - - meta = { - description = "Simple asynchronous functions for emacs-lisp"; - longDescription = '' - deferred.el provides facilities to manage asynchronous tasks. - The API and implementations were translated from JSDeferred (by cho45) - and Mochikit.Async (by Bob Ippolito) in JavaScript. - ''; - license = gpl3Plus; - }; - }; - diminish = melpaBuild rec { pname = "diminish"; version = "0.44"; @@ -676,12 +657,12 @@ let packagesFun = super: self: with self; { expand-region = melpaBuild rec { pname = "expand-region"; - version = "20141012"; + version = "20150902"; src = fetchFromGitHub { owner = "magnars"; repo = "${pname}.el"; - rev = "fa413e07c97997d950c92d6012f5442b5c3cee78"; - sha256 = "04k0518wfy72wpzsswmncnhd372fxa0r8nbfhmbyfmns8n7sr045"; + rev = "59f67115263676de5345581216640019975c4fda"; + sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1"; }; meta = { description = "Increases the selected region by semantic units in Emacs"; @@ -744,14 +725,14 @@ let packagesFun = super: self: with self; { flycheck = melpaBuild rec { pname = "flycheck"; - version = "0.23"; + version = "0.25.1"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1ydk1wa7h7z9qw7prfvszxrmy2dyzsdij3xdy10rq197xnrw94wz"; + sha256 = "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi"; }; - packageRequires = [ dash let-alist pkg-info ]; + packageRequires = [ dash let-alist pkg-info seq ]; meta = { description = "On-the-fly syntax checking, intended as replacement for the older Flymake which is part of Emacs"; license = gpl3Plus; @@ -1016,12 +997,12 @@ let packagesFun = super: self: with self; { haskell-mode = melpaBuild rec { pname = "haskell-mode"; - version = "13.14"; + version = "13.16"; src = fetchFromGitHub { owner = "haskell"; repo = pname; rev = "v${version}"; - sha256 = "1mxr2cflgafcr8wkvgbq8l3wmc9qhhb7bn9zl1bkf10zspw9m58z"; + sha256 = "1gmpmfkr54sfzrif87zf92a1i13wx75bhp66h1rxhflg216m62yv"; }; meta = { description = "Haskell language support for Emacs"; @@ -1077,6 +1058,7 @@ let packagesFun = super: self: with self; { }; }; + # deprecated, part of haskell-mode now hi2 = melpaBuild rec { pname = "hi2"; version = "1.0"; @@ -1179,14 +1161,9 @@ let packagesFun = super: self: with self; { lcs = melpaBuild rec { pname = "lcs"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; - fileSpecs = [ "lisp/lcs*.el" ]; + version = circe.version; + src = circe.src; + fileSpecs = [ "lcs.el" ]; meta = { description = "Longest Common Sequence (LCS) library for Emacs"; license = gpl3Plus; @@ -1227,15 +1204,10 @@ let packagesFun = super: self: with self; { lui = melpaBuild rec { pname = "lui"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; + version = circe.version; + src = circe.src; packageRequires = [ tracking ]; - fileSpecs = [ "lisp/lui*.el" ]; + fileSpecs = [ "lui*.el" ]; meta = { description = "User interface library for Emacs"; license = gpl3Plus; @@ -1244,12 +1216,12 @@ let packagesFun = super: self: with self; { magit = melpaBuild rec { pname = "magit"; - version = "2.3.0"; + version = "2.3.1"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1zbx1ky1481lkvfjr4k23q7jdrk9ji9v5ghj88qib36vbmzfwww8"; + sha256 = "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd"; }; packageRequires = [ dash git-commit magit-popup with-editor ]; fileSpecs = [ "lisp/magit-utils.el" @@ -1538,12 +1510,12 @@ let packagesFun = super: self: with self; { projectile = melpaBuild rec { pname = "projectile"; - version = "0.12.0"; + version = "0.13.0"; src = fetchFromGitHub { owner = "bbatsov"; repo = pname; rev = "v${version}"; - sha256 = "1bl5wpkyv9xlf5v5hzkj8si1z4hjn3yywrjs1mx0g4irmq3mk29m"; + sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf"; }; fileSpecs = [ "projectile.el" ]; packageRequires = [ dash helm pkg-info ]; @@ -1717,16 +1689,26 @@ let packagesFun = super: self: with self; { }; }; - shorten = melpaBuild rec { - pname = "shorten"; - version = "1.5"; + seq = melpaBuild rec { + pname = "seq"; + version = "1.11"; src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; + owner = "NicolasPetton"; + repo = "${pname}.el"; + rev = version; + sha256 = "18ydaz2y5n7h4wr0dx2k9qbxl0mc50qfwk52ma4amk8nmm1bjwgc"; + }; + meta = { + description = "Sequence manipulation library for Emacs"; + license = gpl3Plus; # probably }; - fileSpecs = [ "lisp/shorten*.el" ]; + }; + + shorten = melpaBuild rec { + pname = "shorten"; + version = circe.version; + src = circe.src; + fileSpecs = [ "shorten.el" ]; meta = { description = "String shortening to unique prefix library for Emacs"; license = gpl3Plus; @@ -1751,12 +1733,12 @@ let packagesFun = super: self: with self; { smartparens = melpaBuild rec { pname = "smartparens"; - version = "1.6.2"; + version = "20151025"; src = fetchFromGitHub { owner = "Fuco1"; repo = pname; - rev = version; - sha256 = "16pzd740vd1r3qfmxia2ibiarinm6xpja0mjv3nni5dis5s4r9gc"; + rev = "85583f9570be58f17ccd68388d9d4e58234d8ae9"; + sha256 = "1pvzcrnzvksx1rzrr19256x1qhidr2acz6yipijlfx2zfjx2gxa7"; }; packageRequires = [ dash ]; meta = { @@ -1803,12 +1785,12 @@ let packagesFun = super: self: with self; { swiper = melpaBuild rec { pname = "swiper"; - version = "0.6.0"; + version = "0.7.0"; src = fetchFromGitHub { owner = "abo-abo"; repo = pname; rev = version; - sha256 = "18madh4hvrk8sxrll84ry13n1l3ad1gnp3prj828sszrbbdp20ly"; + sha256 = "1kahl3h18vsjkbqvd84fb2w45s4srsiydn6jiv49vvg1yaxzxcbm"; }; fileSpecs = [ "swiper.el" "ivy.el" "colir.el" "counsel.el" ]; meta = { @@ -1837,15 +1819,10 @@ let packagesFun = super: self: with self; { tracking = melpaBuild rec { pname = "tracking"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "v${version}"; - sha256 = "08dsv1dzgb9jx076ia7xbpyjpaxn1w87h6rzlb349spaydq7ih24"; - }; + version = circe.version; + src = circe.src; packageRequires = [ shorten ]; - fileSpecs = [ "lisp/tracking*.el" ]; + fileSpecs = [ "tracking.el" ]; meta = { description = "Register buffers for user review library for Emacs"; license = gpl3Plus; @@ -1985,29 +1962,6 @@ let packagesFun = super: self: with self; { }; }; - yasnippet = melpaBuild rec { - pname = "yasnippet"; - version = "0.8.1"; - src = fetchFromGitHub { - owner = "capitaomorte"; - repo = pname; - rev = "01139a2deb9eda272b9b771fbbe15d096061efa4"; - sha256 = "1b0bxzkmw7yd1yf6326zf52aq63n283vy57pysj8cc34d9bk6nnk"; - }; - meta = { - description = "A template system for Emacs"; - longDescription = '' - YASnippet is a template system for Emacs. - It allows you to type an abbreviation and automatically expand it into - function templates. Bundled language templates include: C, C++, C#, - Perl, Python, Ruby, SQL, LaTeX, HTML, CSS and more. - The snippet syntax is inspired from TextMate's syntax, you can even import - most TextMate templates to YASnippet. - ''; - license = gpl2Plus; - }; - }; - zenburn-theme = melpaBuild rec { pname = "zenburn-theme"; version = "2.2"; @@ -2023,6 +1977,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 d20f4ae75494ca4a0eaa6e91393d12818057a32f..93eb04e5442947cd7582a66f5034444f6824756a 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -166,6 +166,14 @@ let ## THIRD PARTY + ace = buildFromGitHub { + rev = "899eede6af0d99400b2c8886d86fd8d351074d37"; + owner = "yosssi"; + repo = "ace"; + sha256 = "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5"; + buildInputs = [ gohtml ]; + }; + adapted = buildFromGitHub { rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77"; date = "2015-06-03"; @@ -175,6 +183,14 @@ let propagatedBuildInputs = [ sys ]; }; + afero = buildFromGitHub { + rev = "90b5a9bd18a72dbf3e27160fc47acfaac6c08389"; + owner = "spf13"; + repo = "afero"; + sha256 = "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k"; + propagatedBuildInputs = [ text ]; + }; + airbrake-go = buildFromGitHub { rev = "5b5e269e1bc398d43f67e43dafff3414a59cd5a2"; owner = "tobi"; @@ -182,6 +198,13 @@ let sha256 = "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz"; }; + amber = buildFromGitHub { + rev = "144da19a9994994c069f0693294a66dd310e14a4"; + owner = "eknkc"; + repo = "amber"; + sha256 = "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk"; + }; + ansicolor = buildFromGitHub { rev = "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b"; owner = "shiena"; @@ -269,6 +292,14 @@ let sha256 = "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3"; }; + blackfriday = buildFromGitHub { + rev = "d18b67ae0afd61dae240896eae1785f00709aa31"; + owner = "russross"; + repo = "blackfriday"; + sha256 = "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf"; + propagatedBuildInputs = [ sanitized_anchor_name ]; + }; + bolt = buildFromGitHub { rev = "957d850b5158a4eebf915476058e720f43459584"; owner = "boltdb"; @@ -315,6 +346,14 @@ let }; }; + cast = buildFromGitHub { + rev = "ee815aaf958c707ad07547cd62150d973710f747"; + owner = "spf13"; + repo = "cast"; + sha256 = "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i"; + buildInputs = [ jwalterweatherman ]; + }; + check-v1 = buildGoPackage rec { rev = "871360013c92e1c715c2de6d06b54899468a8a2d"; name = "check-v1-${stdenv.lib.strings.substring 0 7 rev}"; @@ -348,17 +387,12 @@ let sha256 = "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c"; }; - cobra = buildGoPackage rec { - date = "20140617"; - rev = "10a8494a87448bf5003222d9974f166437e7f042"; - name = "cobra-${date}-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/spf13/cobra"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "1ydcccx0zdswca4v9hfmrn8ck42h485hy3wrd9k7y6mra3r6c08j"; - }; - propagatedBuildInputs = [ pflag ]; + cobra = buildFromGitHub { + rev = "ee6224d01f6a83f543ae90f881b703cf195782ba"; + owner = "spf13"; + repo = "cobra"; + sha256 = "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij"; + propagatedBuildInputs = [ pflag-spf13 mousetrap go-md2man viper ]; }; cli-go = buildFromGitHub { @@ -504,6 +538,26 @@ let sha256 = "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1"; }; + crypt = buildFromGitHub { + rev = "749e360c8f236773f28fc6d3ddfce4a470795227"; + owner = "xordataexchange"; + repo = "crypt"; + sha256 = "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig"; + preBuild = '' + substituteInPlace go/src/github.com/xordataexchange/crypt/backend/consul/consul.go \ + --replace 'github.com/armon/consul-api' 'github.com/hashicorp/consul/api' \ + --replace 'consulapi' 'api' + ''; + propagatedBuildInputs = [ go-etcd consul-api crypto ]; + }; + + cssmin = buildFromGitHub { + rev = "fb8d9b44afdc258bfff6052d3667521babcb2239"; + owner = "dchest"; + repo = "cssmin"; + sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; + }; + dbus = buildGoPackage rec { rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; name = "dbus-${stdenv.lib.strings.substring 0 7 rev}"; @@ -685,11 +739,19 @@ let }; }; + fsync = buildFromGitHub { + rev = "c2544e79b93fda5653255f907a30fba1c2ac2638"; + owner = "spf13"; + repo = "fsync"; + sha256 = "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz"; + buildInputs = [ afero ]; + }; + fzf = buildFromGitHub { - rev = "0.11.0"; + rev = "0.11.1"; owner = "junegunn"; repo = "fzf"; - sha256 = "1jcvfdglmrsh7z6lasj2i7l3cwqd0ijhv5ywafmr7m1rn90nj1pf"; + sha256 = "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text @@ -907,6 +969,14 @@ let doCheck = false; # please check again }; + gohtml = buildFromGitHub { + rev = "ccf383eafddde21dfe37c6191343813822b30e6b"; + owner = "yosssi"; + repo = "gohtml"; + sha256 = "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f"; + propagatedBuildInputs = [ net ]; + }; + gomdb = buildFromGitHub { rev = "151f2e08ef45cb0e57d694b2562f351955dff572"; owner = "armon"; @@ -1361,6 +1431,14 @@ let propagatedBuildInputs = [ prometheus.client_golang ]; }; + go-md2man = buildFromGitHub { + rev = "71acacd42f85e5e82f70a55327789582a5200a90"; + owner = "cpuguy83"; + repo = "go-md2man"; + sha256 = "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v"; + propagatedBuildInputs = [ blackfriday ]; + }; + go-multierror = buildFromGitHub { rev = "56912fb08d85084aa318edcf2bba735b97cf35c5"; owner = "hashicorp"; @@ -1645,6 +1723,18 @@ let sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; }; + hugo = buildFromGitHub { + rev = "v0.15"; + owner = "spf13"; + repo = "hugo"; + sha256 = "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5"; + buildInputs = [ + mapstructure text websocket cobra osext fsnotify.v1 afero + jwalterweatherman cast viper yaml-v2 ace purell mmark blackfriday amber + cssmin nitro inflect fsync + ]; + }; + inf = buildFromGitHub { rev = "c85f1217d51339c0fa3a498cc8b2075de695dae6"; owner = "go-inf"; @@ -1654,6 +1744,17 @@ let goPackageAliases = [ "github.com/go-inf/inf" ]; }; + inflect = buildGoPackage { + name = "inflect-2013-08-29"; + goPackagePath = "bitbucket.org/pkg/inflect"; + src = fetchFromBitbucket { + rev = "8961c3750a47b8c0b3e118d52513b97adf85a7e8"; + owner = "pkg"; + repo = "inflect"; + sha256 = "11qdyr5gdszy24ai1bh7sf0cgrb4q7g7fsd11kbpgj5hjiigxb9a"; + }; + }; + influxdb8-client = buildFromGitHub{ rev = "v0.8.8"; owner = "influxdb"; @@ -1703,6 +1804,13 @@ let sha256 = "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn"; }; + jwalterweatherman = buildFromGitHub { + rev = "c2aa07df593850a04644d77bb757d002e517a296"; + owner = "spf13"; + repo = "jwalterweatherman"; + sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; + }; + ldap = buildGoPackage rec { rev = "83e65426fd1c06626e88aa8a085e5bfed0208e29"; name = "ldap-${stdenv.lib.strings.substring 0 7 rev}"; @@ -1935,6 +2043,14 @@ let buildInputs = [ pkgs.cyrus_sasl tomb ]; }; + mmark = buildFromGitHub { + rev = "eacb2132c31a489033ebb068432892ba791a2f1b"; + owner = "miekg"; + repo = "mmark"; + sha256 = "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a"; + buildInputs = [ toml ]; + }; + mongo-tools = buildFromGitHub { rev = "4fcfd3e57415de95c0c016def07b95bca63cccb4"; owner = "mongodb"; @@ -2048,6 +2164,13 @@ let buildFlags = [ "-tags release" ]; }; + nitro = buildFromGitHub { + rev = "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8"; + owner = "spf13"; + repo = "nitro"; + sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; + }; + nsq = buildFromGitHub { rev = "v0.3.5"; owner = "bitly"; @@ -2237,6 +2360,13 @@ let doCheck = false; # bad import path in tests }; + pflag-spf13 = buildFromGitHub rec { + rev = "08b1a584251b5b62f458943640fc8ebd4d50aaa5"; + owner = "spf13"; + repo = "pflag"; + sha256 = "139d08cq06jia0arc6cikdnhnaqms07xfay87pzq5ym86fv0agiq"; + }; + pond = let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; gui = true; # Might be implemented with nixpkgs config. @@ -2629,6 +2759,13 @@ let }; }; + properties = buildFromGitHub { + rev = "v1.5.6"; + owner = "magiconair"; + repo = "properties"; + sha256 = "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl"; + }; + gogo.protobuf = buildFromGitHub { rev = "932b70afa8b0bf4a8e167fdf0c3367cebba45903"; owner = "gogo"; @@ -2647,6 +2784,14 @@ let sha256 = "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d"; }; + purell = buildFromGitHub { + rev = "d69616f51cdfcd7514d6a380847a152dfc2a749d"; + owner = "PuerkitoBio"; + repo = "purell"; + sha256 = "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0"; + propagatedBuildInputs = [ urlesc ]; + }; + pushover = buildFromGitHub { rev = "a8420a1935479cc266bda685cee558e86dad4b9f"; owner = "thorduri"; @@ -2799,6 +2944,15 @@ let buildInputs = [ net text ]; }; + # This is the upstream package name, underscores and all. I don't like it + # but it seems wrong to change their name when packaging it. + sanitized_anchor_name = buildFromGitHub { + rev = "10ef21a441db47d8b13ebcc5fd2310f636973c77"; + owner = "shurcooL"; + repo = "sanitized_anchor_name"; + sha256 = "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01"; + }; + scada-client = buildGoPackage rec { rev = "c26580cfe35393f6f4bf1b9ba55e6afe33176bae"; name = "scada-client-${stdenv.lib.strings.substring 0 7 rev}"; @@ -2938,12 +3092,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 @@ -3071,6 +3226,13 @@ let sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; }; + urlesc = buildFromGitHub { + rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; + owner = "opennota"; + repo = "urlesc"; + sha256 = "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"; + }; + usb = buildFromGitHub rec { rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; date = "2014-12-17"; @@ -3120,6 +3282,17 @@ let sha256 = "1qav4lf4ln5gs81714876q2cy9gfaxblbvawg3hxznbwakd9zmd8"; }; + viper = buildFromGitHub { + rev = "e37b56e207dda4d79b9defe0548e960658ee8b6b"; + owner = "spf13"; + repo = "viper"; + sha256 = "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl"; + propagatedBuildInputs = [ + mapstructure yaml-v2 jwalterweatherman crypt fsnotify.v1 cast properties + pretty toml pflag-spf13 + ]; + }; + vulcand = buildGoPackage rec { rev = "v0.8.0-beta.3"; name = "vulcand-${rev}"; @@ -3217,24 +3390,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 9b3f3e66854f934eb3c4e308a622e3f3c755fb15..7a44d9303bd81a8f7cacc47c84baade3dab65c68 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -98,6 +98,10 @@ rec { ghc = compiler.ghc7102; compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { }; }; + ghc7103 = callPackage ../development/haskell-modules { + ghc = compiler.ghc7103; + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { }; + }; ghcHEAD = callPackage ../development/haskell-modules { ghc = compiler.ghcHEAD; compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { }; @@ -300,6 +304,18 @@ rec { lts-3_16 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.16.nix { }; }; + lts-3_17 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.17.nix { }; + }; + 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 { }; + }; + lts-3_20 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.20.nix { }; + }; }; } diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index fdd8fb0ef7db3b0a2564335671cd0036401ac7e5..c14f94d95fd7ec2c19b749f820b73e9216a520a5 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -14,7 +14,7 @@ releaseTools.sourceTarball rec { version = builtins.readFile ../../.version; versionSuffix = "pre${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; - buildInputs = [ nix ]; + buildInputs = [ nix jq ]; configurePhase = '' eval "$preConfigure" @@ -83,7 +83,15 @@ releaseTools.sourceTarball rec { stopNest header "checking find-tarballs.nix" - nix-instantiate --eval --strict --show-trace ./maintainers/scripts/find-tarballs.nix > /dev/null + nix-instantiate --eval --strict --show-trace --json \ + ./maintainers/scripts/find-tarballs.nix \ + --arg expr 'import ./maintainers/scripts/all-tarballs.nix' > $TMPDIR/tarballs.json + nrUrls=$(jq -r '.[].url' < $TMPDIR/tarballs.json | wc -l) + echo "found $nrUrls URLs" + if [ "$nrUrls" -lt 10000 ]; then + echo "suspiciously low number of URLs" + exit 1 + fi stopNest ''; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 7ca2a82f1ea683606ca064ffdf2e1c90b0080547..387b28577594af063a747b92f5b94c3173ce90d0 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4972,17 +4972,17 @@ let self = _self // overrides; _self = with self; { }; Glib = buildPerlPackage rec { - name = "Glib-1.314"; + name = "Glib-1.320"; src = fetchurl { url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz"; - sha256 = "13lhyksm7fgj6rgrgs06kr0hinbyhiq3lfr6gd2qal1j2w0rwzml"; + sha256 = "15mrwscqjgwpkw9n4x6rakr9rjz2ss8d90k574fs5wx9cmgg3np3"; }; buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig pkgs.glib ]; meta = { homepage = http://gtk2-perl.sourceforge.net/; description = "Perl wrappers for the GLib utility and Object libraries"; maintainers = with maintainers; [ nckx ]; - license = stdenv.lib.licenses.lgpl3Plus; + license = stdenv.lib.licenses.lgpl21Plus; }; }; @@ -6258,6 +6258,9 @@ let self = _self // overrides; _self = with self; { url = mirror://cpan/authors/id/C/CH/CHORNY/Linux-Distribution-0.23.tar.gz; sha256 = "603e27da607b3e872a669d7a66d75982f0969153eab2d4b20c341347b4ebda5f"; }; + # The tests fail if the distro it's built on isn't in the supported list. + # This includes NixOS. + doCheck = false; meta = { description = "Perl extension to detect on which Linux distribution we are running"; license = "perl"; @@ -8044,17 +8047,18 @@ let self = _self // overrides; _self = with self; { }; }; - MozillaLdap = buildPerlPackage { - name = "Mozilla-Ldap-1.5.3"; - USE_OPENLDAP=1; - LDAPSDKDIR=pkgs.openldap; + MozillaLdap = buildPerlPackage rec { + name = "Mozilla-Ldap-${version}"; + version = "1.5.3"; + USE_OPENLDAP = 1; + LDAPSDKDIR = pkgs.openldap; src = fetchurl { - url = "ftp://ftp.mozilla.org/pub/mozilla.org/directory/perldap/releases/1.5.3/src/perl-mozldap-1.5.3.tar.gz"; + url = "https://ftp.mozilla.org/pub/directory/perldap/releases/${version}/src/perl-mozldap-${version}.tar.gz"; sha256 = "0s0albdw0zvg3w37s7is7gddr4mqwicjxxsy400n1p96l7ipnw4x"; }; meta = { description = "Mozilla's ldap client library"; - license = "unknown"; + license = with stdenv.lib.licenses; [ mpl20 lgpl21Plus gpl2Plus ]; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2b85f2932ad5d6e64b47c3d6836dce96b2c7465a..cbe0f010561b2855830ed3083ab239305dfe240c 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 { }; @@ -426,7 +426,7 @@ in modules // { # Let's make the library default to our gpg binary patchPhase = '' substituteInPlace gnupg.py \ - --replace "gpgbinary='gpg'" "gpgbinary='${pkgs.gnupg}/bin/gpg'" + --replace "gpgbinary='gpg'" "gpgbinary='${pkgs.gnupg1}/bin/gpg'" ''; meta = { @@ -607,7 +607,7 @@ in modules // { description = "A simple automation tool"; license = with licenses; [ gpl3] ; maintainers = with maintainers; [ joamaki ]; - platforms = with platforms; [ linux darwin ]; + platforms = with platforms; linux ++ darwin; }; }; @@ -639,7 +639,7 @@ in modules // { description = "A simple automation tool"; license = with licenses; [ gpl3 ]; maintainers = with maintainers; [ copumpkin ]; - platforms = with platforms; [ linux darwin ]; + platforms = with platforms; linux ++ darwin; }; }; @@ -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 = { @@ -1084,7 +1083,7 @@ in modules // { md5 = "5499efd85c54c757c0e757b5407ee47f"; }; - propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests ]; + propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests2 ]; meta = { description = "Microsoft Azure SDK for Python"; @@ -1094,6 +1093,78 @@ in modules // { }; }; + azure-nspkg = buildPythonPackage rec { + version = "1.0.0"; + name = "azure-nspkg-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-nspkg/azure-nspkg-1.0.0.zip; + sha256 = "1xqvc8by1lbd7j9dxyly03jz3rgbmnsiqnqgydhkf4pa2mn2hgr9"; + }; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + + azure-common = buildPythonPackage rec { + version = "1.0.0"; + name = "azure-common-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-common/azure-common-1.0.0.zip; + sha256 = "074rwwy8zzs7zw3nww5q2wg5lxgdc4rmypp2gfc9mwsz0gb70491"; + }; + propagatedBuildInputs = with self; [ azure-nspkg ]; + postInstall = '' + echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + ''; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + + azure-storage = buildPythonPackage rec { + version = "0.20.3"; + name = "azure-storage-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-storage/azure-storage-0.20.3.zip; + sha256 = "06bmw6k2000kln5jwk5r9bgcalqbyvqirmdh9gq4s6nb4fv3c0jb"; + }; + propagatedBuildInputs = with self; [ azure-common futures dateutil requests2 ]; + postInstall = '' + echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + ''; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + + azure-servicemanagement-legacy = buildPythonPackage rec { + version = "0.20.1"; + name = "azure-servicemanagement-legacy-${version}"; + src = pkgs.fetchurl { + url = https://pypi.python.org/packages/source/a/azure-servicemanagement-legacy/azure-servicemanagement-legacy-0.20.1.zip; + sha256 = "17dwrp99sx5x9cm4vldkaxhki9gbd6dlafa0lpr2n92xhh2838zs"; + }; + propagatedBuildInputs = with self; [ azure-common requests2 ]; + postInstall = '' + echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + ''; + meta = { + description = "Microsoft Azure SDK for Python"; + homepage = "http://azure.microsoft.com/en-us/develop/python/"; + license = licenses.asl20; + maintainers = with maintainers; [ olcai ]; + }; + }; + backports_ssl_match_hostname_3_4_0_2 = self.buildPythonPackage rec { name = "backports.ssl_match_hostname-3.4.0.2"; @@ -1287,6 +1358,43 @@ in modules // { }; }; + betamax = buildPythonPackage rec { + name = "betamax-0.5.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/betamax/${name}.tar.gz"; + sha256 = "1glzigrbip9w2jr2gcmwa96rffhi9x9l1455dhbcx2gh3pmcykl6"; + }; + + propagatedBuildInputs = [ self.requests2 ]; + + meta = with stdenv.lib; { + homepage = https://betamax.readthedocs.org/en/latest/; + description = "A VCR imitation for requests"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + + betamax-matchers = buildPythonPackage rec { + name = "betamax-matchers-${version}"; + version = "0.2.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/betamax-matchers/${name}.tar.gz"; + sha256 = "13n2dy8s2jx8x8bbx684bff3444584bnmg0zhkfxhxndpy18p4is"; + }; + + buildInputs = with self; [ betamax requests_toolbelt ]; + + meta = with stdenv.lib; { + homepage = https://github.com/sigmavirus24/betamax_matchers; + description = "A group of experimental matchers for Betamax"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + caldavclientlibrary-asynk = buildPythonPackage rec { version = "asynkdev"; name = "caldavclientlibrary-asynk-${version}"; @@ -1404,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"; @@ -1686,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 + datashape + flask + h5py multipledispatch - sqlalchemy9 # sqlalchemy8 should also work - psutil numba - h5py + 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"; @@ -2090,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 { }; @@ -3097,6 +3268,36 @@ in modules // { }; }; + mahotas = buildPythonPackage rec { + name = "python-mahotas-${version}"; + version = "1.4.1"; + + src = pkgs.fetchurl { + url = "https://github.com/luispedro/mahotas/archive/release-${version}.tar.gz"; + sha256 = "a684d339a3a4135f6f7161851161174755e9ea643b856b0bb48abd5515041ab6"; + }; + + buildInputs = with self; [ + nose + pillow + scipy + ]; + propagatedBuildInputs = with self; [ + numpy + imread + ]; + + disabled = stdenv.isi686; # Failing tests + + meta = with stdenv.lib; { + description = "Computer vision package based on numpy"; + homepage = https://readthedocs.org/projects/mahotas/; + maintainers = with maintainers; [ luispedro ]; + license = licenses.mit; + platforms = platforms.linux; + }; + }; + mixpanel = buildPythonPackage rec { version = "4.0.2"; name = "mixpanel-${version}"; @@ -3554,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]; @@ -3573,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"; @@ -4630,11 +4835,11 @@ in modules // { }; gmusicapi = with pkgs; buildPythonPackage rec { - name = "gmusicapi-4.0.0"; + name = "gmusicapi-7.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/g/gmusicapi/gmusicapi-4.0.0.tar.gz"; - md5 = "12ba66607531978b349c7035c9bab311"; + url = "https://pypi.python.org/packages/source/g/gmusicapi/gmusicapi-7.0.0.tar.gz"; + sha256 = "1zji4cgylyzz97cz69lywkbsn5nvvzrhk7iaqnpqpfvj9gwdchwn"; }; propagatedBuildInputs = with self; [ @@ -4643,14 +4848,16 @@ in modules // { mutagen protobuf setuptools - requests + requests2 dateutil proboscis mock appdirs oauth2client + pyopenssl + gpsoauth + MechanicalSoup ]; - doCheck = false; meta = { description = "An unofficial API for Google Play Music"; @@ -4811,6 +5018,38 @@ in modules // { }; }; + gpsoauth = buildPythonPackage rec { + version = "0.0.4"; + name = "gpsoauth-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/gpsoauth/${name}.tar.gz"; + sha256 = "1mhd2lkl1f4fmia1cwxwik8gvqr5q16scjip7kfwzadh9a11n9kw"; + }; + + propagatedBuildInputs = with self; [ + cffi + cryptography + enum34 + idna + ipaddress + ndg-httpsclient + pyopenssl + pyasn1 + pycparser + pycrypto + requests2 + six + ]; + + meta = { + description = "A python client library for Google Play Services OAuth."; + homepage = "https://github.com/simon-weber/gpsoauth"; + license = licenses.mit; + maintainers = with maintainers; [ jgillich ]; + }; + }; + gst-python = callPackage ../development/libraries/gstreamer/python { gst-plugins-base = pkgs.gst_all_1.gst-plugins-base; }; @@ -4940,6 +5179,33 @@ in modules // { }; }; + imread = buildPythonPackage rec { + name = "python-imread-${version}"; + version = "0.5.1"; + + src = pkgs.fetchurl { + url = "https://github.com/luispedro/imread/archive/release-${version}.tar.gz"; + sha256 = "12d7ba3523ba50d67d526e9797e041021dd9cd4acf9567a9bf73c8ae0b689d4a"; + }; + + buildInputs = with self; [ + nose + pkgs.libjpeg + pkgs.libpng + pkgs.libtiff + pkgs.libwebp + ]; + propagatedBuildInputs = with self; [ numpy ]; + + meta = with stdenv.lib; { + description = "Python package to load images as numpy arrays"; + homepage = https://readthedocs.org/projects/imread/; + maintainers = with maintainers; [ luispedro ]; + license = licenses.mit; + platforms = platforms.linux; + }; + }; + itsdangerous = buildPythonPackage rec { name = "itsdangerous-0.24"; @@ -5454,13 +5720,13 @@ in modules // { netcdf4 = buildPythonPackage rec { name = "netCDF4-${version}"; - version = "1.1.8"; + version = "1.2.1"; disabled = isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/netCDF4/${name}.tar.gz"; - sha256 = "0y6s8g82rbij0brh9hz3aapyyq6apj8fpmhhlyibz1354as7rjq1"; + sha256 = "0wzg73zyjjhns4209vrcvh71gs392d16ynz76x3pl1xg2by723iy"; }; propagatedBuildInputs = with self ; [ @@ -5472,13 +5738,12 @@ in modules // { pkgs.libjpeg ]; - patchPhase = '' - export USE_NCCONFIG=0 - export HDF5_DIR="${pkgs.hdf5}" - export NETCDF4_DIR="${pkgs.netcdf}" - export CURL_DIR="${pkgs.curl}" - export JPEG_DIR="${pkgs.libjpeg}" - ''; + # Variables used to configure the build process + USE_NCCONFIG="0"; + HDF5_DIR="${pkgs.hdf5}"; + NETCDF4_DIR="${pkgs.netcdf}"; + CURL_DIR="${pkgs.curl}"; + JPEG_DIR="${pkgs.libjpeg}"; meta = { description = "interface to netCDF library (versions 3 and 4)"; @@ -6568,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 = { @@ -6628,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"; @@ -7414,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 @@ -7498,12 +7786,12 @@ in modules // { md5 = "378670fe456957eb3c27ddaef60b2b24"; }; - propagatedBuildInputs = with self; [ werkzeug jinja2 ]; + propagatedBuildInputs = with self; [ itsdangerous click werkzeug jinja2 ]; meta = { homepage = http://flask.pocoo.org/; description = "A microframework based on Werkzeug, Jinja 2, and good intentions"; - license = "BSD"; + license = licenses.bsd3; }; }; @@ -8189,6 +8477,36 @@ in modules // { }; }; + github3_py = buildPythonPackage rec { + name = "github3.py-${version}"; + version = "1.0.0a2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/github3.py/${name}.tar.gz"; + sha256 = "11xvwbzfy04vwbjnpc8wcrjjzghbrbdzffrdfk70v0zdnxqg8hc5"; + }; + + buildInputs = with self; [ unittest2 pytest mock betamax betamax-matchers ]; + + propagatedBuildInputs = with self; [ requests2 pyopenssl uritemplate_py + ndg-httpsclient requests_toolbelt pyasn1 ]; + + postPatch = '' + sed -i -e 's/mock ==1.0.1/mock>=1.0.1/' setup.py + sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py + ''; + + # TODO: only disable the tests that require network + doCheck = false; + + meta = with stdenv.lib; { + homepage = http://github3py.readthedocs.org/en/master/; + description = "A wrapper for the GitHub API written in python"; + license = licenses.bsd3; + maintainers = with maintainers; [ pSub ]; + }; + }; + goobook = buildPythonPackage rec { name = "goobook-1.9"; disabled = isPy3k; @@ -9721,6 +10039,10 @@ in modules // { buildInputs = with self; [ pexpect ]; + prePatch = '' + substituteInPlace setup.py --replace "sympy==0.7.6" "sympy" + ''; + propagatedBuildInputs = with self; [ argparse cython @@ -9800,6 +10122,25 @@ in modules // { }; }); + MechanicalSoup = buildPythonPackage rec { + name = "MechanicalSoup-${version}"; + version = "0.4.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/M/MechanicalSoup/${name}.zip"; + sha256 = "02jkwly4gw1jqm55l4wwn0j0ggnysx55inw9j96bif5l49z5cacd"; + }; + + propagatedBuildInputs = with self; [ requests2 beautifulsoup4 six ]; + + meta = { + description = "A Python library for automating interaction with websites"; + homepage = https://github.com/hickford/MechanicalSoup; + license = licenses.mit; + maintainers = with maintainers; [ jgillich ]; + }; + }; + meld3 = buildPythonPackage rec { name = "meld3-1.0.0"; @@ -10210,6 +10551,25 @@ in modules // { }; }; + mpv = buildPythonPackage rec { + name = "mpv-0.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/m/mpv/${name}.tar.gz"; + sha256 = "0b9kd70mshdr713f3l1lbnz1q0vlg2y76h5d8liy1bzqm7hjcgfw"; + }; + buildInputs = [ pkgs.mpv ]; + patchPhase = "substituteInPlace mpv.py --replace libmpv.so ${pkgs.mpv}/lib/libmpv.so"; + + meta = with pkgs.stdenv.lib; { + description = "A python interface to the mpv media player"; + homepage = "https://github.com/jaseg/python-mpv"; + license = licenses.agpl3; + }; + + }; + + mrbob = buildPythonPackage rec { name = "mrbob-${version}"; version = "0.1.1"; @@ -10399,7 +10759,7 @@ in modules // { ''; homepage = https://thp.io/2010/mygpoclient/; license = with licenses; [ gpl3 ]; - platforms = with platforms; [ linux darwin ]; + platforms = with platforms; linux ++ darwin; maintainers = with maintainers; [ skeidel ]; }; }; @@ -10485,6 +10845,11 @@ in modules // { url = "http://pypi.python.org/packages/source/m/monotonic/${name}.tar.gz"; sha256 = "1diab6hfh3jpa1f0scpqaqrawk4g97ss4v7gkn2yw8znvdm6abw5"; }; + + patchPhase = optionalString stdenv.isLinux '' + substituteInPlace monotonic.py --replace \ + "ctypes.util.find_library('c')" "'${stdenv.glibc}/lib/libc.so.6'" + ''; }; MySQL_python = buildPythonPackage rec { @@ -11165,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 @@ -11419,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"; @@ -12835,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) @@ -13632,25 +14002,6 @@ in modules // { }; - polylint = buildPythonPackage rec { - name = "polylint-${version}"; - version = "158125c6ab"; - - src = pkgs.fetchgit { - url = "https://github.com/bendavis78/polylint"; - rev = version; - sha256 = "ea10c67e9ce6df0936d6e2015382acba4f9cc559e2d6a9471f474f6bda78a266"; - }; - - propagatedBuildInputs = with self; [ html5lib lxml cssselect ]; - - meta = { - description = "Fast HTML linter for polymer"; - homepage = https://github.com/bendavis78/polylint; - }; - }; - - powerline = buildPythonPackage rec { rev = "2.1.4"; name = "powerline-${rev}"; @@ -13697,7 +14048,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/praw/${name}.zip"; - sha256 = "1dilb3vr5llqy344i6nh7gl07wcssb5dmqrhjwhfqi1mais7b953"; + sha256 = "17s8s4a1yk9rq21f3kmj9k4dbgvfa3650l8b39nhwybvxl3j5nfv"; }; propagatedBuildInputs = with self; [ @@ -14700,6 +15051,25 @@ in modules // { }; }; + pyrr = buildPythonPackage rec { + name = "pyrr-${version}"; + version = "0.7.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pyrr/pyrr-${version}.tar.gz"; + sha256 = "04a65a9fb5c746b41209f55b21abf47a0ef80a4271159d670ca9579d9be3b4fa"; + }; + + buildInputs = with self; [ setuptools ]; + propagatedBuildInputs = with self; [ multipledispatch numpy ]; + + meta = { + description = "3D mathematical functions using NumPy"; + homepage = https://github.com/adamlwgriffiths/Pyrr/; + license = licenses.bsd2; + }; + }; + pyx = buildPythonPackage rec { name = "pyx-${version}"; version = "0.14.1"; @@ -16861,7 +17231,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}"; @@ -16879,8 +17249,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 = { @@ -17588,18 +17968,16 @@ in modules // { sipsimple = buildPythonPackage rec { name = "sipsimple-${version}"; - version = "2.5.1"; + version = "2.6.0"; disabled = isPy3k; src = pkgs.fetchurl { url = "http://download.ag-projects.com/SipClient/python-${name}.tar.gz"; - sha256 = "0vpy2vss8667c0kp1k8vybl38nxp7kr2v2wa8sngrgzd65m6ww5p"; + sha256 = "0xcyasas28q1ad1hgw4vd62b72mf1sng7xwfcls6dc05k9p3q8v3"; }; propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml ]; buildInputs = with pkgs; [ alsaLib ffmpeg libv4l pkgconfig sqlite libvpx ]; - - doCheck = false; }; @@ -17934,12 +18312,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"; }; }; @@ -18191,7 +18569,6 @@ in modules // { }; }; - structlog = buildPythonPackage rec { name = "structlog-15.3.0"; @@ -18233,21 +18610,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"; @@ -18293,36 +18708,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; @@ -18727,6 +19112,31 @@ in modules // { }; }; + tqdm = buildPythonPackage rec { + name = "tqdm-${version}"; + version = "3.1.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/t/tqdm/${name}.tar.gz"; + sha256 = "e2dbef0df0fd24c9ae3b2e07bef2a3607ad8431142e76d3294a5a11926d214bf"; + }; + + buildInputs = with self; [ nose coverage pkgs.glibcLocales flake8 ]; + propagatedBuildInputs = with self; [ matplotlib pandas ]; + + preBuild = '' + export LC_ALL="en_US.UTF-8" + ''; + + doCheck = !(isPy27); # Performance test fails + + meta = { + description = "A Fast, Extensible Progress Meter"; + homepage = https://github.com/tqdm/tqdm; + license = with licenses; [ mit ]; + }; + }; + smmap = buildPythonPackage rec { name = "smmap-0.9.0"; disabled = isPyPy; # This fails the tests if built with pypy @@ -19034,6 +19444,23 @@ in modules // { }; }; + uritemplate_py = buildPythonPackage rec { + name = "uritemplate.py-${version}"; + version = "0.3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/u/uritemplate.py/${name}.tar.gz"; + sha256 = "0xvvdiwnag2pdi96hjf7v8asdia98flk2rxcjqnwcs3rk99alygx"; + }; + + meta = with stdenv.lib; { + homepage = https://github.com/uri-templates/uritemplate-py; + description = "Python implementation of URI Template"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + traceback2 = buildPythonPackage rec { version = "1.4.0"; name = "traceback2-${version}"; @@ -20495,6 +20922,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}"; @@ -21259,9 +21707,10 @@ in modules // { }; }; - libvirt = pkgs.stdenv.mkDerivation rec { - name = "libvirt-python-${version}"; + libvirt = let version = "1.2.19"; + in assert version == pkgs.libvirt.version; pkgs.stdenv.mkDerivation rec { + name = "libvirt-python-${version}"; src = pkgs.fetchurl { url = "http://libvirt.org/sources/python/${name}.tar.gz"; @@ -21300,6 +21749,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"; @@ -21431,6 +21895,29 @@ in modules // { }; }; + tlsh = buildPythonPackage rec { + name = "tlsh-3.4.1"; + src = pkgs.fetchFromGitHub { + owner = "trendmicro"; + repo = "tlsh"; + rev = "b319aed6a270cc765347296b442820c495018833"; + sha256 = "08ysniihvidcyvh9zip64wwvj7mvxvsqs60ci8cxj28f1ip0n8wg"; + }; + buildInputs = with pkgs; [ cmake ]; + preConfigure = '' + mkdir build + cd build + cmake .. + cd ../py_ext + ''; + meta = with stdenv.lib; { + description = "Trend Micro Locality Sensitive Hash"; + homepage = https://github.com/trendmicro/tlsh; + license = licenses.asl20; + platforms = platforms.linux; + }; + }; + toposort = buildPythonPackage rec { name = "toposort-${version}"; version = "1.1"; @@ -22475,6 +22962,26 @@ in modules // { }; }; + maildir-deduplicate = buildPythonPackage rec { + name = "maildir-deduplicate-${version}"; + version = "1.0.2"; + + disabled = !isPy27; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/m/maildir-deduplicate/${name}.tar.gz"; + sha256 = "1xy5z756alrjgpl9qx2gdx898rw1mryrqkwmipbh39mgrvkl3fz9"; + }; + + propagatedBuildInputs = with self; [ click ]; + + meta = with stdenv.lib; { + description = "Command-line tool to deduplicate mails from a set of maildir folders"; + homepage = "https://github.com/kdeldycke/maildir-deduplicate"; + license = licenses.gpl2; + }; + }; + mps-youtube = buildPythonPackage rec { name = "mps-youtube-${version}"; diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix index 15380ea43c8e5453364469437fe5647ad825478b..2f0296223a0e394d73eb25d9f364f45a1fa441b9 100644 --- a/pkgs/top-level/release-lib.nix +++ b/pkgs/top-level/release-lib.nix @@ -1,4 +1,8 @@ -{ supportedSystems, packageSet ? (import ./all-packages.nix), allowTexliveBuilds ? false }: +{ supportedSystems +, packageSet ? (import ./all-packages.nix) +, allowTexliveBuilds ? false +, scrubJobs ? true +}: with import ../../lib; @@ -14,6 +18,9 @@ rec { pkgs = pkgsFor "x86_64-linux"; + hydraJob' = if scrubJobs then hydraJob else id; + + /* !!! Hack: poor man's memoisation function. Necessary to prevent Nixpkgs from being evaluated again and again for every job/platform pair. */ @@ -48,7 +55,7 @@ rec { a derivation for each supported platform, i.e. ‘{ x86_64-linux = f pkgs_x86_64_linux; i686-linux = f pkgs_i686_linux; ... }’. */ testOn = systems: f: genAttrs - (filter (x: elem x supportedSystems) systems) (system: hydraJob (f (pkgsFor system))); + (filter (x: elem x supportedSystems) systems) (system: hydraJob' (f (pkgsFor system))); /* Similar to the testOn function, but with an additional diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index d0c5faf823a74927d85a88a8bfd8efea1ef741f9..50331b83e8e8b2838fa9aa741531b61aace57b91 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -13,9 +13,10 @@ , officialRelease ? false , # The platforms for which we build Nixpkgs. supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] +, scrubJobs ? true }: -with import ./release-lib.nix { inherit supportedSystems; }; +with import ./release-lib.nix { inherit supportedSystems scrubJobs; }; let @@ -65,7 +66,6 @@ let binutils = linux; bind = linux; bvi = all; - castle_combat = linux; cdrkit = linux; classpath = linux; ddrescue = linux; diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index 9fee03b701e65b4ac84d9a2681ce10767c094950..1f43751bc7370dc041511523c285729f2f715811 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2015-12-10"; - rev = "22d6577ebaf063f121fb8dc7dd3b53b73a75f453"; + version = "2015-12-23"; + rev = "0fd482d73d5a13fd49a36d2940ad7a069a6fc049"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "10hqb8pwi5bcxc96ddijjswxjv8yqh54w7r3x1xsz2i7160z8gs6"; + sha256 = "18g69d7npky31rbd4bfcps9180bhfnddg2vhp9w1w0smvgzmg0i3"; }; in